This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author chaselton
Recipients chaselton, ethan.furman, freakboy3742, r.david.murray, refi64
Date 2015-04-20.00:16:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429488971.2.0.0548341115539.issue23496@psf.upfronthosting.co.za>
In-reply-to
Content
Ryan, 
Found the missing fix.

In ./Programs/python.c

#ifndef __ANDROID__
    oldloc = _PyMem_RawStrdup(setlocale(LC_ALL, NULL));
    if (!oldloc) {
        fprintf(stderr, "out of memory\n");                                                  return 1;
    }                                                                                #endif

Added the #ifndef __ANDROID__ #endif around lines 46-51

I'm now looking at the following syntax error:

File "./setup.py", line 1950
    elif host_platform.startswith('arm-linux')
                                             ^
SyntaxError: invalid syntax
make: *** [sharedmods] Error 1
History
Date User Action Args
2015-04-20 00:16:11chaseltonsetrecipients: + chaselton, r.david.murray, freakboy3742, ethan.furman, refi64
2015-04-20 00:16:11chaseltonsetmessageid: <1429488971.2.0.0548341115539.issue23496@psf.upfronthosting.co.za>
2015-04-20 00:16:11chaseltonlinkissue23496 messages
2015-04-20 00:16:10chaseltoncreate