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-07-09 08:14:59
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2946 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog configure.ac Log Message: Define JS_THREADSAFE when compiling against newer libmozjs. This is required when building against the libmozjs included with Firefox 2.0. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.92.2.25 retrieving revision 1.92.2.26 diff -C2 -d -r1.92.2.25 -r1.92.2.26 *** configure.ac 9 Jul 2007 07:31:46 -0000 1.92.2.25 --- configure.ac 9 Jul 2007 08:14:58 -0000 1.92.2.26 *************** *** 266,269 **** --- 266,282 ---- fi openvrml_run_path="${GRE_PATH}${openvrml_run_path}" + + # + # Ugh. libmozjs from Firefox 2.0 needs -DJS_THREADSAFE; but the + # Cflags from the pkg-config metadata don't include it. Check + # mozilla-config.h; if we find JS_THREADSAFE there, assume we need + # it. + # + AS_IF([test -n "$mozilla_js_pkg"], + [moz_includedir=`$PKG_CONFIG --variable=includedir $mozilla_js_pkg` + AS_IF([grep JS_THREADSAFE $moz_includedir/mozilla-config.h > /dev/null], + [AS_IF([$PKG_CONFIG --cflags $mozilla_js_pkg | grep JS_THREADSAFE > /dev/null], + , + [JS_CFLAGS="${JS_CFLAGS} -DJS_THREADSAFE"])])]) fi fi Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.185 retrieving revision 1.1310.2.186 diff -C2 -d -r1.1310.2.185 -r1.1310.2.186 *** ChangeLog 9 Jul 2007 07:45:49 -0000 1.1310.2.185 --- ChangeLog 9 Jul 2007 08:14:57 -0000 1.1310.2.186 *************** *** 1,4 **** --- 1,20 ---- 2007-07-09 Braden McDaniel <br...@en...> + Define JS_THREADSAFE when compiling against newer libmozjs. This + is required when building against the libmozjs included with + Firefox 2.0. + + * configure.ac: The pkg-config metadata file for libmozjs doesn't + include -DJS_THREADSAFE in Cflags. Inspect mozilla-config.h to + see if JS_THREADSAFE is defined there; and if so, add + -DJS_THREADSAFE to JS_CFLAGS. + * src/libopenvrml/openvrml/script.cpp + (js_::script::activate(double, const std::string &, size_t, const + openvrml::field_value *[])): When compiling with JS_THREADSAFE, + call JS_SetContextThread on entering this function and + JS_ClearContextThread on leaving it. + + 2007-07-09 Braden McDaniel <br...@en...> + Doc-comment fixes. |
From: Braden M. <br...@us...> - 2007-07-09 08:14:58
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2946/src/libopenvrml/openvrml Modified Files: Tag: OpenVRML-0_16-BRANCH script.cpp Log Message: Define JS_THREADSAFE when compiling against newer libmozjs. This is required when building against the libmozjs included with Firefox 2.0. Index: script.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/script.cpp,v retrieving revision 1.77.2.3 retrieving revision 1.77.2.4 diff -C2 -d -r1.77.2.3 -r1.77.2.4 *** script.cpp 18 Apr 2007 03:58:01 -0000 1.77.2.3 --- script.cpp 9 Jul 2007 08:14:58 -0000 1.77.2.4 *************** *** 3217,3220 **** --- 3217,3227 ---- assert(this->cx); + # ifdef JS_THREADSAFE + JS_SetContextThread(this->cx); + openvrml_::scope_guard context_thread_guard = + openvrml_::make_guard(&JS_ClearContextThread, this->cx); + boost::ignore_unused_variable_warning(context_thread_guard); + # endif + jsval fval, rval; JSObject * const globalObj = JS_GetGlobalObject(this->cx); |
From: Braden M. <br...@us...> - 2007-07-09 08:14:35
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2913 Modified Files: ChangeLog configure.ac Log Message: Define JS_THREADSAFE when compiling against newer libmozjs. This is required when building against the libmozjs included with Firefox 2.0. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.119 retrieving revision 1.120 diff -C2 -d -r1.119 -r1.120 *** configure.ac 1 Jul 2007 03:53:36 -0000 1.119 --- configure.ac 9 Jul 2007 08:14:35 -0000 1.120 *************** *** 266,269 **** --- 266,282 ---- fi openvrml_run_path="${GRE_PATH}${openvrml_run_path}" + + # + # Ugh. libmozjs from Firefox 2.0 needs -DJS_THREADSAFE; but the + # Cflags from the pkg-config metadata don't include it. Check + # mozilla-config.h; if we find JS_THREADSAFE there, assume we need + # it. + # + AS_IF([test -n "$mozilla_js_pkg"], + [moz_includedir=`$PKG_CONFIG --variable=includedir $mozilla_js_pkg` + AS_IF([grep JS_THREADSAFE $moz_includedir/mozilla-config.h > /dev/null], + [AS_IF([$PKG_CONFIG --cflags $mozilla_js_pkg | grep JS_THREADSAFE > /dev/null], + , + [JS_CFLAGS="${JS_CFLAGS} -DJS_THREADSAFE"])])]) fi fi Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1531 retrieving revision 1.1532 diff -C2 -d -r1.1531 -r1.1532 *** ChangeLog 9 Jul 2007 07:08:16 -0000 1.1531 --- ChangeLog 9 Jul 2007 08:14:35 -0000 1.1532 *************** *** 1,7 **** 2007-07-09 Braden McDaniel <br...@en...> * README: Added documentation for --with-libjs. ! 2007-07-06 Braden McDaniel <br...@en...> Doc-comment fixes. --- 1,23 ---- + 2007-07-06 Braden McDaniel <br...@en...> + + Define JS_THREADSAFE when compiling against newer libmozjs. This + is required when building against the libmozjs included with + Firefox 2.0. + + * configure.ac: The pkg-config metadata file for libmozjs doesn't + include -DJS_THREADSAFE in Cflags. Inspect mozilla-config.h to + see if JS_THREADSAFE is defined there; and if so, add + -DJS_THREADSAFE to JS_CFLAGS. + * src/libopenvrml/openvrml/script.cpp + (js_::script::activate(double, const std::string &, size_t, const + openvrml::field_value *[])): When compiling with JS_THREADSAFE, + call JS_SetContextThread on entering this function and + JS_ClearContextThread on leaving it. + 2007-07-09 Braden McDaniel <br...@en...> * README: Added documentation for --with-libjs. ! 2007-07-09 Braden McDaniel <br...@en...> Doc-comment fixes. |
From: Braden M. <br...@us...> - 2007-07-09 08:14:35
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2913/src/libopenvrml/openvrml Modified Files: script.cpp Log Message: Define JS_THREADSAFE when compiling against newer libmozjs. This is required when building against the libmozjs included with Firefox 2.0. Index: script.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/script.cpp,v retrieving revision 1.82 retrieving revision 1.83 diff -C2 -d -r1.82 -r1.83 *** script.cpp 15 May 2007 02:45:09 -0000 1.82 --- script.cpp 9 Jul 2007 08:14:36 -0000 1.83 *************** *** 3217,3220 **** --- 3217,3227 ---- assert(this->cx); + # ifdef JS_THREADSAFE + JS_SetContextThread(this->cx); + openvrml_::scope_guard context_thread_guard = + openvrml_::make_guard(&JS_ClearContextThread, this->cx); + boost::ignore_unused_variable_warning(context_thread_guard); + # endif + jsval fval, rval; JSObject * const globalObj = JS_GetGlobalObject(this->cx); |
From: Braden M. <br...@us...> - 2007-07-09 07:45:49
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23768/src/libopenvrml/openvrml Modified Files: Tag: OpenVRML-0_16-BRANCH field_value.cpp node.cpp Log Message: Doc-comment fixes. Index: field_value.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/field_value.cpp,v retrieving revision 1.28.2.2 retrieving revision 1.28.2.3 diff -C2 -d -r1.28.2.2 -r1.28.2.3 *** field_value.cpp 6 Mar 2007 07:23:11 -0000 1.28.2.2 --- field_value.cpp 9 Jul 2007 07:45:49 -0000 1.28.2.3 *************** *** 660,664 **** * * @param[in,out] in input stream. ! * @param[in] type_id @c field_value type identifier. * * @return @p in. --- 660,664 ---- * * @param[in,out] in input stream. ! * @param[out] type_id @c field_value type identifier. * * @return @p in. Index: node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/node.cpp,v retrieving revision 1.88.2.3 retrieving revision 1.88.2.4 diff -C2 -d -r1.88.2.3 -r1.88.2.4 *** node.cpp 6 Mar 2007 07:23:11 -0000 1.88.2.3 --- node.cpp 9 Jul 2007 07:45:49 -0000 1.88.2.4 *************** *** 185,189 **** * * @param[in,out] in an input stream. ! * @param[in] type a @c node interface type. * * @return @p in. --- 185,189 ---- * * @param[in,out] in an input stream. ! * @param[out] type a @c node interface type. * * @return @p in. *************** *** 303,307 **** * * @param[in,out] in input stream. ! * @param[in] interface @c node_interface. * * @return @p in. --- 303,307 ---- * * @param[in,out] in input stream. ! * @param[out] interface @c node_interface. * * @return @p in. |
From: Braden M. <br...@us...> - 2007-07-09 07:45:49
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23768 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Doc-comment fixes. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.184 retrieving revision 1.1310.2.185 diff -C2 -d -r1.1310.2.184 -r1.1310.2.185 *** ChangeLog 9 Jul 2007 07:42:44 -0000 1.1310.2.184 --- ChangeLog 9 Jul 2007 07:45:49 -0000 1.1310.2.185 *************** *** 1,4 **** --- 1,11 ---- 2007-07-09 Braden McDaniel <br...@en...> + Doc-comment fixes. + + * src/libopenvrml/openvrml/field_value.cpp + * src/libopenvrml/openvrml/node.cpp + + 2007-07-09 Braden McDaniel <br...@en...> + * openvrml.pc.in: Added BOOST_LIB_SUFFIX to -lboost_thread. |
From: Braden M. <br...@us...> - 2007-07-09 07:42:44
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv22560 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog openvrml.pc.in Log Message: Added BOOST_LIB_SUFFIX to -lboost_thread. Index: openvrml.pc.in =================================================================== RCS file: /cvsroot/openvrml/openvrml/openvrml.pc.in,v retrieving revision 1.10.2.1 retrieving revision 1.10.2.2 diff -C2 -d -r1.10.2.1 -r1.10.2.2 *** openvrml.pc.in 4 Feb 2007 07:55:31 -0000 1.10.2.1 --- openvrml.pc.in 9 Jul 2007 07:42:44 -0000 1.10.2.2 *************** *** 5,11 **** Name: @PACKAGE_NAME@ ! Description: VRML97 run-time library. Version: @PACKAGE_VERSION@ Requires: @OPENVRML_PKG_REQUIRES@ ! Libs: -L${libdir} -lopenvrml @JPEG_LIBS@ @PNG_LIBS@ @JNI_LIBS@ -lboost_thread Cflags: -I${includedir} --- 5,11 ---- Name: @PACKAGE_NAME@ ! Description: VRML/X3D run-time library. Version: @PACKAGE_VERSION@ Requires: @OPENVRML_PKG_REQUIRES@ ! Libs: -L${libdir} -lopenvrml @JPEG_LIBS@ @PNG_LIBS@ @JNI_LIBS@ -lboost_thread@BOOST_LIB_SUFFIX@ Cflags: -I${includedir} Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.183 retrieving revision 1.1310.2.184 diff -C2 -d -r1.1310.2.183 -r1.1310.2.184 *** ChangeLog 9 Jul 2007 07:37:44 -0000 1.1310.2.183 --- ChangeLog 9 Jul 2007 07:42:44 -0000 1.1310.2.184 *************** *** 1,4 **** --- 1,8 ---- 2007-07-09 Braden McDaniel <br...@en...> + * openvrml.pc.in: Added BOOST_LIB_SUFFIX to -lboost_thread. + + 2007-07-09 Braden McDaniel <br...@en...> + * src/libopenvrml-gl/openvrml/gl/viewer.cpp: Check to see whether HAVE_WINDOWS_H and HAVE_APPLE_OPENGL_FRAMEWORK are defined. |
From: Braden M. <br...@us...> - 2007-07-09 07:38:14
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20533 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Check to see whether HAVE_WINDOWS_H and HAVE_APPLE_OPENGL_FRAMEWORK are defined. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.182 retrieving revision 1.1310.2.183 diff -C2 -d -r1.1310.2.182 -r1.1310.2.183 *** ChangeLog 9 Jul 2007 07:31:45 -0000 1.1310.2.182 --- ChangeLog 9 Jul 2007 07:37:44 -0000 1.1310.2.183 *************** *** 1,4 **** --- 1,9 ---- 2007-07-09 Braden McDaniel <br...@en...> + * src/libopenvrml-gl/openvrml/gl/viewer.cpp: Check to see whether + HAVE_WINDOWS_H and HAVE_APPLE_OPENGL_FRAMEWORK are defined. + + 2007-07-09 Braden McDaniel <br...@en...> + automake no longer requires that M4 macros be explicitly listed (in EXTRA_DIST) in order to be packaged. |
From: Braden M. <br...@us...> - 2007-07-09 07:37:46
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20533/src/libopenvrml-gl/openvrml/gl Modified Files: Tag: OpenVRML-0_16-BRANCH viewer.cpp Log Message: Check to see whether HAVE_WINDOWS_H and HAVE_APPLE_OPENGL_FRAMEWORK are defined. Index: viewer.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl/viewer.cpp,v retrieving revision 1.43.2.14 retrieving revision 1.43.2.15 diff -C2 -d -r1.43.2.14 -r1.43.2.15 *** viewer.cpp 31 May 2007 07:59:16 -0000 1.43.2.14 --- viewer.cpp 9 Jul 2007 07:37:44 -0000 1.43.2.15 *************** *** 30,34 **** # endif ! # if HAVE_WINDOWS_H && defined(_WIN32) # include <windows.h> # endif --- 30,34 ---- # endif ! # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include <windows.h> # endif *************** *** 37,41 **** # endif ! # if HAVE_APPLE_OPENGL_FRAMEWORK # include <OpenGL/gl.h> # include <OpenGL/glu.h> --- 37,41 ---- # endif ! # ifdef HAVE_APPLE_OPENGL_FRAMEWORK # include <OpenGL/gl.h> # include <OpenGL/glu.h> *************** *** 1967,1971 **** * C linkage. */ ! # if HAVE_APPLE_OPENGL_FRAMEWORK typedef GLvoid (OPENVRML_GL_CALLBACK_* TessCB)(...); # else --- 1967,1971 ---- * C linkage. */ ! # ifdef HAVE_APPLE_OPENGL_FRAMEWORK typedef GLvoid (OPENVRML_GL_CALLBACK_* TessCB)(...); # else |
From: Braden M. <br...@us...> - 2007-07-09 07:31:46
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18243 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Makefile.am configure.ac Log Message: automake no longer requires that M4 macros be explicitly listed (in EXTRA_DIST) in order to be packaged. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.92.2.24 retrieving revision 1.92.2.25 diff -C2 -d -r1.92.2.24 -r1.92.2.25 *** configure.ac 9 Jul 2007 06:59:09 -0000 1.92.2.24 --- configure.ac 9 Jul 2007 07:31:46 -0000 1.92.2.25 *************** *** 4,8 **** AC_CONFIG_FILES([Makefile] [doc/Makefile] - [m4/Makefile] [ide-projects/Makefile] [models/Makefile] --- 4,7 ---- Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/Makefile.am,v retrieving revision 1.51.2.2 retrieving revision 1.51.2.3 diff -C2 -d -r1.51.2.2 -r1.51.2.3 *** Makefile.am 24 Nov 2006 05:40:58 -0000 1.51.2.2 --- Makefile.am 9 Jul 2007 07:31:46 -0000 1.51.2.3 *************** *** 1,3 **** ! SUBDIRS = doc ide-projects m4 models lib java src mozilla-plugin examples tests ACLOCAL_AMFLAGS = -I m4 --- 1,3 ---- ! SUBDIRS = doc ide-projects models lib java src mozilla-plugin examples tests ACLOCAL_AMFLAGS = -I m4 Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.181 retrieving revision 1.1310.2.182 diff -C2 -d -r1.1310.2.181 -r1.1310.2.182 *** ChangeLog 9 Jul 2007 07:08:29 -0000 1.1310.2.181 --- ChangeLog 9 Jul 2007 07:31:45 -0000 1.1310.2.182 *************** *** 1,4 **** --- 1,15 ---- 2007-07-09 Braden McDaniel <br...@en...> + automake no longer requires that M4 macros be explicitly + listed (in EXTRA_DIST) in order to be packaged. + + * Makefile.am + * configure.ac + * m4/COPYING: Removed; a copy of the GPL is now in the package + root directory. + * m4/Makefile.am: Removed. + + 2007-07-09 Braden McDaniel <br...@en...> + * README: Added documentation for --with-libjs. |
From: Braden M. <br...@us...> - 2007-07-09 07:31:46
|
Update of /cvsroot/openvrml/openvrml/m4 In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18243/m4 Removed Files: Tag: OpenVRML-0_16-BRANCH COPYING Makefile.am Log Message: automake no longer requires that M4 macros be explicitly listed (in EXTRA_DIST) in order to be packaged. --- Makefile.am DELETED --- --- COPYING DELETED --- |
From: Braden M. <br...@us...> - 2007-07-09 07:08:30
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8974 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog README Log Message: Added documentation for --with-libjs. Index: README =================================================================== RCS file: /cvsroot/openvrml/openvrml/README,v retrieving revision 1.65.2.16 retrieving revision 1.65.2.17 diff -C2 -d -r1.65.2.16 -r1.65.2.17 *** README 2 Jun 2007 06:46:31 -0000 1.65.2.16 --- README 9 Jul 2007 07:08:30 -0000 1.65.2.17 *************** *** 217,220 **** --- 217,227 ---- Use Apple's OpenGL framework on Mac OS X. + --with-libjs + Use the stand-alone SpiderMonkey distribution. By default, + "configure" looks for SpiderMonkey as it is distributed with a + Mozilla Gecko-based Web browser (i.e., libmozjs). Passing the + argument "--with-libjs" causes "configure" to look instead for the + stand-alone distribution of SpiderMonkey (i.e., libjs). + Significant preprocessor symbols Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.180 retrieving revision 1.1310.2.181 diff -C2 -d -r1.1310.2.180 -r1.1310.2.181 *** ChangeLog 9 Jul 2007 06:59:05 -0000 1.1310.2.180 --- ChangeLog 9 Jul 2007 07:08:29 -0000 1.1310.2.181 *************** *** 1,4 **** --- 1,8 ---- 2007-07-09 Braden McDaniel <br...@en...> + * README: Added documentation for --with-libjs. + + 2007-07-09 Braden McDaniel <br...@en...> + * configure.ac: Added option --with-libjs to enable use of libjs built from the stand-alone SpiderMonkey distribution. |
From: Braden M. <br...@us...> - 2007-07-09 07:08:16
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8945 Modified Files: ChangeLog README Log Message: Added documentation for --with-libjs. Index: README =================================================================== RCS file: /cvsroot/openvrml/openvrml/README,v retrieving revision 1.81 retrieving revision 1.82 diff -C2 -d -r1.81 -r1.82 *** README 2 Jun 2007 06:47:04 -0000 1.81 --- README 9 Jul 2007 07:08:16 -0000 1.82 *************** *** 217,220 **** --- 217,227 ---- Use Apple's OpenGL framework on Mac OS X. + --with-libjs + Use the stand-alone SpiderMonkey distribution. By default, + "configure" looks for SpiderMonkey as it is distributed with a + Mozilla Gecko-based Web browser (i.e., libmozjs). Passing the + argument "--with-libjs" causes "configure" to look instead for the + stand-alone distribution of SpiderMonkey (i.e., libjs). + Significant preprocessor symbols Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1530 retrieving revision 1.1531 diff -C2 -d -r1.1530 -r1.1531 *** ChangeLog 6 Jul 2007 20:55:27 -0000 1.1530 --- ChangeLog 9 Jul 2007 07:08:16 -0000 1.1531 *************** *** 1,2 **** --- 1,6 ---- + 2007-07-09 Braden McDaniel <br...@en...> + + * README: Added documentation for --with-libjs. + 2007-07-06 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-07-09 06:59:09
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6353 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog configure.ac Log Message: Added option --with-libjs to enable use of libjs built from the stand-alone SpiderMonkey distribution. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.92.2.23 retrieving revision 1.92.2.24 diff -C2 -d -r1.92.2.23 -r1.92.2.24 *** configure.ac 2 Jun 2007 06:46:31 -0000 1.92.2.23 --- configure.ac 9 Jul 2007 06:59:09 -0000 1.92.2.24 *************** *** 127,136 **** ]) ! PKG_CHECK_MODULES([JS], [$REQUIRE_FIREFOX_JS], [mozilla_js_pkg=$REQUIRE_FIREFOX_JS], [PKG_CHECK_MODULES([JS], [$REQUIRE_MOZILLA_JS], [mozilla_js_pkg=$REQUIRE_MOZILLA_JS], ! [have_js=no])]) # # openvrml-xembed and openvrml-player both use GOption, which was --- 127,138 ---- ]) ! have_libmozjs=yes PKG_CHECK_MODULES([JS], [$REQUIRE_FIREFOX_JS], [mozilla_js_pkg=$REQUIRE_FIREFOX_JS], [PKG_CHECK_MODULES([JS], [$REQUIRE_MOZILLA_JS], [mozilla_js_pkg=$REQUIRE_MOZILLA_JS], ! [have_libmozjs=no])]) ! AC_CHECK_LIB([js], [JS_Init], [have_libjs=yes], [have_libjs=no]) ! # # openvrml-xembed and openvrml-player both use GOption, which was *************** *** 239,260 **** [AC_HELP_STRING([--disable-script-node-javascript], [disable Script node JavaScript support])]) if test "X$enable_script_node_javascript" = "Xno"; then JS_CFLAGS="" JS_LIBS="" else ! if test "X$have_js" = "Xno"; then ! AC_MSG_FAILURE([Mozilla JavaScript is required for Script node JavaScript support.]) fi ! if test -n "${OPENVRML_PKG_REQUIRES}"; then ! OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES}," fi ! OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES} ${mozilla_js_pkg}" ! AC_DEFINE([OPENVRML_ENABLE_SCRIPT_NODE_JAVASCRIPT], [1], [Defined if Script node JavaScript support is enabled.]) ! GRE_PATH=`$PKG_CONFIG --libs-only-L ${mozilla_js_pkg%% *} | sed -e 's/^-L//' -e 's/ *$//'` ! if test -n "${openvrml_run_path}" -a -n "${GRE_PATH}"; then ! openvrml_run_path=":${openvrml_run_path}" fi - openvrml_run_path="${GRE_PATH}${openvrml_run_path}" fi AC_SUBST([JS_CFLAGS]) --- 241,271 ---- [AC_HELP_STRING([--disable-script-node-javascript], [disable Script node JavaScript support])]) + AC_ARG_WITH([libjs], + [AC_HELP_STRING([--with-libjs], + [use libjs for JavaScript support])]) if test "X$enable_script_node_javascript" = "Xno"; then JS_CFLAGS="" JS_LIBS="" else ! if test X$with_libjs = Xyes; then ! JS_CFLAGS="" ! JS_LIBS="-ljs" fi ! if test X$have_libmozjs = Xno -a X$have_libjs = Xno; then ! AC_MSG_FAILURE([SpiderMonkey is required for Script node JavaScript support.]) fi ! if test X$with_libjs != Xyes; then ! if test -n "${OPENVRML_PKG_REQUIRES}"; then ! OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES}," ! fi ! OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES} ${mozilla_js_pkg}" ! AC_DEFINE([OPENVRML_ENABLE_SCRIPT_NODE_JAVASCRIPT], [1], [Defined if Script node JavaScript support is enabled.]) ! GRE_PATH=`$PKG_CONFIG --libs-only-L ${mozilla_js_pkg%% *} | sed -e 's/^-L//' -e 's/ *$//'` ! if test -n "${openvrml_run_path}" -a -n "${GRE_PATH}"; then ! openvrml_run_path=":${openvrml_run_path}" ! fi ! openvrml_run_path="${GRE_PATH}${openvrml_run_path}" fi fi AC_SUBST([JS_CFLAGS]) Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.179 retrieving revision 1.1310.2.180 diff -C2 -d -r1.1310.2.179 -r1.1310.2.180 *** ChangeLog 9 Jul 2007 06:54:29 -0000 1.1310.2.179 --- ChangeLog 9 Jul 2007 06:59:05 -0000 1.1310.2.180 *************** *** 1,4 **** --- 1,9 ---- 2007-07-09 Braden McDaniel <br...@en...> + * configure.ac: Added option --with-libjs to enable use of libjs + built from the stand-alone SpiderMonkey distribution. + + 2007-07-09 Braden McDaniel <br...@en...> + * src/libopenvrml/openvrml/vrml97node.cpp: Wrap include of jpeglib.h in extern "C"; the MacPorts variant of the libjpeg |
From: Braden M. <br...@us...> - 2007-07-09 06:54:30
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4674 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Wrap include of jpeglib.h in extern "C"; the MacPorts variant of the libjpeg header doesn't do this. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.178 retrieving revision 1.1310.2.179 diff -C2 -d -r1.1310.2.178 -r1.1310.2.179 *** ChangeLog 2 Jun 2007 06:46:31 -0000 1.1310.2.178 --- ChangeLog 9 Jul 2007 06:54:29 -0000 1.1310.2.179 *************** *** 1,2 **** --- 1,8 ---- + 2007-07-09 Braden McDaniel <br...@en...> + + * src/libopenvrml/openvrml/vrml97node.cpp: Wrap include of + jpeglib.h in extern "C"; the MacPorts variant of the libjpeg + header doesn't do this. + 2007-06-02 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-07-09 06:54:30
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4674/src/libopenvrml/openvrml Modified Files: Tag: OpenVRML-0_16-BRANCH vrml97node.cpp Log Message: Wrap include of jpeglib.h in extern "C"; the MacPorts variant of the libjpeg header doesn't do this. Index: vrml97node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/vrml97node.cpp,v retrieving revision 1.108.2.15 retrieving revision 1.108.2.16 diff -C2 -d -r1.108.2.15 -r1.108.2.16 *** vrml97node.cpp 28 Apr 2007 06:58:43 -0000 1.108.2.15 --- vrml97node.cpp 9 Jul 2007 06:54:29 -0000 1.108.2.16 *************** *** 31,35 **** --- 31,37 ---- # endif # ifdef OPENVRML_ENABLE_JPEG_TEXTURES + extern "C" { # include <jpeglib.h> + } # endif # include <algorithm> |
From: Braden M. <br...@us...> - 2007-07-06 20:55:47
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4960 Modified Files: ChangeLog Log Message: Doc-comment fixes. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1529 retrieving revision 1.1530 diff -C2 -d -r1.1529 -r1.1530 *** ChangeLog 1 Jul 2007 19:06:50 -0000 1.1529 --- ChangeLog 6 Jul 2007 20:55:27 -0000 1.1530 *************** *** 1,2 **** --- 1,9 ---- + 2007-07-06 Braden McDaniel <br...@en...> + + Doc-comment fixes. + + * src/libopenvrml/openvrml/field_value.cpp + * src/libopenvrml/openvrml/node.cpp + 2007-07-01 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-07-06 20:55:47
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4960/src/libopenvrml/openvrml Modified Files: field_value.cpp node.cpp Log Message: Doc-comment fixes. Index: field_value.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/field_value.cpp,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** field_value.cpp 6 Jun 2007 06:28:27 -0000 1.31 --- field_value.cpp 6 Jul 2007 20:55:28 -0000 1.32 *************** *** 660,664 **** * * @param[in,out] in input stream. ! * @param[in] type_id @c field_value type identifier. * * @return @p in. --- 660,664 ---- * * @param[in,out] in input stream. ! * @param[out] type_id @c field_value type identifier. * * @return @p in. Index: node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/node.cpp,v retrieving revision 1.94 retrieving revision 1.95 diff -C2 -d -r1.94 -r1.95 *** node.cpp 1 Jul 2007 01:38:40 -0000 1.94 --- node.cpp 6 Jul 2007 20:55:28 -0000 1.95 *************** *** 185,189 **** * * @param[in,out] in an input stream. ! * @param[in] type a @c node interface type. * * @return @p in. --- 185,189 ---- * * @param[in,out] in an input stream. ! * @param[out] type a @c node interface type. * * @return @p in. *************** *** 303,307 **** * * @param[in,out] in input stream. ! * @param[in] interface @c node_interface. * * @return @p in. --- 303,307 ---- * * @param[in,out] in input stream. ! * @param[out] interface @c node_interface. * * @return @p in. |
From: Braden M. <br...@us...> - 2007-07-01 19:06:52
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20970 Modified Files: ChangeLog Log Message: Updates for ANTLR 2.7.7. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1528 retrieving revision 1.1529 diff -C2 -d -r1.1528 -r1.1529 *** ChangeLog 1 Jul 2007 04:00:57 -0000 1.1528 --- ChangeLog 1 Jul 2007 19:06:50 -0000 1.1529 *************** *** 1,4 **** --- 1,8 ---- 2007-07-01 Braden McDaniel <br...@en...> + * lib/antlr/GNUmakefile.am (EXTRA_DIST): Updates for ANTLR 2.7.7. + + 2007-07-01 Braden McDaniel <br...@en...> + * openvrml.pc.in: Added BOOST_LIB_SUFFIX to -lboost_thread. |
From: Braden M. <br...@us...> - 2007-07-01 19:06:52
|
Update of /cvsroot/openvrml/openvrml/lib/antlr In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20970/lib/antlr Modified Files: GNUmakefile.am Log Message: Updates for ANTLR 2.7.7. Index: GNUmakefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/lib/antlr/GNUmakefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** GNUmakefile.am 3 Nov 2006 06:03:44 -0000 1.6 --- GNUmakefile.am 1 Jul 2007 19:06:52 -0000 1.7 *************** *** 85,107 **** EXTRA_DIST = \ ! Makefile \ ! antlr.dsp \ ! antlr.dsw \ doxygen.cfg \ ! antlr/Makefile \ contrib/bcb4/README \ contrib/bcb4/antlr.cpp \ contrib/bcb4/antlr.bpr \ - contrib/MSCV6/README \ - contrib/MSCV6/libcpp.dsp \ - contrib/MSCV6/libcpp.dsw \ - contrib/MSCV6-dll/README \ - contrib/MSCV6-dll/antlr.dsw \ - contrib/MSCV6-dll/dll.cpp \ - contrib/MSCV6-dll/dll.dsp \ - contrib/MSCV6-dll/lib.dsp \ scripts/cr_stripper.sh \ scripts/make_change_log.tcl \ ! src/Makefile \ src/dll.cpp --- 85,97 ---- EXTRA_DIST = \ ! Makefile.in \ doxygen.cfg \ ! antlr/Makefile.in \ contrib/bcb4/README \ contrib/bcb4/antlr.cpp \ contrib/bcb4/antlr.bpr \ scripts/cr_stripper.sh \ scripts/make_change_log.tcl \ ! src/Makefile.in \ src/dll.cpp |
From: Braden M. <br...@us...> - 2007-07-01 04:00:59
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv9404 Modified Files: ChangeLog openvrml.pc.in Log Message: Added BOOST_LIB_SUFFIX to -lboost_thread. Index: openvrml.pc.in =================================================================== RCS file: /cvsroot/openvrml/openvrml/openvrml.pc.in,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** openvrml.pc.in 4 Feb 2007 07:55:43 -0000 1.11 --- openvrml.pc.in 1 Jul 2007 04:00:58 -0000 1.12 *************** *** 5,11 **** Name: @PACKAGE_NAME@ ! Description: VRML97 run-time library. Version: @PACKAGE_VERSION@ Requires: @OPENVRML_PKG_REQUIRES@ ! Libs: -L${libdir} -lopenvrml @JPEG_LIBS@ @PNG_LIBS@ @JNI_LIBS@ -lboost_thread Cflags: -I${includedir} --- 5,11 ---- Name: @PACKAGE_NAME@ ! Description: VRML/X3D run-time library. Version: @PACKAGE_VERSION@ Requires: @OPENVRML_PKG_REQUIRES@ ! Libs: -L${libdir} -lopenvrml @JPEG_LIBS@ @PNG_LIBS@ @JNI_LIBS@ -lboost_thread@BOOST_LIB_SUFFIX@ Cflags: -I${includedir} Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1527 retrieving revision 1.1528 diff -C2 -d -r1.1527 -r1.1528 *** ChangeLog 1 Jul 2007 03:53:36 -0000 1.1527 --- ChangeLog 1 Jul 2007 04:00:57 -0000 1.1528 *************** *** 1,2 **** --- 1,6 ---- + 2007-07-01 Braden McDaniel <br...@en...> + + * openvrml.pc.in: Added BOOST_LIB_SUFFIX to -lboost_thread. + 2007-06-30 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-07-01 03:53:36
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7712 Modified Files: ChangeLog configure.ac Log Message: Fixed comparison of with_libjs shell variable. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.118 retrieving revision 1.119 diff -C2 -d -r1.118 -r1.119 *** configure.ac 30 Jun 2007 23:07:52 -0000 1.118 --- configure.ac 1 Jul 2007 03:53:36 -0000 1.119 *************** *** 254,258 **** AC_MSG_FAILURE([SpiderMonkey is required for Script node JavaScript support.]) fi ! if test X$with_libjs = Xno; then if test -n "${OPENVRML_PKG_REQUIRES}"; then OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES}," --- 254,258 ---- AC_MSG_FAILURE([SpiderMonkey is required for Script node JavaScript support.]) fi ! if test X$with_libjs != Xyes; then if test -n "${OPENVRML_PKG_REQUIRES}"; then OPENVRML_PKG_REQUIRES="${OPENVRML_PKG_REQUIRES}," Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1526 retrieving revision 1.1527 diff -C2 -d -r1.1526 -r1.1527 *** ChangeLog 1 Jul 2007 03:11:31 -0000 1.1526 --- ChangeLog 1 Jul 2007 03:53:36 -0000 1.1527 *************** *** 1,4 **** --- 1,8 ---- 2007-06-30 Braden McDaniel <br...@en...> + * configure.ac: Fixed comparison of with_libjs shell variable. + + 2007-06-30 Braden McDaniel <br...@en...> + * src/libopenvrml-gl/openvrml/gl/viewer.cpp: Check to see whether HAVE_WINDOWS_H and HAVE_APPLE_OPENGL_FRAMEWORK are defined. |
From: Braden M. <br...@us...> - 2007-07-01 03:11:31
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24727/src/libopenvrml-gl/openvrml/gl Modified Files: viewer.cpp Log Message: Check to see whether HAVE_WINDOWS_H and HAVE_APPLE_OPENGL_FRAMEWORK are defined. Index: viewer.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl/viewer.cpp,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** viewer.cpp 1 Jul 2007 03:01:29 -0000 1.63 --- viewer.cpp 1 Jul 2007 03:11:31 -0000 1.64 *************** *** 30,34 **** # endif ! # if HAVE_WINDOWS_H && defined(_WIN32) # include <windows.h> # endif --- 30,34 ---- # endif ! # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include <windows.h> # endif *************** *** 37,41 **** # endif ! # if HAVE_APPLE_OPENGL_FRAMEWORK # include <OpenGL/gl.h> # include <OpenGL/glu.h> --- 37,41 ---- # endif ! # ifdef HAVE_APPLE_OPENGL_FRAMEWORK # include <OpenGL/gl.h> # include <OpenGL/glu.h> *************** *** 1979,1983 **** * C linkage. */ ! # if HAVE_APPLE_OPENGL_FRAMEWORK typedef GLvoid (OPENVRML_GL_CALLBACK_* TessCB)(...); # else --- 1979,1983 ---- * C linkage. */ ! # ifdef HAVE_APPLE_OPENGL_FRAMEWORK typedef GLvoid (OPENVRML_GL_CALLBACK_* TessCB)(...); # else |
From: Braden M. <br...@us...> - 2007-07-01 03:11:31
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24727 Modified Files: ChangeLog Log Message: Check to see whether HAVE_WINDOWS_H and HAVE_APPLE_OPENGL_FRAMEWORK are defined. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1525 retrieving revision 1.1526 diff -C2 -d -r1.1525 -r1.1526 *** ChangeLog 1 Jul 2007 03:01:27 -0000 1.1525 --- ChangeLog 1 Jul 2007 03:11:31 -0000 1.1526 *************** *** 1,4 **** --- 1,9 ---- 2007-06-30 Braden McDaniel <br...@en...> + * src/libopenvrml-gl/openvrml/gl/viewer.cpp: Check to see whether + HAVE_WINDOWS_H and HAVE_APPLE_OPENGL_FRAMEWORK are defined. + + 2007-06-30 Braden McDaniel <br...@en...> + * src/libopenvrml-gl/openvrml/gl/viewer.cpp (trackball(float, float, float, float)): Initialize rotation. |
From: Braden M. <br...@us...> - 2007-07-01 03:01:30
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv20845/src/libopenvrml-gl/openvrml/gl Modified Files: viewer.cpp Log Message: Initialize rotation. Index: viewer.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl/viewer.cpp,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** viewer.cpp 31 May 2007 07:59:32 -0000 1.62 --- viewer.cpp 1 Jul 2007 03:01:29 -0000 1.63 *************** *** 867,870 **** --- 867,871 ---- { using openvrml::rotation; + using openvrml::make_rotation; using openvrml::vec3f; using openvrml::make_vec3f; *************** *** 879,883 **** static const float trackballSize = 0.8f; ! rotation result; if (p1x == p2x && p1y == p2y) { --- 880,884 ---- static const float trackballSize = 0.8f; ! rotation result = make_rotation(); if (p1x == p2x && p1y == p2y) { |