diff options
-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 |