gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash configure.ac


From: Markus Gothe
Subject: [Gnash-commit] gnash configure.ac
Date: Tue, 17 Oct 2006 17:40:22 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  06/10/17 17:40:22

Modified files:
        .              : configure.ac 

Log message:
        Added correct namespace to
        printf();

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.166&r2=1.167

Patches:
Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -b -r1.166 -r1.167
--- configure.ac        17 Oct 2006 06:44:07 -0000      1.166
+++ configure.ac        17 Oct 2006 17:40:22 -0000      1.167
@@ -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.166 2006/10/17 06:44:07 nihilus Exp $
+dnl $Id: configure.ac,v 1.167 2006/10/17 17:40:22 nihilus Exp $
 
 AC_PREREQ(2.50)
 AC_INIT(gnash, 0.7.1-cvs)
@@ -409,7 +409,7 @@
         AC_TRY_LINK([
 #include <cstdio>
 ], 
-                [ printf("%s", __PRETTY_FUNCTION__); ], 
+                [ std::printf("%s", __PRETTY_FUNCTION__); ], 
                 [ ac_cv_implements___PRETTY_FUNCTION__="yes" ],
                 [ ac_cv_implements___PRETTY_FUNCTION__="no" ]
         )
@@ -422,7 +422,7 @@
         AC_TRY_LINK([
 #include <cstdio>
 ], 
-                [ printf("%s", __FUNCTION__); ], 
+                [ std::printf("%s", __FUNCTION__); ], 
                 [ ac_cv_implements___FUNCTION__="yes" ],
                 [ ac_cv_implements___FUNCTION__="no" ]
         )
@@ -435,7 +435,7 @@
         AC_TRY_LINK([
 #include <cstdio>
 ], 
-                [ printf("%s", __func__); ], 
+                [ std::printf("%s", __func__); ], 
                 [ ac_cv_implements___func__="yes" ],
                 [ ac_cv_implements___func__="no" ]
         )




reply via email to

[Prev in Thread] Current Thread [Next in Thread]