svn commit: samba r16340 - branches/SAMBA_3_0/source trunk/source
vlendec at samba.org
vlendec at samba.org
Sun Jun 18 09:56:47 GMT 2006
Author: vlendec
Date: 2006-06-18 09:56:45 +0000 (Sun, 18 Jun 2006)
New Revision: 16340
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16340
Log:
Commit Bjoern's fix for the AIX PIC suffix. 'make test' still does the first
tests, and vfstest is still able to load modules. Looks like this is ok :-)
Volker
Modified:
branches/SAMBA_3_0/source/configure.in
trunk/source/configure.in
Changeset:
Modified: branches/SAMBA_3_0/source/configure.in
===================================================================
--- branches/SAMBA_3_0/source/configure.in 2006-06-18 09:45:18 UTC (rev 16339)
+++ branches/SAMBA_3_0/source/configure.in 2006-06-18 09:56:45 UTC (rev 16340)
@@ -1719,6 +1719,9 @@
LDSHFLAGS="-Wl,-G,-bexpall"
DYNEXP="-Wl,-brtl,-bexpall,-bbigtoc"
PICFLAGS="-O2"
+ # as AIX code is always position independent...
+ # .po will just create compile warnings, use .o:
+ PICSUFFIX="o"
if test "${GCC}" != "yes"; then
## for funky AIX compiler using strncpy()
CFLAGS="$CFLAGS -D_LINUX_SOURCE_COMPAT -qmaxmem=32000"
Modified: trunk/source/configure.in
===================================================================
--- trunk/source/configure.in 2006-06-18 09:45:18 UTC (rev 16339)
+++ trunk/source/configure.in 2006-06-18 09:56:45 UTC (rev 16340)
@@ -1721,6 +1721,9 @@
LDSHFLAGS="-Wl,-G,-bexpall"
DYNEXP="-Wl,-brtl,-bexpall,-bbigtoc"
PICFLAGS="-O2"
+ # as AIX code is always position independent...
+ # .po will just create compile warnings, use .o:
+ PICSUFFIX="o"
if test "${GCC}" != "yes"; then
## for funky AIX compiler using strncpy()
CFLAGS="$CFLAGS -D_LINUX_SOURCE_COMPAT -qmaxmem=32000"
More information about the samba-cvs
mailing list