From: Roland McGrath Date: Fri, 10 Jan 2003 10:44:59 +0000 (+0000) Subject: 2003-01-10 Roland McGrath X-Git-Tag: v4.5.18~890 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45aeb6e26d3735996c012744a518989212894f12;p=strace 2003-01-10 Roland McGrath * configure.ac: Diddle CFLAGS after AC_PROG_CC, not before. --- diff --git a/configure.ac b/configure.ac index 5e43afda..b99effcb 100644 --- a/configure.ac +++ b/configure.ac @@ -111,8 +111,10 @@ AM_CONDITIONAL([SUNOS4], [test x$opsys = xsunos4]) AM_CONDITIONAL([SVR4], [test x$opsys = xsvr4]) AM_CONDITIONAL([FREEBSD], [test x$opsys = xfreebsd]) -CFLAGS="-D_GNU_SOURCE $CFLAGS" AC_PROG_CC +dnl That set the default CFLAGS value, which we don't want to diddle first. +CFLAGS="-D_GNU_SOURCE $CFLAGS" + AC_INCLUDEDIR if test "x$opsys" = "xsunos4" && test "x$arch" = "xsparc"