X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=m4%2Fgcc.2.95.m4;fp=m4%2Fgcc.2.95.m4;h=d607b66e6c10265398b798e766a20dd342afe22a;hb=f39a8a48a5168e8fadc8cefad19ccfa69c9430ac;hp=1bcc827bbe484335f16f31bb768e30d2c238387b;hpb=6e63aa9aa06c5bb60df8755762f75b3069aaaf12;p=swftools.git 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*