From: kramm Date: Sun, 19 Nov 2006 21:37:23 +0000 (+0000) Subject: bugfixes X-Git-Tag: release-0-8-0~120 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=f39a8a48a5168e8fadc8cefad19ccfa69c9430ac bugfixes --- 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*