diff options
author | Rainer Tammer <tammer@tammer.net> | 2009-07-17 10:23:43 +0200 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2009-07-17 09:54:09 -0500 |
commit | c533d96e5f6c9e94d3d34f6ff54accc877705220 (patch) | |
tree | b6cc97825a16b5d1daeebea38399848ef0245f4c /hints | |
parent | e3c125ffa5002b0ab2c402446f4e5b2850b634aa (diff) | |
download | perl-c533d96e5f6c9e94d3d34f6ff54accc877705220.tar.gz |
hints/aix.sh remove libgdbm from wanted libs - dbm_store() is defective in the AIX Toolbox
Diffstat (limited to 'hints')
-rw-r--r-- | hints/aix.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index 26737fe7be..a7c8df2b64 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -538,4 +538,11 @@ libswanted=`echo " $libswanted " | sed -e 's/ bsd / /'` libswanted=`echo " $libswanted " | sed -e 's/ BSD / /'` d_flock='undef' +# remove libgdbm from wanted libraries +# The libgdbm 1.8.3 from the AIX Toolbox is not working +# (the dbm_store() function is defective) +libswanted=`echo " $libswanted " | sed -e 's/ gdbm / /'` +i_gdbm='undef' +i_gdbmndbm='undef' + # EOF |