diff options
author | Michael Adam <obnox@samba.org> | 2008-02-24 01:00:39 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-02-24 01:00:39 +0100 |
commit | 658b72916f176190b78586073e922ffabf6704b5 (patch) | |
tree | c44fd8c23eaad10bc20d291012607fcd443ea4d8 | |
parent | db9db9cef9b1ec04952ff7f0079cdff1e6ea8016 (diff) | |
download | samba-658b72916f176190b78586073e922ffabf6704b5.tar.gz samba-658b72916f176190b78586073e922ffabf6704b5.tar.bz2 samba-658b72916f176190b78586073e922ffabf6704b5.zip |
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
(This used to be commit 213ba3a719e77979c04b872f1d82f68e87287cb0)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 78f0901c53..3ab2166095 100644 --- a/source3/configure.in +++ b/source3/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... |