diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-07-27 17:36:40 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-07-27 17:36:40 +0200 |
commit | d40eae8f110fb9900e82648a2c44710def9f117d (patch) | |
tree | b401837d88a795c0bbfc3ead7b3d1416b32975fb /uconfig.h | |
parent | 613c63b465f01af4e535fdc6c1c17e7470be5aad (diff) | |
download | perl-d40eae8f110fb9900e82648a2c44710def9f117d.tar.gz |
Restore microperl, which has been unable to build since January.
microperl was broken by commit 82ad65bb0613be64 on 2012-01-16, which used
IN_LOCALE_COMPILETIME for the first time in the C code. Unlike
IN_LOCALE_RUNTIME, it had no fallback definition for microperl.
Commit f90a9a0230170cc0 on 2012-01-28 added the first use of Strtol(),
which means that microperl now needs to assume that the system has strtol().
(Which is not unreasonable, as it's part of C89).
Diffstat (limited to 'uconfig.h')
-rw-r--r-- | uconfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -527,7 +527,7 @@ * This symbol, if defined, indicates that the strtol routine is available * to provide better numeric string conversion than atoi() and friends. */ -/*#define HAS_STRTOL / **/ +#define HAS_STRTOL /**/ /* HAS_STRXFRM: * This symbol, if defined, indicates that the strxfrm() routine is @@ -4740,5 +4740,5 @@ /* Generated from: * 450f87b8e0de509bd7e72485185b4060363119bedef2b8aff868354f42708a78 config_h.SH - * e3a05060ae46f0ca7ea3a4fd9a4c2dcd60caf070529116479a74830d923d1ca3 uconfig.sh + * 136e00f109103fdebadeec53d77fbc8f8c1bf3eb82ce970c966f362584f4b7f2 uconfig.sh * ex: set ro: */ |