Update of /cvsroot/openvrml/openvrml/src/openvrml-player
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25299/src/openvrml-player
Modified Files:
Makefile.am player.cpp
Log Message:
openvrml-player needs libgnomeui; not just libgnome.
Index: player.cpp
===================================================================
RCS file: /cvsroot/openvrml/openvrml/src/openvrml-player/player.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** player.cpp 23 Jan 2007 10:06:19 -0000 1.2
--- player.cpp 24 Jan 2007 00:06:46 -0000 1.3
***************
*** 30,35 ****
# include <curl/curl.h>
# include <libgnomevfs/gnome-vfs.h>
! # include <libgnome/libgnome.h>
! # include <gtk/gtk.h>
# include <glade/glade.h>
--- 30,34 ----
# include <curl/curl.h>
# include <libgnomevfs/gnome-vfs.h>
! # include <libgnomeui/libgnomeui.h>
# include <glade/glade.h>
***************
*** 141,145 ****
gnome_program_init(app_id,
PACKAGE_VERSION,
! LIBGNOME_MODULE,
argc,
argv,
--- 140,144 ----
gnome_program_init(app_id,
PACKAGE_VERSION,
! LIBGNOMEUI_MODULE,
argc,
argv,
Index: Makefile.am
===================================================================
RCS file: /cvsroot/openvrml/openvrml/src/openvrml-player/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile.am 23 Jan 2007 10:06:19 -0000 1.2
--- Makefile.am 24 Jan 2007 00:06:46 -0000 1.3
***************
*** 5,10 ****
-DOPENVRML_PLAYER_PKGDATADIR_=\"$(datadir)/openvrml-player\" \
-DOPENVRML_LIBEXECDIR_=\"$(libexecdir)\"
! AM_CXXFLAGS = @GNOME_CFLAGS@ @GLADE_CFLAGS@ @CURL_CFLAGS@
! AM_LDFLAGS = -export-dynamic @GNOME_LIBS@ @GLADE_LIBS@ @CURL_LIBS@
gladedir = $(datadir)/openvrml-player/glade
--- 5,10 ----
-DOPENVRML_PLAYER_PKGDATADIR_=\"$(datadir)/openvrml-player\" \
-DOPENVRML_LIBEXECDIR_=\"$(libexecdir)\"
! AM_CXXFLAGS = @GNOMEUI_CFLAGS@ @GLADE_CFLAGS@ @CURL_CFLAGS@
! AM_LDFLAGS = -export-dynamic @GNOMEUI_LIBS@ @GLADE_LIBS@ @CURL_LIBS@
gladedir = $(datadir)/openvrml-player/glade
|