You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(128) |
Dec
(65) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(48) |
Feb
(132) |
Mar
(95) |
Apr
(47) |
May
(54) |
Jun
(2) |
Jul
(57) |
Aug
(109) |
Sep
(131) |
Oct
(186) |
Nov
(105) |
Dec
(78) |
2007 |
Jan
(125) |
Feb
(105) |
Mar
(52) |
Apr
(104) |
May
(63) |
Jun
(116) |
Jul
(76) |
Aug
|
Sep
(18) |
Oct
(93) |
Nov
(110) |
Dec
(169) |
2008 |
Jan
(90) |
Feb
(64) |
Mar
(41) |
Apr
(23) |
May
(6) |
Jun
(18) |
Jul
(10) |
Aug
(61) |
Sep
(139) |
Oct
(50) |
Nov
(55) |
Dec
(2) |
2009 |
Jan
|
Feb
(1) |
Mar
(62) |
Apr
(22) |
May
(17) |
Jun
(19) |
Jul
(40) |
Aug
(21) |
Sep
|
Oct
(40) |
Nov
(23) |
Dec
|
2010 |
Jan
(14) |
Feb
(40) |
Mar
(9) |
Apr
(11) |
May
(19) |
Jun
(4) |
Jul
(10) |
Aug
(22) |
Sep
(15) |
Oct
|
Nov
(2) |
Dec
|
2011 |
Jan
(13) |
Feb
(10) |
Mar
|
Apr
(13) |
May
|
Jun
|
Jul
(2) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(33) |
May
(20) |
Jun
|
Jul
(8) |
Aug
(7) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Braden M. <br...@us...> - 2007-10-11 02:29:22
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1043 Modified Files: ChangeLog Log Message: Since unsigned long is quite probably larger than 4 bytes on 64-bit platforms, use openvrml::int32 in pixel accessor and mutator functions on openvrml::image. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1554 retrieving revision 1.1555 diff -C2 -d -r1.1554 -r1.1555 *** ChangeLog 10 Oct 2007 21:23:19 -0000 1.1554 --- ChangeLog 11 Oct 2007 02:29:24 -0000 1.1555 *************** *** 1,4 **** --- 1,11 ---- 2007-10-10 Braden McDaniel <br...@en...> + * src/libopenvrml/openvrml/basetypes.h + (openvrml::image): Since unsigned long is quite probably larger + than 4 bytes on 64-bit platforms, use openvrml::int32 in pixel + accessor and mutator functions. + + 2007-10-10 Braden McDaniel <br...@en...> + * tests/node_interface_set.cpp (find_exposedfield_matching_eventin): We want to test |
From: Braden M. <br...@us...> - 2007-10-10 21:32:18
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8230 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: We want to test openvrml::find_interface here, not openvrml::node_interface_set::find. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.200 retrieving revision 1.1310.2.201 diff -C2 -d -r1.1310.2.200 -r1.1310.2.201 *** ChangeLog 10 Oct 2007 07:48:33 -0000 1.1310.2.200 --- ChangeLog 10 Oct 2007 21:32:12 -0000 1.1310.2.201 *************** *** 1,4 **** --- 1,11 ---- 2007-10-10 Braden McDaniel <br...@en...> + * tests/node_interface_set.cpp + (find_exposedfield_matching_eventin): We want to test + openvrml::find_interface here, not + openvrml::node_interface_set::find. + + 2007-10-10 Braden McDaniel <br...@en...> + Let libtool handle the dependency relationship between libopenvrml-gl and libopenvrml so clients can just refer to the |
From: Braden M. <br...@us...> - 2007-10-10 21:32:17
|
Update of /cvsroot/openvrml/openvrml/tests In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8230/tests Modified Files: Tag: OpenVRML-0_16-BRANCH node_interface_set.cpp Log Message: We want to test openvrml::find_interface here, not openvrml::node_interface_set::find. Index: node_interface_set.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/tests/node_interface_set.cpp,v retrieving revision 1.3.2.2 retrieving revision 1.3.2.3 diff -C2 -d -r1.3.2.2 -r1.3.2.3 *** node_interface_set.cpp 6 Oct 2007 09:29:13 -0000 1.3.2.2 --- node_interface_set.cpp 10 Oct 2007 21:32:13 -0000 1.3.2.3 *************** *** 141,145 **** BOOST_CHECK(interfaces.insert(interface).second); const node_interface_set::const_iterator pos = ! interfaces.find(interface); BOOST_CHECK(pos != interfaces.end()); BOOST_REQUIRE(interface == *pos); --- 141,145 ---- BOOST_CHECK(interfaces.insert(interface).second); const node_interface_set::const_iterator pos = ! find_interface(interfaces, "set_yyy"); BOOST_CHECK(pos != interfaces.end()); BOOST_REQUIRE(interface == *pos); |
From: Braden M. <br...@us...> - 2007-10-10 21:23:25
|
Update of /cvsroot/openvrml/openvrml/tests In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4625/tests Modified Files: node_interface_set.cpp Log Message: We want to test openvrml::find_interface here, not openvrml::node_interface_set::find. Index: node_interface_set.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/tests/node_interface_set.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** node_interface_set.cpp 6 Oct 2007 09:29:06 -0000 1.5 --- node_interface_set.cpp 10 Oct 2007 21:23:19 -0000 1.6 *************** *** 141,145 **** BOOST_CHECK(interfaces.insert(interface).second); const node_interface_set::const_iterator pos = ! interfaces.find(interface); BOOST_CHECK(pos != interfaces.end()); BOOST_REQUIRE(interface == *pos); --- 141,145 ---- BOOST_CHECK(interfaces.insert(interface).second); const node_interface_set::const_iterator pos = ! find_interface(interfaces, "set_yyy"); BOOST_CHECK(pos != interfaces.end()); BOOST_REQUIRE(interface == *pos); |
From: Braden M. <br...@us...> - 2007-10-10 21:23:25
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4625 Modified Files: ChangeLog Log Message: We want to test openvrml::find_interface here, not openvrml::node_interface_set::find. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1553 retrieving revision 1.1554 diff -C2 -d -r1.1553 -r1.1554 *** ChangeLog 10 Oct 2007 07:49:12 -0000 1.1553 --- ChangeLog 10 Oct 2007 21:23:19 -0000 1.1554 *************** *** 1,4 **** --- 1,11 ---- 2007-10-10 Braden McDaniel <br...@en...> + * tests/node_interface_set.cpp + (find_exposedfield_matching_eventin): We want to test + openvrml::find_interface here, not + openvrml::node_interface_set::find. + + 2007-10-10 Braden McDaniel <br...@en...> + * src/libopenvrml/private.h: Added overload of std::operator<< to make BOOST_SPIRIT_DEBUG happy. |
From: Braden M. <br...@us...> - 2007-10-10 07:49:10
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2816/src/libopenvrml Modified Files: private.h Log Message: Added overload of std::operator<< to make BOOST_SPIRIT_DEBUG happy. Index: private.h =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/private.h,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** private.h 3 Jan 2007 23:08:39 -0000 1.14 --- private.h 10 Oct 2007 07:49:12 -0000 1.15 *************** *** 822,828 **** absolute_uri = ( ! scheme[ ! absolute_uri.scheme_begin = arg1, ! absolute_uri.scheme_end = arg2 ] >> ':' )[ --- 822,828 ---- absolute_uri = ( ! scheme[ ! absolute_uri.scheme_begin = arg1, ! absolute_uri.scheme_end = arg2 ] >> ':' )[ *************** *** 832,836 **** ] >> (hier_part | opaque_part)[ self.actions.scheme_specific_part ! ] ; --- 832,836 ---- ] >> (hier_part | opaque_part)[ self.actions.scheme_specific_part ! ] ; *************** *** 987,989 **** --- 987,1001 ---- } + # ifdef BOOST_SPIRIT_DEBUG + namespace std { + + template <typename C, typename E, typename IteratorT> + std::basic_ostream<C, E> & + operator<<(std::basic_ostream<C, E> & out, IteratorT) + { + return out; + } + } + # endif + # endif |
From: Braden M. <br...@us...> - 2007-10-10 07:49:10
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2816 Modified Files: ChangeLog Log Message: Added overload of std::operator<< to make BOOST_SPIRIT_DEBUG happy. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1552 retrieving revision 1.1553 diff -C2 -d -r1.1552 -r1.1553 *** ChangeLog 10 Oct 2007 07:04:54 -0000 1.1552 --- ChangeLog 10 Oct 2007 07:49:12 -0000 1.1553 *************** *** 1,4 **** --- 1,9 ---- 2007-10-10 Braden McDaniel <br...@en...> + * src/libopenvrml/private.h: Added overload of std::operator<< to + make BOOST_SPIRIT_DEBUG happy. + + 2007-10-10 Braden McDaniel <br...@en...> + Let libtool handle the dependency relationship between libopenvrml-gl and libopenvrml so clients can just refer to the |
From: Braden M. <br...@us...> - 2007-10-10 07:48:32
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2388 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Let libtool handle the dependency relationship between libopenvrml-gl and libopenvrml so clients can just refer to the former. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.199 retrieving revision 1.1310.2.200 diff -C2 -d -r1.1310.2.199 -r1.1310.2.200 *** ChangeLog 8 Oct 2007 01:16:53 -0000 1.1310.2.199 --- ChangeLog 10 Oct 2007 07:48:33 -0000 1.1310.2.200 *************** *** 1,2 **** --- 1,15 ---- + 2007-10-10 Braden McDaniel <br...@en...> + + Let libtool handle the dependency relationship between + libopenvrml-gl and libopenvrml so clients can just refer to the + former. + + * examples/Makefile.am (LDADD): Removed reference to + libopenvrml.la. + * src/libopenvrml-gl/Makefile.am + (libopenvrml_gl_la_LIBADD): Depend on libopenvrml.la. + * src/openvrml-xembed/Makefile.am + (LDADD): Removed reference to libopenvrml.la. + 2007-10-07 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-10-10 07:48:32
|
Update of /cvsroot/openvrml/openvrml/src/openvrml-xembed In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2388/src/openvrml-xembed Modified Files: Tag: OpenVRML-0_16-BRANCH Makefile.am Log Message: Let libtool handle the dependency relationship between libopenvrml-gl and libopenvrml so clients can just refer to the former. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/openvrml-xembed/Attic/Makefile.am,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** Makefile.am 28 Apr 2007 19:11:59 -0000 1.1.2.2 --- Makefile.am 10 Oct 2007 07:48:34 -0000 1.1.2.3 *************** *** 12,16 **** AM_LDFLAGS = @OPENVRML_RPATH@ $(GTK_LIBS) LDADD = $(top_builddir)/src/libopenvrml-gl/libopenvrml-gl.la \ - $(top_builddir)/src/libopenvrml/libopenvrml.la \ $(top_builddir)/lib/gtkglext/gtk/libgtkglext-x11-1.0.la \ $(top_builddir)/lib/gtkglext/gdk/libgdkglext-x11-1.0.la --- 12,15 ---- |
From: Braden M. <br...@us...> - 2007-10-10 07:48:31
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2388/src/libopenvrml-gl Modified Files: Tag: OpenVRML-0_16-BRANCH Makefile.am Log Message: Let libtool handle the dependency relationship between libopenvrml-gl and libopenvrml so clients can just refer to the former. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/Attic/Makefile.am,v retrieving revision 1.6.2.5 retrieving revision 1.6.2.6 diff -C2 -d -r1.6.2.5 -r1.6.2.6 *** Makefile.am 12 Jul 2007 06:10:38 -0000 1.6.2.5 --- Makefile.am 10 Oct 2007 07:48:33 -0000 1.6.2.6 *************** *** 28,31 **** --- 28,32 ---- libopenvrml_gl_la_SOURCES = openvrml/gl/viewer.cpp libopenvrml_gl_la_LDFLAGS = -version-info $(LIBRARY_VERSION) @GLU_LIBS@ + libopenvrml_gl_la_LIBADD = ../libopenvrml/libopenvrml.la endif |
From: Braden M. <br...@us...> - 2007-10-10 07:48:31
|
Update of /cvsroot/openvrml/openvrml/examples In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2388/examples Modified Files: Tag: OpenVRML-0_16-BRANCH Makefile.am Log Message: Let libtool handle the dependency relationship between libopenvrml-gl and libopenvrml so clients can just refer to the former. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/examples/Makefile.am,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -C2 -d -r1.2.2.1 -r1.2.2.2 *** Makefile.am 8 Oct 2007 01:16:54 -0000 1.2.2.1 --- Makefile.am 10 Oct 2007 07:48:33 -0000 1.2.2.2 *************** *** 6,11 **** AM_CXXFLAGS = $(SDL_CFLAGS) AM_LDFLAGS = $(OPENVRML_RPATH) $(SDL_LIBS) $(JNI_LIBS) $(GLU_LIBS) ! LDADD = $(top_builddir)/src/libopenvrml-gl/libopenvrml-gl.la \ ! $(top_builddir)/src/libopenvrml/libopenvrml.la if ENABLE_EXAMPLES --- 6,10 ---- AM_CXXFLAGS = $(SDL_CFLAGS) AM_LDFLAGS = $(OPENVRML_RPATH) $(SDL_LIBS) $(JNI_LIBS) $(GLU_LIBS) ! LDADD = $(top_builddir)/src/libopenvrml-gl/libopenvrml-gl.la if ENABLE_EXAMPLES |
From: Braden M. <br...@us...> - 2007-10-10 07:05:00
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17228 Modified Files: ChangeLog Log Message: Let libtool handle the dependency relationship between libopenvrml-gl and libopenvrml so clients can just refer to the former. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1551 retrieving revision 1.1552 diff -C2 -d -r1.1551 -r1.1552 *** ChangeLog 8 Oct 2007 01:14:23 -0000 1.1551 --- ChangeLog 10 Oct 2007 07:04:54 -0000 1.1552 *************** *** 1,2 **** --- 1,16 ---- + 2007-10-10 Braden McDaniel <br...@en...> + + Let libtool handle the dependency relationship between + libopenvrml-gl and libopenvrml so clients can just refer to the + former. + + * examples/Makefile.am (LDADD): Removed reference to + libopenvrml.la. + * src/Makefile.am + (libopenvrml_gl_libopenvrml_gl_la_LIBADD): Depend on + libopenvrml.la. + (openvrml_xembed_openvrml_xembed_LDADD): Remove reference to + libopenvrml.la. + 2007-10-07 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-10-10 07:05:00
|
Update of /cvsroot/openvrml/openvrml/src In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17228/src Modified Files: Makefile.am Log Message: Let libtool handle the dependency relationship between libopenvrml-gl and libopenvrml so clients can just refer to the former. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/Makefile.am,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile.am 6 Oct 2007 20:15:35 -0000 1.10 --- Makefile.am 10 Oct 2007 07:04:54 -0000 1.11 *************** *** 183,186 **** --- 183,187 ---- -version-info $(LIBOPENVRML_GL_LIBRARY_VERSION) \ $(GLU_LIBS) + libopenvrml_gl_libopenvrml_gl_la_LIBADD = libopenvrml/libopenvrml.la openvrml_xembed_openvrml_xembed_CPPFLAGS = \ *************** *** 206,210 **** openvrml_xembed_openvrml_xembed_LDADD = \ libopenvrml-gl/libopenvrml-gl.la \ - libopenvrml/libopenvrml.la \ $(top_builddir)/lib/gtkglext/gtk/libgtkglext-x11-1.0.la \ $(top_builddir)/lib/gtkglext/gdk/libgdkglext-x11-1.0.la --- 207,210 ---- |
From: Braden M. <br...@us...> - 2007-10-10 07:05:00
|
Update of /cvsroot/openvrml/openvrml/examples In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17228/examples Modified Files: Makefile.am Log Message: Let libtool handle the dependency relationship between libopenvrml-gl and libopenvrml so clients can just refer to the former. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/examples/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.am 8 Oct 2007 01:14:24 -0000 1.3 --- Makefile.am 10 Oct 2007 07:04:54 -0000 1.4 *************** *** 6,11 **** AM_CXXFLAGS = $(SDL_CFLAGS) AM_LDFLAGS = $(OPENVRML_RPATH) $(SDL_LIBS) $(JNI_LIBS) $(GLU_LIBS) ! LDADD = $(top_builddir)/src/libopenvrml-gl/libopenvrml-gl.la \ ! $(top_builddir)/src/libopenvrml/libopenvrml.la if ENABLE_EXAMPLES --- 6,10 ---- AM_CXXFLAGS = $(SDL_CFLAGS) AM_LDFLAGS = $(OPENVRML_RPATH) $(SDL_LIBS) $(JNI_LIBS) $(GLU_LIBS) ! LDADD = $(top_builddir)/src/libopenvrml-gl/libopenvrml-gl.la if ENABLE_EXAMPLES |
From: Braden M. <br...@us...> - 2007-10-08 01:16:53
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv16648 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: On Mac OS X, it seems we can't always rely on the dependency to be propagated via libopenvrml-gl.la; add GLU_LIBS here. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.198 retrieving revision 1.1310.2.199 diff -C2 -d -r1.1310.2.198 -r1.1310.2.199 *** ChangeLog 8 Oct 2007 00:56:56 -0000 1.1310.2.198 --- ChangeLog 8 Oct 2007 01:16:53 -0000 1.1310.2.199 *************** *** 1,4 **** --- 1,10 ---- 2007-10-07 Braden McDaniel <br...@en...> + * examples/Makefile.am (AM_LDFLAGS): On Mac OS X, it seems we + can't always rely on the dependency to be propagated via + libopenvrml-gl.la; add GLU_LIBS here. + + 2007-10-07 Braden McDaniel <br...@en...> + * lib/gtkglext/configure.in: Add X_CFLAGS to CFLAGS before checking for GLX types. |
From: Braden M. <br...@us...> - 2007-10-08 01:16:52
|
Update of /cvsroot/openvrml/openvrml/examples In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv16648/examples Modified Files: Tag: OpenVRML-0_16-BRANCH Makefile.am Log Message: On Mac OS X, it seems we can't always rely on the dependency to be propagated via libopenvrml-gl.la; add GLU_LIBS here. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/examples/Makefile.am,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** Makefile.am 11 Aug 2005 22:50:13 -0000 1.2 --- Makefile.am 8 Oct 2007 01:16:54 -0000 1.2.2.1 *************** *** 4,9 **** -I$(top_builddir)/src/libopenvrml-gl \ -I$(top_srcdir)/src/libopenvrml-gl ! AM_CXXFLAGS = @SDL_CFLAGS@ ! AM_LDFLAGS = @OPENVRML_RPATH@ @SDL_LIBS@ @JNI_LIBS@ LDADD = $(top_builddir)/src/libopenvrml-gl/libopenvrml-gl.la \ $(top_builddir)/src/libopenvrml/libopenvrml.la --- 4,9 ---- -I$(top_builddir)/src/libopenvrml-gl \ -I$(top_srcdir)/src/libopenvrml-gl ! AM_CXXFLAGS = $(SDL_CFLAGS) ! AM_LDFLAGS = $(OPENVRML_RPATH) $(SDL_LIBS) $(JNI_LIBS) $(GLU_LIBS) LDADD = $(top_builddir)/src/libopenvrml-gl/libopenvrml-gl.la \ $(top_builddir)/src/libopenvrml/libopenvrml.la |
From: Braden M. <br...@us...> - 2007-10-08 01:14:21
|
Update of /cvsroot/openvrml/openvrml/examples In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15806/examples Modified Files: Makefile.am Log Message: On Mac OS X, it seems we can't always rely on the dependency to be propagated via libopenvrml-gl.la; add GLU_LIBS here. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/examples/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 11 Aug 2005 22:50:13 -0000 1.2 --- Makefile.am 8 Oct 2007 01:14:24 -0000 1.3 *************** *** 4,9 **** -I$(top_builddir)/src/libopenvrml-gl \ -I$(top_srcdir)/src/libopenvrml-gl ! AM_CXXFLAGS = @SDL_CFLAGS@ ! AM_LDFLAGS = @OPENVRML_RPATH@ @SDL_LIBS@ @JNI_LIBS@ LDADD = $(top_builddir)/src/libopenvrml-gl/libopenvrml-gl.la \ $(top_builddir)/src/libopenvrml/libopenvrml.la --- 4,9 ---- -I$(top_builddir)/src/libopenvrml-gl \ -I$(top_srcdir)/src/libopenvrml-gl ! AM_CXXFLAGS = $(SDL_CFLAGS) ! AM_LDFLAGS = $(OPENVRML_RPATH) $(SDL_LIBS) $(JNI_LIBS) $(GLU_LIBS) LDADD = $(top_builddir)/src/libopenvrml-gl/libopenvrml-gl.la \ $(top_builddir)/src/libopenvrml/libopenvrml.la |
From: Braden M. <br...@us...> - 2007-10-08 01:14:21
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15806 Modified Files: ChangeLog Log Message: On Mac OS X, it seems we can't always rely on the dependency to be propagated via libopenvrml-gl.la; add GLU_LIBS here. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1550 retrieving revision 1.1551 diff -C2 -d -r1.1550 -r1.1551 *** ChangeLog 7 Oct 2007 22:52:05 -0000 1.1550 --- ChangeLog 8 Oct 2007 01:14:23 -0000 1.1551 *************** *** 1,4 **** --- 1,10 ---- 2007-10-07 Braden McDaniel <br...@en...> + * examples/Makefile.am (AM_LDFLAGS): On Mac OS X, it seems we + can't always rely on the dependency to be propagated via + libopenvrml-gl.la; add GLU_LIBS here. + + 2007-10-07 Braden McDaniel <br...@en...> + * lib/gtkglext/configure.in: Add X_CFLAGS to CFLAGS before checking for GLX types. |
From: Braden M. <br...@us...> - 2007-10-08 00:56:55
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8823 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Add X_CFLAGS to CFLAGS before checking for GLX types. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.197 retrieving revision 1.1310.2.198 diff -C2 -d -r1.1310.2.197 -r1.1310.2.198 *** ChangeLog 6 Oct 2007 09:29:12 -0000 1.1310.2.197 --- ChangeLog 8 Oct 2007 00:56:56 -0000 1.1310.2.198 *************** *** 1,2 **** --- 1,7 ---- + 2007-10-07 Braden McDaniel <br...@en...> + + * lib/gtkglext/configure.in: Add X_CFLAGS to CFLAGS before + checking for GLX types. + 2007-10-06 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-10-08 00:56:55
|
Update of /cvsroot/openvrml/openvrml/lib/gtkglext In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8823/lib/gtkglext Modified Files: Tag: OpenVRML-0_16-BRANCH configure.in Log Message: Add X_CFLAGS to CFLAGS before checking for GLX types. Index: configure.in =================================================================== RCS file: /cvsroot/openvrml/openvrml/lib/gtkglext/configure.in,v retrieving revision 1.2.2.5 retrieving revision 1.2.2.6 diff -C2 -d -r1.2.2.5 -r1.2.2.6 *** configure.in 26 Apr 2007 07:43:47 -0000 1.2.2.5 --- configure.in 8 Oct 2007 00:56:57 -0000 1.2.2.6 *************** *** 651,654 **** --- 651,657 ---- # Checks for some types in gdk/GL/glxext.h + ge_save_CFLAGS=$CFLAGS + CFLAGS="$X_CFLAGS $CFLAGS" + # GLXFBConfigSGIX GDKGLEXT_NEED_GLXFBCONFIGSGIX_TYPEDEF=no *************** *** 691,694 **** --- 694,698 ---- fi + CFLAGS=$ge_save_CFLAGS else |
From: Braden M. <br...@us...> - 2007-10-07 22:52:05
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24727 Modified Files: ChangeLog Log Message: Add X_CFLAGS to CFLAGS before checking for GLX types. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1549 retrieving revision 1.1550 diff -C2 -d -r1.1549 -r1.1550 *** ChangeLog 6 Oct 2007 20:15:33 -0000 1.1549 --- ChangeLog 7 Oct 2007 22:52:05 -0000 1.1550 *************** *** 1,2 **** --- 1,7 ---- + 2007-10-07 Braden McDaniel <br...@en...> + + * lib/gtkglext/configure.in: Add X_CFLAGS to CFLAGS before + checking for GLX types. + 2007-10-06 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-10-07 22:52:05
|
Update of /cvsroot/openvrml/openvrml/lib/gtkglext In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24727/lib/gtkglext Modified Files: configure.in Log Message: Add X_CFLAGS to CFLAGS before checking for GLX types. Index: configure.in =================================================================== RCS file: /cvsroot/openvrml/openvrml/lib/gtkglext/configure.in,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** configure.in 26 Apr 2007 07:44:02 -0000 1.6 --- configure.in 7 Oct 2007 22:52:07 -0000 1.7 *************** *** 651,654 **** --- 651,657 ---- # Checks for some types in gdk/GL/glxext.h + ge_save_CFLAGS=$CFLAGS + CFLAGS="$X_CFLAGS $CFLAGS" + # GLXFBConfigSGIX GDKGLEXT_NEED_GLXFBCONFIGSGIX_TYPEDEF=no *************** *** 691,694 **** --- 694,698 ---- fi + CFLAGS=$ge_save_CFLAGS else |
From: Braden M. <br...@us...> - 2007-10-06 20:15:36
|
Update of /cvsroot/openvrml/openvrml/src In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18569/src Modified Files: Makefile.am Log Message: Made the build less recursive. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/Makefile.am,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile.am 5 Feb 2007 05:36:11 -0000 1.9 --- Makefile.am 6 Oct 2007 20:15:35 -0000 1.10 *************** *** 1 **** ! SUBDIRS = libopenvrml libopenvrml-gl openvrml-xembed openvrml-player --- 1,278 ---- ! lib_LTLIBRARIES = libopenvrml/libopenvrml.la ! if ENABLE_GL_RENDERER ! lib_LTLIBRARIES += libopenvrml-gl/libopenvrml-gl.la ! endif ! ! if ENABLE_XEMBED ! libexec_PROGRAMS = openvrml-xembed/openvrml-xembed ! endif ! ! if ENABLE_PLAYER ! bin_PROGRAMS = openvrml-player/openvrml-player ! endif ! ! pkginclude_HEADERS = \ ! libopenvrml/openvrml-config.h \ ! libopenvrml/openvrml-common.h ! ! if ENABLE_GL_RENDERER ! pkginclude_HEADERS += \ ! libopenvrml-gl/openvrml-gl-config.h \ ! libopenvrml-gl/openvrml-gl-common.h ! endif ! ! openvrml_includedir = $(pkgincludedir)/openvrml ! openvrml_include_HEADERS = \ ! libopenvrml/openvrml/read_write_mutex.h \ ! libopenvrml/openvrml/basetypes.h \ ! libopenvrml/openvrml/field_value.h \ ! libopenvrml/openvrml/event.h \ ! libopenvrml/openvrml/exposedfield.h \ ! libopenvrml/openvrml/scope.h \ ! libopenvrml/openvrml/node.h \ ! libopenvrml/openvrml/bounding_volume.h \ ! libopenvrml/openvrml/script.h \ ! libopenvrml/openvrml/browser.h \ ! libopenvrml/openvrml/viewer.h \ ! libopenvrml/openvrml/rendering_context.h \ ! libopenvrml/openvrml/frustum.h \ ! libopenvrml/openvrml/node_impl_util.h \ ! libopenvrml/openvrml/vrml97node.h \ ! libopenvrml/openvrml/x3d_core.h \ ! libopenvrml/openvrml/x3d_networking.h \ ! libopenvrml/openvrml/x3d_grouping.h \ ! libopenvrml/openvrml/x3d_rendering.h \ ! libopenvrml/openvrml/x3d_shape.h \ ! libopenvrml/openvrml/x3d_geometry2d.h \ ! libopenvrml/openvrml/x3d_texturing.h \ ! libopenvrml/openvrml/x3d_interpolation.h \ ! libopenvrml/openvrml/x3d_key_device_sensor.h \ ! libopenvrml/openvrml/x3d_event_utilities.h \ ! libopenvrml/openvrml/x3d_dis.h \ ! libopenvrml/openvrml/x3d_environmental_effects.h \ ! libopenvrml/openvrml/x3d_geospatial.h \ ! libopenvrml/openvrml/x3d_hanim.h \ ! libopenvrml/openvrml/x3d_nurbs.h \ ! libopenvrml/openvrml/x3d_cad_geometry.h ! ! if ENABLE_GL_RENDERER ! openvrml_gl_includedir = $(pkgincludedir)/openvrml/gl ! openvrml_gl_include_HEADERS = libopenvrml-gl/openvrml/gl/viewer.h ! endif ! ! VRML97PARSER_BUILT_SOURCEFILES = \ ! $(srcdir)/libopenvrml/openvrml/Vrml97Parser.cpp \ ! $(srcdir)/libopenvrml/openvrml/Vrml97Parser.hpp \ ! $(srcdir)/libopenvrml/openvrml/Vrml97ParserTokenTypes.hpp ! VRML97PARSER_BUILT_TEXTFILES = \ ! libopenvrml/openvrml/Vrml97ParserTokenTypes.txt ! VRML97PARSER_BUILT_FILES = \ ! $(VRML97PARSER_BUILT_SOURCEFILES) \ ! $(VRML97PARSER_BUILT_TEXTFILES) ! ! X3DVRMLPARSER_BUILT_SOURCEFILES = \ ! $(srcdir)/libopenvrml/openvrml/X3DVrmlParser.cpp \ ! $(srcdir)/libopenvrml/openvrml/X3DVrmlParser.hpp \ ! $(srcdir)/libopenvrml/openvrml/X3DVrmlParserTokenTypes.hpp ! X3DVRMLPARSER_BUILT_TEXTFILES = \ ! $(srcdir)/libopenvrml/openvrml/X3DVrmlParserTokenTypes.txt ! X3DVRMLPARSER_BUILT_FILES = \ ! $(X3DVRMLPARSER_BUILT_SOURCEFILES) \ ! $(X3DVRMLPARSER_BUILT_TEXTFILES) ! ! noinst_HEADERS = \ ! libopenvrml/private.h \ ! libopenvrml/openvrml/ScriptJDK.h \ ! $(VRML97PARSER_BUILT_SOURCEFILES) \ ! $(X3DVRMLPARSER_BUILT_SOURCEFILES) \ ! openvrml-xembed/bounded_buffer.h \ ! openvrml-xembed/command_istream.h \ ! openvrml-xembed/plugin_streambuf.h \ ! openvrml-xembed/request_channel.h \ ! openvrml-xembed/gtkvrmlbrowser.h \ ! openvrml-player/filechooserdialog.h ! ! LIBOPENVRML_LIBRARY_VERSION = 7:5:1 ! LIBOPENVRML_GL_LIBRARY_VERSION = 6:7:0 ! # | | | ! # +------+ | +---+ ! # | | | ! # current:revision:age ! # | | | ! # | | +- Increment if interfaces have been ! # | | added. Set to zero if interfaces ! # | | have been removed or changed. ! # | +- Increment if source code has changed ! # | Set to zero if current is incremented ! # +- Increment if interfaces have been added, removed ! # or changed ! ! libopenvrml_libopenvrml_la_CPPFLAGS = \ ! -I$(top_srcdir)/lib/antlr \ ! -I$(top_builddir)/java \ ! -I$(top_builddir)/src/libopenvrml \ ! -I$(top_srcdir)/src/libopenvrml \ ! -DOPENVRML_LIBDIR_=\"$(libdir)\" \ ! -DOPENVRML_PKGDATADIR_=\"$(pkgdatadir)\" \ ! -DBOOST_SPIRIT_THREADSAFE \ ! -DBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS \ ! -DBOOST_MPL_LIMIT_VECTOR_SIZE=30 ! libopenvrml_libopenvrml_la_CXXFLAGS = \ ! $(PTHREAD_CFLAGS) \ ! $(FONTCONFIG_CFLAGS) \ ! $(FREETYPE_CFLAGS) \ ! $(JS_CFLAGS) ! ! libopenvrml_libopenvrml_la_SOURCES = \ ! libopenvrml/openvrml/read_write_mutex.cpp \ ! libopenvrml/openvrml/basetypes.cpp \ ! libopenvrml/openvrml/field_value.cpp \ ! libopenvrml/openvrml/event.cpp \ ! libopenvrml/openvrml/exposedfield.cpp \ ! libopenvrml/openvrml/scope.cpp \ ! libopenvrml/openvrml/node.cpp \ ! libopenvrml/openvrml/bounding_volume.cpp \ ! libopenvrml/openvrml/script.cpp \ ! libopenvrml/openvrml/ScriptJDK.cpp \ ! libopenvrml/openvrml/browser.cpp \ ! libopenvrml/openvrml/viewer.cpp \ ! libopenvrml/openvrml/rendering_context.cpp \ ! libopenvrml/openvrml/frustum.cpp \ ! libopenvrml/openvrml/node_impl_util.cpp \ ! libopenvrml/openvrml/vrml97node.cpp \ ! libopenvrml/openvrml/x3d_core.cpp \ ! libopenvrml/openvrml/x3d_networking.cpp \ ! libopenvrml/openvrml/x3d_grouping.cpp \ ! libopenvrml/openvrml/x3d_rendering.cpp \ ! libopenvrml/openvrml/x3d_shape.cpp \ ! libopenvrml/openvrml/x3d_geometry2d.cpp \ ! libopenvrml/openvrml/x3d_texturing.cpp \ ! libopenvrml/openvrml/x3d_interpolation.cpp \ ! libopenvrml/openvrml/x3d_key_device_sensor.cpp \ ! libopenvrml/openvrml/x3d_event_utilities.cpp \ ! libopenvrml/openvrml/x3d_dis.cpp \ ! libopenvrml/openvrml/x3d_environmental_effects.cpp \ ! libopenvrml/openvrml/x3d_geospatial.cpp \ ! libopenvrml/openvrml/x3d_hanim.cpp \ ! libopenvrml/openvrml/x3d_nurbs.cpp \ ! libopenvrml/openvrml/x3d_cad_geometry.cpp ! ! libopenvrml_libopenvrml_la_LDFLAGS = \ ! -version-info $(LIBOPENVRML_LIBRARY_VERSION) \ ! $(JPEG_LIBS) \ ! $(PNG_LIBS) \ ! $(FONTCONFIG_LIBS) \ ! $(FREETYPE_LIBS) \ ! $(JS_LIBS) \ ! $(JNI_LIBS) \ ! $(PTHREAD_LIBS) ! ! libopenvrml_libopenvrml_la_LIBADD = \ ! $(top_builddir)/lib/antlr/libantlr.la \ ! -lboost_thread$(BOOST_LIB_SUFFIX) ! ! libopenvrml_gl_libopenvrml_gl_la_CPPFLAGS = \ ! -I$(top_builddir)/src/libopenvrml \ ! -I$(top_srcdir)/src/libopenvrml \ ! -I$(top_builddir)/src/libopenvrml-gl \ ! -I$(top_srcdir)/src/libopenvrml-gl ! libopenvrml_gl_libopenvrml_gl_la_CXXFLAGS = $(GLU_CFLAGS) ! libopenvrml_gl_libopenvrml_gl_la_SOURCES = \ ! libopenvrml-gl/openvrml/gl/viewer.cpp ! libopenvrml_gl_libopenvrml_gl_la_LDFLAGS = \ ! -version-info $(LIBOPENVRML_GL_LIBRARY_VERSION) \ ! $(GLU_LIBS) ! ! openvrml_xembed_openvrml_xembed_CPPFLAGS = \ ! -I$(top_srcdir)/lib/gtkglext \ ! -I$(top_builddir)/lib/gtkglext \ ! -I$(top_builddir)/lib/gtkglext/gdk \ ! -I$(top_builddir)/src/libopenvrml \ ! -I$(top_srcdir)/src/libopenvrml \ ! -I$(top_builddir)/src/libopenvrml-gl \ ! -I$(top_srcdir)/src/libopenvrml-gl \ ! -I$(mozincludedir) \ ! -DGTK_DISABLE_DEPRECATED ! openvrml_xembed_openvrml_xembed_CXXFLAGS = \ ! $(PTHREAD_CFLAGS) \ ! $(GTK_CFLAGS) \ ! $(GL_CFLAGS) ! openvrml_xembed_openvrml_xembed_SOURCES = \ ! openvrml-xembed/main.cpp \ ! openvrml-xembed/command_istream.cpp \ ! openvrml-xembed/plugin_streambuf.cpp \ ! openvrml-xembed/gtkvrmlbrowser.cpp ! openvrml_xembed_openvrml_xembed_LDFLAGS = $(OPENVRML_RPATH) $(GTK_LIBS) ! openvrml_xembed_openvrml_xembed_LDADD = \ ! libopenvrml-gl/libopenvrml-gl.la \ ! libopenvrml/libopenvrml.la \ ! $(top_builddir)/lib/gtkglext/gtk/libgtkglext-x11-1.0.la \ ! $(top_builddir)/lib/gtkglext/gdk/libgdkglext-x11-1.0.la ! ! ! openvrml_player_openvrml_player_CPPFLAGS = \ ! -DG_DISABLE_DEPRECATED \ ! -DGTK_DISABLE_DEPRECATED \ ! -DGNOME_DISABLE_DEPRECATED \ ! -DOPENVRML_PLAYER_PKGDATADIR_=\"$(datadir)/openvrml-player\" \ ! -DOPENVRML_LIBEXECDIR_=\"$(libexecdir)\" \ ! -I$(builddir)/libopenvrml \ ! -I$(srcdir)/libopenvrml ! openvrml_player_openvrml_player_CXXFLAGS = \ ! $(GNOMEUI_CFLAGS) \ ! $(GLADE_CFLAGS) \ ! $(CURL_CFLAGS) ! openvrml_player_openvrml_player_LDFLAGS = \ ! -export-dynamic \ ! $(GNOMEUI_LIBS) \ ! $(GLADE_LIBS) \ ! $(CURL_LIBS) ! ! openvrml_player_gladedir = $(datadir)/openvrml-player/glade ! openvrml_player_glade_DATA = openvrml-player/openvrml-player.glade ! ! openvrml_player_openvrml_player_SOURCES = \ ! openvrml-player/filechooserdialog.cpp \ ! openvrml-player/player.cpp ! ! ! EXTRA_DIST = \ ! libopenvrml/openvrml-config.h.in \ ! libopenvrml/openvrml/Vrml97TokenTypes.txt \ ! libopenvrml/openvrml/Vrml97Parser.g \ ! $(VRML97PARSER_BUILT_TEXTFILES) \ ! libopenvrml/openvrml/X3DVrmlTokenTypes.txt \ ! libopenvrml/openvrml/X3DVrmlParser.g \ ! $(X3DVRMLPARSER_BUILT_TEXTFILES) \ ! libopenvrml-gl/openvrml-gl-config.h.in \ ! $(openvrml_player_glade_DATA) ! ! BUILT_SOURCES = \ ! $(VRML97PARSER_BUILT_SOURCEFILES) \ ! $(X3DVRMLPARSER_BUILT_SOURCEFILES) ! ! # ! # Automake 1.10 seems to need this for distcheck to work. ! # ! CLEANFILES = \ ! openvrml-xembed/.libs/openvrml-xembed ! ! # ! # Note that maintainer-clean cleans BUILT_SOURCES, too. ! # ! MAINTAINERCLEANFILES = \ ! $(VRML97PARSER_BUILT_TEXTFILES) \ ! $(srcdir)/libopenvrml/openvrml/expandedX3DVrml97Parser.g \ ! $(X3DVRMLPARSER_BUILT_TEXTFILES) ! ! # ! # antlr doesn't update timestamps correctly; so files are touched after being ! # generated. ! # ! $(VRML97PARSER_BUILT_FILES): $(srcdir)/libopenvrml/openvrml/Vrml97Parser.g $(srcdir)/libopenvrml/openvrml/Vrml97TokenTypes.txt ! $(ANTLR) -o $(srcdir)/libopenvrml/openvrml $(srcdir)/libopenvrml/openvrml/Vrml97Parser.g \ ! && touch $(VRML97PARSER_BUILT_FILES) ! ! $(X3DVRMLPARSER_BUILT_FILES): $(srcdir)/libopenvrml/openvrml/Vrml97Parser.g $(srcdir)/libopenvrml/openvrml/X3DVrmlParser.g $(srcdir)/libopenvrml/openvrml/X3DVrmlTokenTypes.txt ! $(ANTLR) -o $(srcdir)/libopenvrml/openvrml -glib $(srcdir)/libopenvrml/openvrml/Vrml97Parser.g $(srcdir)/libopenvrml/openvrml/X3DVrmlParser.g \ ! && touch $(X3DVRMLPARSER_BUILT_FILES) |
From: Braden M. <br...@us...> - 2007-10-06 20:15:35
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18569/src/libopenvrml-gl Modified Files: .cvsignore Removed Files: Makefile.am Log Message: Made the build less recursive. Index: .cvsignore =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 29 Jul 2003 05:28:45 -0000 1.1 --- .cvsignore 6 Oct 2007 20:15:35 -0000 1.2 *************** *** 1 **** - Makefile.in --- 0 ---- --- Makefile.am DELETED --- |
From: Braden M. <br...@us...> - 2007-10-06 20:15:35
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18569 Modified Files: ChangeLog configure.ac Log Message: Made the build less recursive. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.122 retrieving revision 1.123 diff -C2 -d -r1.122 -r1.123 *** configure.ac 20 Sep 2007 06:44:44 -0000 1.122 --- configure.ac 6 Oct 2007 20:15:33 -0000 1.123 *************** *** 9,13 **** [models/textures/Makefile] [lib/Makefile] - [lib/antlr/GNUmakefile] [java/Makefile] [java/vrml/Makefile] --- 9,12 ---- *************** *** 15,24 **** [java/vrml/field/Makefile] [src/Makefile] - [src/libopenvrml/Makefile] [src/libopenvrml/openvrml-config.h] - [src/libopenvrml-gl/Makefile] [src/libopenvrml-gl/openvrml-gl-config.h] - [src/openvrml-xembed/Makefile] - [src/openvrml-player/Makefile] [examples/Makefile] [tests/Makefile] --- 14,19 ---- Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1548 retrieving revision 1.1549 diff -C2 -d -r1.1548 -r1.1549 *** ChangeLog 6 Oct 2007 09:29:05 -0000 1.1548 --- ChangeLog 6 Oct 2007 20:15:33 -0000 1.1549 *************** *** 1,4 **** --- 1,18 ---- 2007-10-06 Braden McDaniel <br...@en...> + Made the build less recursive. + + * configure.ac: Removed references to obsolete makefiles. + * lib/Makefile.am: Moved libantlr build rules here. + * lib/antlr/GNUmakefile.am: Removed file. + * src/Makefile.am: Moved build rules for libopenvrml, + libopenvrml-gl, openvrml-xembed, and openvrml-player here. + * src/libopenvrml/Makefile.am: Removed file. + * src/libopenvrml-gl/Makefile.am: Removed file. + * src/openvrml-player/Makefile.am: Removed file. + * src/openvrml-xembed/Makefile.am: Removed file. + + 2007-10-06 Braden McDaniel <br...@en...> + Test fixes for Boost 1.34.1. |