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 /uconfig64.sh | |
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 'uconfig64.sh')
-rw-r--r-- | uconfig64.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uconfig64.sh b/uconfig64.sh index 96e0fd3c5d..3d3ca5a1d8 100644 --- a/uconfig64.sh +++ b/uconfig64.sh @@ -426,7 +426,7 @@ d_strftime='undef' d_strlcat='undef' d_strlcpy='undef' d_strtod='undef' -d_strtol='undef' +d_strtol='define' d_strtold='undef' d_strtoll='undef' d_strtoq='undef' |