From 0b192df2ea7c5d5a31b9a7c916fda7e3e39b894d Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 9 Jan 2006 21:58:40 +0000 Subject: r12802: Fix for bugzilla #3389 from William Jojo. This fixes failures on AIX in linking smbd when the symbol table for ld exceeds 65536 bytes. (This used to be commit 679fc459357d3ddfac1786726e4d2ccdada0b05f) --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/configure.in b/source3/configure.in index ec1bdacad8..40cb420825 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1460,7 +1460,7 @@ if test "$enable_shared" = "yes"; then *aix*) AC_DEFINE(AIX,1,[Whether the host os is aix]) BLDSHARED="true" LDSHFLAGS="-Wl,-bexpall,-bM:SRE,-bnoentry,-berok" - DYNEXP="-Wl,-brtl,-bexpall" + DYNEXP="-Wl,-brtl,-bexpall,-bbigtoc" PICFLAGS="-O2" if test "${GCC}" != "yes"; then ## for funky AIX compiler using strncpy() -- cgit