From: <br...@us...> - 2011-01-24 04:31:28
|
Revision: 4214 http://openvrml.svn.sourceforge.net/openvrml/?rev=4214&view=rev Author: braden Date: 2011-01-24 04:31:22 +0000 (Mon, 24 Jan 2011) Log Message: ----------- Don't hard-code Gtk/GNOME _DISABLE_DEPRECATED preprocessor symbols, as this negatively affects forward compatibility. Modified Paths: -------------- trunk/ChangeLog trunk/src/Makefile.am Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2011-01-24 03:05:49 UTC (rev 4213) +++ trunk/ChangeLog 2011-01-24 04:31:22 UTC (rev 4214) @@ -1,5 +1,12 @@ 2011-01-23 Braden McDaniel <br...@en...> + Don't hard-code Gtk/GNOME _DISABLE_DEPRECATED preprocessor + symbols, as this negatively affects forward compatibility. + + * src/Makefile.am + +2011-01-23 Braden McDaniel <br...@en...> + Use JS_EncodeString instead of the obsolete JS_GetStringBytes. * configure.ac Modified: trunk/src/Makefile.am =================================================================== --- trunk/src/Makefile.am 2011-01-24 03:05:49 UTC (rev 4213) +++ trunk/src/Makefile.am 2011-01-24 04:31:22 UTC (rev 4214) @@ -762,8 +762,7 @@ -I$(top_builddir)/src/libopenvrml \ -I$(top_srcdir)/src/libopenvrml \ -I$(top_builddir)/src/libopenvrml-gl \ - -I$(top_srcdir)/src/libopenvrml-gl \ - -DGTK_DISABLE_DEPRECATED + -I$(top_srcdir)/src/libopenvrml-gl openvrml_xembed_openvrml_xembed_CXXFLAGS = \ $(PTHREAD_CFLAGS) \ $(DBUS_G_CFLAGS) \ @@ -832,9 +831,6 @@ endif openvrml_player_openvrml_player_CPPFLAGS = \ - -DG_DISABLE_DEPRECATED \ - -DGTK_DISABLE_DEPRECATED \ - -DGNOME_DISABLE_DEPRECATED \ -DOPENVRML_PLAYER_PKGDATADIR_=\"$(datadir)/openvrml-player\" \ -DOPENVRML_LIBEXECDIR_=\"$(libexecdir)\" \ -Iopenvrml-player \ @@ -888,7 +884,6 @@ mozilla_plugin_openvrml_la_CPPFLAGS = \ -DMOZ_X11 \ - -DGTK_DISABLE_DEPRECATED \ -DOPENVRML_LIBEXECDIR_=\"$(libexecdir)\" \ -Imozilla-plugin mozilla_plugin_openvrml_la_CXXFLAGS = \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |