From 5200c6079f465122a048f6e7d1541c4c78dcbbb0 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 6 Oct 2006 14:02:44 +0000 Subject: r19130: fix the logic for the AC_PROG_CC_C99 check metze --- source/lib/replace/libreplace_cc.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/replace/libreplace_cc.m4 b/source/lib/replace/libreplace_cc.m4 index 73ce01700e3..77bb5a0598c 100644 --- a/source/lib/replace/libreplace_cc.m4 +++ b/source/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 -- cgit