X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=m4%2Fgcc.2.95.m4;h=f8fa0399745d46c655ffb74e8e0430ec24441115;hp=d83ac11b43e3e0f748638a469450323281bf0055;hb=HEAD;hpb=ef93a2da29e62fa0e3297098ab023a19f46c7a20 diff --git a/m4/gcc.2.95.m4 b/m4/gcc.2.95.m4 index d83ac11..f8fa039 100644 --- a/m4/gcc.2.95.m4 +++ b/m4/gcc.2.95.m4 @@ -1,8 +1,8 @@ -AC_DEFUN(RFX_CHECK_OLDGCC, +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}' -if { (eval echo gcc.2.95.m4:19: \"$testprog_link\") 1>&5; (eval $testprog_link) 2>&5; } && test -s conftest${ac_exeext} && ./conftest${ac_exeext}; then +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*