From 431c6f9c6a3636e57c1590f939165921d4440d7d Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Wed, 30 Dec 2015 15:10:57 +0100 Subject: [PATCH] Fix bug #2090 correct detection of GCC --- bacula/autoconf/configure.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.39.2