diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-06-29 16:34:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:19:07 -0500 |
commit | 48229b35d701c4cdf4c90994dd4f1506bb3994a7 (patch) | |
tree | 31af8e3301cf96fd349f5a30679a149dd2b9b720 /source3 | |
parent | d88926f6b4c11ba60200d7a7574b14fd04ab8a8f (diff) | |
download | samba-48229b35d701c4cdf4c90994dd4f1506bb3994a7.tar.gz samba-48229b35d701c4cdf4c90994dd4f1506bb3994a7.tar.bz2 samba-48229b35d701c4cdf4c90994dd4f1506bb3994a7.zip |
r16676: .o generates other warnings, use the Solaris trick with .po.o also for AIX.
Fix a configure.in output line
Volker
(This used to be commit 1a80266d77bb95edaa221c14652b2c6fa9932ab6)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in index d285647df3..884c2cea6a 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1735,8 +1735,8 @@ if test "$enable_shared" = "yes"; then DYNEXP="-Wl,-brtl,-bexpall,-bbigtoc" PICFLAGS="-O2" # as AIX code is always position independent... - # .po will just create compile warnings, use .o: - PICSUFFIX="o" + # .po will just create compile warnings, use po.o: + PICSUFFIX="po.o" if test "${GCC}" != "yes"; then ## for funky AIX compiler using strncpy() CFLAGS="$CFLAGS -D_LINUX_SOURCE_COMPAT -qmaxmem=32000" @@ -3093,7 +3093,7 @@ fi ################################################# # check whether to compile AFS/NT ACL mapping module samba_cv_WITH_VFS_AFSACL=no -AC_MSG_CHECKING(whether to use AFS fake-kaserver) +AC_MSG_CHECKING(whether to use AFS ACL mapping module) AC_ARG_WITH(vfs-afsacl, [ --with-vfs-afsacl Include AFS to NT ACL mapping module (default=no) ], [ case "$withval" in |