gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog testsuite/libamf.all/test_numbe...


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog testsuite/libamf.all/test_numbe...
Date: Wed, 05 Sep 2007 02:15:41 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  07/09/05 02:15:41

Modified files:
        .              : ChangeLog 
        testsuite/libamf.all: test_number.cpp test_object.cpp 
                              test_string.cpp test_variable.cpp 

Log message:
        Fixed GNUisms.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4225&r2=1.4226
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/libamf.all/test_number.cpp?cvsroot=gnash&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/libamf.all/test_object.cpp?cvsroot=gnash&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/libamf.all/test_string.cpp?cvsroot=gnash&r1=1.9&r2=1.10
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/libamf.all/test_variable.cpp?cvsroot=gnash&r1=1.7&r2=1.8

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4225
retrieving revision 1.4226
diff -u -b -r1.4225 -r1.4226
--- ChangeLog   5 Sep 2007 01:51:32 -0000       1.4225
+++ ChangeLog   5 Sep 2007 02:15:40 -0000       1.4226
@@ -5,6 +5,7 @@
        * backend/sound_handler_sdl.cpp: Fixed conflict with namespaces from
         booost/cstdint.hpp.
        * utilities/*.cpp: #ifdef ENABLE_NLS.
+       * testsuit/libamf.all/*.cpp: Fixed GNUisms.
 
 2007-09-04 Sandro Santilli <address@hidden>
 

Index: testsuite/libamf.all/test_number.cpp
===================================================================
RCS file: /sources/gnash/gnash/testsuite/libamf.all/test_number.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- testsuite/libamf.all/test_number.cpp        6 Jul 2007 14:51:51 -0000       
1.8
+++ testsuite/libamf.all/test_number.cpp        5 Sep 2007 02:15:40 -0000       
1.9
@@ -24,7 +24,15 @@
 //#include <netinet/in.h>
 #include <string>
 #include <sys/types.h>
-#include <unistd.h>
+extern "C"{
+        #include <unistd.h>
+#ifdef HAVE_GETOPT_H
+        #include <getopt.h>
+#endif
+#ifndef __GNUC__
+        extern int optind, getopt(int, char *const *, const char *);
+#endif
+}
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>

Index: testsuite/libamf.all/test_object.cpp
===================================================================
RCS file: /sources/gnash/gnash/testsuite/libamf.all/test_object.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- testsuite/libamf.all/test_object.cpp        23 Aug 2007 14:10:54 -0000      
1.8
+++ testsuite/libamf.all/test_object.cpp        5 Sep 2007 02:15:41 -0000       
1.9
@@ -22,7 +22,15 @@
 #ifdef HAVE_DEJAGNU_H
 
 #include <sys/types.h>
-#include <unistd.h>
+extern "C"{
+        #include <unistd.h>
+#ifdef HAVE_GETOPT_H
+        #include <getopt.h>
+#endif
+#ifndef __GNUC__
+        extern int optind, getopt(int, char *const *, const char *);
+#endif
+}
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>

Index: testsuite/libamf.all/test_string.cpp
===================================================================
RCS file: /sources/gnash/gnash/testsuite/libamf.all/test_string.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- testsuite/libamf.all/test_string.cpp        23 Aug 2007 14:10:54 -0000      
1.9
+++ testsuite/libamf.all/test_string.cpp        5 Sep 2007 02:15:41 -0000       
1.10
@@ -23,7 +23,15 @@
 
 #include <cstdlib>
 #include <sys/types.h>
-#include <unistd.h>
+extern "C"{
+        #include <unistd.h>
+#ifdef HAVE_GETOPT_H
+        #include <getopt.h>
+#endif
+#ifndef __GNUC__
+        extern int optind, getopt(int, char *const *, const char *);
+#endif
+}
 #include <sys/stat.h>
 #include <fcntl.h>
 

Index: testsuite/libamf.all/test_variable.cpp
===================================================================
RCS file: /sources/gnash/gnash/testsuite/libamf.all/test_variable.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- testsuite/libamf.all/test_variable.cpp      23 Aug 2007 14:10:54 -0000      
1.7
+++ testsuite/libamf.all/test_variable.cpp      5 Sep 2007 02:15:41 -0000       
1.8
@@ -22,7 +22,15 @@
 #ifdef HAVE_DEJAGNU_H
 
 #include <sys/types.h>
-#include <unistd.h>
+extern "C"{
+        #include <unistd.h>
+#ifdef HAVE_GETOPT_H
+        #include <getopt.h>
+#endif
+#ifndef __GNUC__
+        extern int optind, getopt(int, char *const *, const char *);
+#endif
+}
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>




reply via email to

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