diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-01-28 20:43:02 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-01-28 20:43:02 +0000 |
commit | 836995da690e86dfede4be5cd8215cfceaeda197 (patch) | |
tree | f4ea1741bec35caef8370bbebd862bbc871e86bc /hints | |
parent | 58ca468a076a9e91a1ca3aba10707505636900e4 (diff) | |
download | perl-836995da690e86dfede4be5cd8215cfceaeda197.tar.gz |
Integrate from maint-5.8:
Change 18450 :
Tiny output tweak.
Change 18429 :
AIX gcc (2.9) threaded build tweak (without the _THREAD_SAFE
things like drand48_data are undefined).
Change 18388 :
List the PERL_MAGIC_utf8 ('w') flag.
p4raw-id: //depot/perl@18598
p4raw-integrated: from //depot/maint-5.8/perl@18597 'copy in'
hints/aix.sh (@18286..) t/op/pat.t (@18290..) pod/perlguts.pod
(@18387..)
Diffstat (limited to 'hints')
-rw-r--r-- | hints/aix.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index 5a10cf8511..7dffde24a7 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -275,7 +275,8 @@ $define|true|[yY]*) ccflags="$ccflags -DNEED_PTHREAD_INIT" case "$cc" in *gcc*) -echo "GCC $gccversion disabling some _r functions" >&4 + ccflags="-D_THREAD_SAFE $ccflags" + echo "GCC $gccversion disabling some _r functions" >&4 case "$gccversion" in 3*) d_drand48_r='undef' d_endgrent_r='undef' |