CVSROOT: /sources/gnash
Module name: gnash
Changes by: Markus Gothe <nihilus> 06/10/17 06:44:07
Modified files:
. : ChangeLog configure.ac
Log message:
Added use of AC_LANG{PUSH,POP}(C++).
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1255&r2=1.1256
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.165&r2=1.166
Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1255
retrieving revision 1.1256
diff -u -b -r1.1255 -r1.1256
--- ChangeLog 17 Oct 2006 00:09:53 -0000 1.1255
+++ ChangeLog 17 Oct 2006 06:44:07 -0000 1.1256
@@ -1,3 +1,7 @@
+2006-10-17 Markus Gothe <[EMAIL PROTECTED]>
+
+ * configure.ac: Added use of AC_LANG{PUSH,POP}(C++).
+
2006-10-16 Rob Savoye <[EMAIL PROTECTED]>
* server/xml.cpp: Fix parseXML so it takes a string, and properly
Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -b -r1.165 -r1.166
--- configure.ac 16 Oct 2006 18:43:15 -0000 1.165
+++ configure.ac 17 Oct 2006 06:44:07 -0000 1.166
@@ -33,7 +33,7 @@
dnl also makes it possible to release a modified version which carries
dnl forward this exception.
-dnl $Id: configure.ac,v 1.165 2006/10/16 18:43:15 strk Exp $
+dnl $Id: configure.ac,v 1.166 2006/10/17 06:44:07 nihilus Exp $
AC_PREREQ(2.50)
AC_INIT(gnash, 0.7.1-cvs)
@@ -404,9 +404,10 @@
AC_DEFINE(HAVE_ISFINITE, [], [Has isfinite])
fi
+AC_LANG_PUSH(C++)
AC_CACHE_CHECK([whether $CXX implements __PRETTY_FUNCTION__],
ac_cv_implements___PRETTY_FUNCTION__, [
AC_TRY_LINK([
-#include <stdio.h>
+#include <cstdio>
],
[ printf("%s", __PRETTY_FUNCTION__); ],
[ ac_cv_implements___PRETTY_FUNCTION__="yes" ],
@@ -419,7 +420,7 @@
AC_CACHE_CHECK([whether $CXX implements __FUNCTION__],
ac_cv_implements___FUNCTION__, [
AC_TRY_LINK([
-#include <stdio.h>
+#include <cstdio>
],
[ printf("%s", __FUNCTION__); ],
[ ac_cv_implements___FUNCTION__="yes" ],
@@ -432,7 +433,7 @@
AC_CACHE_CHECK([whether $CXX implements __func__], ac_cv_implements___func__, [
AC_TRY_LINK([
-#include <stdio.h>
+#include <cstdio>
],
[ printf("%s", __func__); ],
[ ac_cv_implements___func__="yes" ],
@@ -442,7 +443,7 @@
if test "x$ac_cv_implements___func__" = "xyes" ; then
AC_DEFINE(HAVE_func, [1], [__func__ is defined])
fi
-
+AC_LANG_POP(C++)
AC_REPLACE_FUNCS(getopt)
AC_CHECK_FUNCS(sysconf)
_______________________________________________
Gnash-commit mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-commit