diff options
author | Björn Jacke <bj@sernet.de> | 2010-05-24 23:34:00 +0200 |
---|---|---|
committer | Björn Jacke <bj@sernet.de> | 2010-05-24 23:34:00 +0200 |
commit | ff0872d59d78ad42212c88313ef924ea4eb7a8a1 (patch) | |
tree | 3876801cadb1eda23955381794684be97a8a814e /source3/configure.in | |
parent | 24b3725407f1a67e13a7646d2e3f26ed1e4735ff (diff) | |
download | samba-ff0872d59d78ad42212c88313ef924ea4eb7a8a1.tar.gz samba-ff0872d59d78ad42212c88313ef924ea4eb7a8a1.tar.xz samba-ff0872d59d78ad42212c88313ef924ea4eb7a8a1.zip |
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.
Diffstat (limited to 'source3/configure.in')
-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 a452486d111..a97720c8d7c 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1654,7 +1654,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]) |