summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2006-01-09 21:58:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:06:04 -0500
commit679fc459357d3ddfac1786726e4d2ccdada0b05f (patch)
tree4f9b6467fbba2113ad286b37dbaa124a4ad8cfc1
parentf19f7961eef9d9fe345279c5ab35d18dff14e5ea (diff)
downloadsamba-679fc459357d3ddfac1786726e4d2ccdada0b05f.tar.gz
samba-679fc459357d3ddfac1786726e4d2ccdada0b05f.tar.xz
samba-679fc459357d3ddfac1786726e4d2ccdada0b05f.zip
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.
-rw-r--r--source/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/configure.in b/source/configure.in
index ec1bdacad84..40cb4208253 100644
--- a/source/configure.in
+++ b/source/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()