gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ./ChangeLog ./configure.ac server/shm.h s...


From: Rob Savoye
Subject: [Gnash-commit] gnash ./ChangeLog ./configure.ac server/shm.h s...
Date: Tue, 14 Feb 2006 16:41:02 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Branch:         
Changes by:     Rob Savoye <address@hidden>     06/02/14 16:41:02

Modified files:
        .              : ChangeLog configure.ac 
        server         : shm.h shm.cpp 

Log message:
        * configure.ac: Look for shm_open().
        * server/shm.cpp: If we don't have POSIX shared memory (like *BSD
        systems), don't try to compile anything for now.
        * server/shm.h: If we don't have POSIX shared memory (like *BSD
        systems), don't try to compile anything for now.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/ChangeLog.diff?tr1=1.137&tr2=1.138&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/configure.ac.diff?tr1=1.37&tr2=1.38&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/server/shm.h.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/server/shm.cpp.diff?tr1=1.2&tr2=1.3&r1=text&r2=text

Patches:
Index: gnash/ChangeLog
diff -u gnash/ChangeLog:1.137 gnash/ChangeLog:1.138
--- gnash/ChangeLog:1.137       Tue Feb 14 16:26:17 2006
+++ gnash/ChangeLog     Tue Feb 14 16:41:02 2006
@@ -1,3 +1,11 @@
+2006-02-14  Rob Savoye  <address@hidden>
+
+       * configure.ac: Look for shm_open().
+       * server/shm.cpp: If we don't have POSIX shared memory (like *BSD
+       systems), don't try to compile anything for now.
+       * server/shm.h: If we don't have POSIX shared memory (like *BSD
+       systems), don't try to compile anything for now.
+       
 2006-02-14 Sandro Santilli <address@hidden>
 
        * server/Object.{h,cpp}: new instanceOf(function_as_object*) method.
@@ -16,6 +24,12 @@
 
 2006-02-13  Rob Savoye  <address@hidden>
 
+       * macros/firefox.m4: Set FIREFOX_PLUGINS correctly at the proper
+       time. Add another pattern to the sed rule to munge the path.
+       * configure.ac: Print out where the plugin will get installed.
+
+       * libamf/Makefile.am: DOn't link in the other libraries so libamf
+       can be standalone.
        * libamf/amf.cpp: Default to not using log_msg().
        * libamf/amftest.cpp: Don't build unless you have dejagnu.h.
        * configure.ac: Check for the dejagnu.h header for unit testing.
Index: gnash/configure.ac
diff -u gnash/configure.ac:1.37 gnash/configure.ac:1.38
--- gnash/configure.ac:1.37     Mon Feb 13 19:57:34 2006
+++ gnash/configure.ac  Tue Feb 14 16:41:02 2006
@@ -147,6 +147,7 @@
 AC_CHECK_LIB(Xi, XInput_find_display)
 AC_CHECK_LIB(X11, XDisableAccessControl)
 AC_CHECK_LIB(rt, shm_unlink)
+AC_CHECK_FUNCS(shm_open)
 dnl AC_CHECK_LIB(c, mremap)
 AM_PATH_ZLIB
 AM_PATH_JPEG
Index: gnash/server/shm.cpp
diff -u gnash/server/shm.cpp:1.2 gnash/server/shm.cpp:1.3
--- gnash/server/shm.cpp:1.2    Thu Feb  9 03:34:01 2006
+++ gnash/server/shm.cpp        Tue Feb 14 16:41:02 2006
@@ -20,6 +20,8 @@
 #include "config.h"
 #endif
 
+#ifdef HAVE_SHM_OPEN
+
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <unistd.h>
@@ -389,6 +391,7 @@
 
 } // end of gnash namespace
 
+#endif // end of HAVE_SHM_OPEN
 
 // Local Variables:
 // mode: C++
Index: gnash/server/shm.h
diff -u gnash/server/shm.h:1.1 gnash/server/shm.h:1.2
--- gnash/server/shm.h:1.1      Sun Feb  5 05:42:02 2006
+++ gnash/server/shm.h  Tue Feb 14 16:41:02 2006
@@ -23,6 +23,8 @@
 #include "config.h"
 #endif
 
+#ifdef HAVE_SHM_OPEN
+
 #include <string>
 
 #include "log.h"
@@ -160,6 +162,8 @@
 
 } // end of gnash namespace
 
+#endif // end of HAVE_SHM_OPEN
+
 // end of __SHM_H__
 #endif
 




reply via email to

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