diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-05-29 10:21:58 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-05-29 10:21:58 -0400 |
commit | 8eafc6eb8a6926872a35c0af0f4cf25645edbec9 (patch) | |
tree | a1e49416abdde50fe4b12a37faa0d73ff6bff0f5 /handy.h | |
parent | b7d878615197b333d2e3724e68d3504cb6c26106 (diff) | |
download | perl-8eafc6eb8a6926872a35c0af0f4cf25645edbec9.tar.gz |
__APPLE__ is not Apple, use PERL_DARWIN instead.
See hints/darwin.sh for details.
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -224,7 +224,7 @@ typedef U64TYPE U64; /* In OS X the INT64_C/UINT64_C are defined with LL/ULL, which will * not fly with C89-pedantic gcc, so let's undefine them first so that * we can redefine them with our native integer preferring versions. */ -# if defined(__APPLE__) && defined(PERL_GCC_PEDANTIC) +# if defined(PERL_DARWIN) && defined(PERL_GCC_PEDANTIC) # undef INT64_C # undef UINT64_C # endif |