From 08c1c5f87e249a6f42dc5d78d8429689e1ec7274 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Jacke?= Date: Mon, 24 May 2010 23:34:00 +0200 Subject: [PATCH] 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). --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) -- 2.34.1