From f39a8a48a5168e8fadc8cefad19ccfa69c9430ac Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 19 Nov 2006 21:37:23 +0000 Subject: [PATCH] bugfixes --- m4/gcc.2.95.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/m4/gcc.2.95.m4 b/m4/gcc.2.95.m4 index 1bcc827..d607b66 100644 --- a/m4/gcc.2.95.m4 +++ b/m4/gcc.2.95.m4 @@ -2,7 +2,7 @@ AC_DEFUN(RFX_CHECK_OLDGCC, [ AC_MSG_CHECKING([whether gcc supports lazy variable declaration]) -cat > conftest.cpp << EOF +cat > conftest.c << EOF #include #include @@ -16,14 +16,14 @@ int main (int argc, char*argv[]) } EOF -testprog_link='$CC $CPPFLAGS $CFLAGS conftest.cpp -o conftest${ac_exeext}' +testprog_link='$CC $CPPFLAGS $CFLAGS conftest.c -o conftest${ac_exeext}' if { (eval echo gcc.2.95.m4:19: \"$testprog_link\") 1>&5; (eval $testprog_link) 2>&5; } && test -s conftest${ac_exeext}; then AC_MSG_RESULT(yes) GCC_IS_OK=true export GCC_IS_OK else echo "configure: failed program was:" >&5 - cat conftest.cpp >&5 + cat conftest.c >&5 AC_MSG_RESULT(no) fi rm -f conftest* -- 1.7.10.4