From d702278169af2c69dabd783a5d6f18ecb18648ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Mon, 27 Aug 2007 16:16:12 +0200 Subject: [PATCH] Use $GCC instead of undocumented autoconf internal $ac_cv_c_compiler_gnu --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c5f44c124..baf8c1504 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ AC_PROG_YACC AS=${AS-as} AC_SUBST(AS) -if test "$ac_cv_c_compiler_gnu" = yes; then +if test "$GCC" = yes; then CFLAGS="$CFLAGS -fPIC -DPIC -D_GNU_SOURCE -D_REENTRANT -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wno-char-subscripts" cflags_to_try="-fno-strict-aliasing" AC_MSG_CHECKING([supported compiler flags])