From: Michael Adam Date: Sun, 24 Feb 2008 00:00:39 +0000 (+0100) Subject: Fix aix-build of libtalloc.so by exporting all necessary symbols. X-Git-Tag: samba-3.2.0pre2~37^2~146 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=213ba3a719e77979c04b872f1d82f68e87287cb0;p=thirdparty%2Fsamba.git Fix aix-build of libtalloc.so by exporting all necessary symbols. Use -bexpfull instead of -bexpall for LDSHFLAGS to also export symbols starting with "_". This exports all necessary symbols from libtalloc.so. Michael --- diff --git a/source/configure.in b/source/configure.in index 78f0901c531..3ab2166095c 100644 --- a/source/configure.in +++ b/source/configure.in @@ -1573,7 +1573,7 @@ DSO_EXPORTS="" ;; *aix*) AC_DEFINE(AIX,1,[Whether the host os is aix]) BLDSHARED="true" - LDSHFLAGS="-Wl,-G,-bexpall,-bbigtoc" + LDSHFLAGS="-Wl,-G,-bexpfull,-bbigtoc" DYNEXP="-Wl,-brtl,-bexpfull,-bbigtoc" PICFLAG="-O2" # as AIX code is always position independent...