From: Kern Sibbald Date: Wed, 30 Dec 2015 14:10:57 +0000 (+0100) Subject: Fix bug #2090 correct detection of GCC X-Git-Tag: Release-7.4.0~68 X-Git-Url: https://git.sur5r.net/?p=bacula%2Fbacula;a=commitdiff_plain;h=431c6f9c6a3636e57c1590f939165921d4440d7d Fix bug #2090 correct detection of GCC --- diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index 0ee1bb63c9..9213592c56 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -90,14 +90,14 @@ dnl ------------------------------------------------------- dnl Check for compiler. dnl ------------------------------------------------------ -AC_PROG_CC +AC_PROG_CC dnl this sets $GCC if using GNU C compiler AC_PROG_CXX -AC_PROG_CC_C_O dnl Determine if C compiler support -c -o. -AC_PROG_GCC_TRADITIONAL dnl Determine if ioctl() need -traditional. +AC_PROG_CC_C_O dnl Determine if C compiler support -c -o. +AC_PROG_GCC_TRADITIONAL dnl Determine if ioctl() need -traditional. BASECC=`basename $CC` have_gcc=no -if test "x$BASECC" = xgcc; then +if test x"$GCC" = "xyes"; then AC_DEFINE(HAVE_GCC) have_gcc=yes fi