diff options
author | Tim Potter <tpot@samba.org> | 2006-01-09 21:58:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:06:04 -0500 |
commit | 0b192df2ea7c5d5a31b9a7c916fda7e3e39b894d (patch) | |
tree | 56656e65cba9d8f6e672192ee94490eb9f7ac3b7 | |
parent | fbbe89ea30b8303787b22ed267dac14d27efdfbb (diff) | |
download | samba-0b192df2ea7c5d5a31b9a7c916fda7e3e39b894d.tar.gz samba-0b192df2ea7c5d5a31b9a7c916fda7e3e39b894d.tar.bz2 samba-0b192df2ea7c5d5a31b9a7c916fda7e3e39b894d.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.
(This used to be commit 679fc459357d3ddfac1786726e4d2ccdada0b05f)
-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 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() |