gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog gui/Player.cpp [release_0_7_2]


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog gui/Player.cpp [release_0_7_2]
Date: Wed, 08 Nov 2006 09:06:49 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Branch:         release_0_7_2
Changes by:     Sandro Santilli <strk>  06/11/08 09:06:49

Modified files:
        .              : ChangeLog 
        gui            : Player.cpp 

Log message:
                * gui/Player.cpp: don't issue a warning if RENDER_OPENGL is
                  defined and HAVE_GTK_GTKGL_H is not unless the selected
                  gui is GTK (it would be safe for SDL gui).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.1412.2.113&r2=1.1412.2.114
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/Player.cpp?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.23.2.3&r2=1.23.2.4

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1412.2.113
retrieving revision 1.1412.2.114
diff -u -b -r1.1412.2.113 -r1.1412.2.114
--- ChangeLog   8 Nov 2006 08:24:17 -0000       1.1412.2.113
+++ ChangeLog   8 Nov 2006 09:06:49 -0000       1.1412.2.114
@@ -1,5 +1,8 @@
 2006-11-08 Sandro Santilli <address@hidden>
 
+       * gui/Player.cpp: don't issue a warning if RENDER_OPENGL is
+         defined and HAVE_GTK_GTKGL_H is not unless the selected
+         gui is GTK (it would be safe for SDL gui).
        * server/: array.cpp, as_function.cpp, asobj/: MovieClip.cpp,
          MovieClipLoader.cpp, Number.cpp, Object.cpp, System.cpp,
          string.cpp: change static pointers to static *smart* pointers

Index: gui/Player.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/Player.cpp,v
retrieving revision 1.23.2.3
retrieving revision 1.23.2.4
diff -u -b -r1.23.2.3 -r1.23.2.4
--- gui/Player.cpp      2 Nov 2006 00:09:57 -0000       1.23.2.3
+++ gui/Player.cpp      8 Nov 2006 09:06:49 -0000       1.23.2.4
@@ -18,11 +18,13 @@
 #include "config.h"
 #endif
 
+#ifdef GUI_GTK
 #if defined(RENDERER_OPENGL) && !defined(HAVE_GTK_GTKGL_H)
 #warning "ERROR: You need to install GtkGLExt to use OpenGL with GTK2! Forcing 
SDL usage!"
 #undef GUI_GTK
 #define GUI_SDL
 #endif
+#endif // defined GUI_GTK
 
 #ifndef GUI_KDE
 # ifdef GUI_GTK




reply via email to

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