summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2010-05-24 23:34:00 +0200
committerKarolin Seeger <kseeger@samba.org>2010-06-18 08:33:30 +0200
commit4797134ac2523f5521161024391424a6d8dd37df (patch)
tree3efb840ceefd8cdbaf31c722321d35d609ad0cb9
parentbf543a1372bbb3aada53e0bd249ba52209cc07cd (diff)
downloadsamba-4797134ac2523f5521161024391424a6d8dd37df.tar.gz
s3:configure: turn "error warnings" into errors
By default "Missing argument(s)" is just an "error warning" for xlc :-) The change to turn "error warnings" into errors should fix bug #7427. (cherry picked from commit ff0872d59d78ad42212c88313ef924ea4eb7a8a1) Fix bug #7427 (Using IBM xl_C compiler produces wrong results in configure). (cherry picked from commit 08c1c5f87e249a6f42dc5d78d8429689e1ec7274)
-rw-r--r--source3/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 74a2479f482..ff19e193636 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -1583,7 +1583,7 @@ DSO_EXPORTS=""
# .po will just create compile warnings, use po.o:
if test "${GCC}" != "yes"; then
## for funky AIX compiler using strncpy()
- CFLAGS="$CFLAGS -D_LINUX_SOURCE_COMPAT -qmaxmem=32000"
+ CFLAGS="$CFLAGS -D_LINUX_SOURCE_COMPAT -qmaxmem=32000 -qhalt=e"
fi
AC_DEFINE(STAT_ST_BLOCKSIZE,DEV_BSIZE,[The size of a block])