gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ./ChangeLog libbase/tu_types.h backend/gn...


From: Rob Savoye
Subject: [Gnash-commit] gnash ./ChangeLog libbase/tu_types.h backend/gn...
Date: Fri, 27 Jan 2006 06:21:18 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Branch:         
Changes by:     Rob Savoye <address@hidden>     06/01/27 06:21:15

Modified files:
        .              : ChangeLog 
        libbase        : tu_types.h 
        backend        : gnash.cpp 

Log message:
        * backend/gnash.cpp: Always define gofast and goslow, even if XML
        support is disabled.
        * libbase/tu_types.h: If the Mozilla obsolete Prototypes file has
        been included, don't redefine the 64 bit data types.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/ChangeLog.diff?tr1=1.44&tr2=1.45&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/libbase/tu_types.h.diff?tr1=1.2&tr2=1.3&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/backend/gnash.cpp.diff?tr1=1.6&tr2=1.7&r1=text&r2=text

Patches:
Index: gnash/ChangeLog
diff -u gnash/ChangeLog:1.44 gnash/ChangeLog:1.45
--- gnash/ChangeLog:1.44        Fri Jan 27 03:32:54 2006
+++ gnash/ChangeLog     Fri Jan 27 06:21:04 2006
@@ -1,7 +1,21 @@
 2006-01-26  Rob Savoye  <address@hidden>
 
-       * testsuite/movies.all/elvis.swf: Remove URL ping to Mochibot
-       servers. 
+       * plugin/Makefile.am: Link in shared libraries. Install the plugin
+       in the users home directory for mozilla or firefox plugins.
+       * server/Makefile.am, backend/Makefile.am,
+       plugin/Makefile.am, plugin/mozilla-sdk/Makefile.am: Sigh, back to
+       building and installing shared libraries because AMD64-linux
+       doesn't support linking the plugin with static libraries.
+
+       * configure.ac: Don't complain about missing libxml2 libraries if
+       --disable-xml was specified.
+       * backend/gnash.cpp: Always define gofast and goslow, even if XML
+       support is disabled.
+       * libbase/tu_types.h: If the Mozilla obsolete Prototypes file has
+       been included, don't redefine the 64 bit data types.
+
+       * testsuite/movies.all/elvis.swf: Remove URL ping to spyware
+       server.
 
        * libbase/triangulate_impl.h: Change %ld to %d in print statement.
        * libbase/tu_types.h: Use SDL typedefs always.
Index: gnash/backend/gnash.cpp
diff -u gnash/backend/gnash.cpp:1.6 gnash/backend/gnash.cpp:1.7
--- gnash/backend/gnash.cpp:1.6 Mon Jan 23 18:15:05 2006
+++ gnash/backend/gnash.cpp     Fri Jan 27 06:21:15 2006
@@ -34,7 +34,6 @@
 #include "tu_types.h"
 #include "xmlsocket.h"
 
-#ifdef HAVE_LIBXML
 bool gofast = false;           // FIXME: this flag gets set based on
                                // an XML message written using
                                // SendCommand(""). This way a movie
@@ -50,7 +49,6 @@
                                // needs to be propogated up through
                                // the layers properly, but first I
                                // want to make sure it all works.
-#endif // HAVE_LIBXML
 
 void
 print_usage()
Index: gnash/libbase/tu_types.h
diff -u gnash/libbase/tu_types.h:1.2 gnash/libbase/tu_types.h:1.3
--- gnash/libbase/tu_types.h:1.2        Thu Jan 26 17:08:03 2006
+++ gnash/libbase/tu_types.h    Fri Jan 27 06:21:09 2006
@@ -43,11 +43,12 @@
 typedef Uint32 uint32;
 typedef Sint32 sint32;
 typedef Sint32 int32;
+
+#ifndef PROTYPES_H
 typedef Uint64 uint64;
 typedef Sint64 sint64;
 typedef Sint64 int64;
-
-
+#endif
 
 // A function to run some validation checks.
 bool   tu_types_validate();




reply via email to

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