From: Stefan Metzmacher Date: Fri, 6 Oct 2006 14:04:05 +0000 (+0000) Subject: r19131: merge from samba3: X-Git-Tag: samba-4.0.0alpha6~801^3~4568 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff4e8321303c4ffbd47b762730c3b5f591554654;p=thirdparty%2Fsamba.git r19131: merge from samba3: fix the logic for the AC_PROG_CC_C99 test metze (This used to be commit 5ccc020639b72a75edfc7f29775b298acf27216e) --- diff --git a/source4/lib/replace/libreplace_cc.m4 b/source4/lib/replace/libreplace_cc.m4 index 73ce01700e3..77bb5a0598c 100644 --- a/source4/lib/replace/libreplace_cc.m4 +++ b/source4/lib/replace/libreplace_cc.m4 @@ -31,7 +31,7 @@ CFLAGS=$savedCFLAGS dnl don't try for C99 if we are using gcc, as otherwise we dnl lose immediate structure constants -if test x"$GCC" = x"no" ; then +if test x"$GCC" != x"yes" ; then AC_PROG_CC_C99 fi