From: Ralf Corsépius Date: Mon, 27 Aug 2007 14:16:12 +0000 (+0200) Subject: Use $GCC instead of undocumented autoconf internal $ac_cv_c_compiler_gnu X-Git-Tag: rpm-4.6.0-rc1~1994 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d702278169af2c69dabd783a5d6f18ecb18648ce;p=platform%2Fupstream%2Frpm.git Use $GCC instead of undocumented autoconf internal $ac_cv_c_compiler_gnu --- diff --git a/configure.ac b/configure.ac index c5f44c1..baf8c15 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])