From 658b72916f176190b78586073e922ffabf6704b5 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 24 Feb 2008 01:00:39 +0100 Subject: 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) --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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... -- cgit