|
From: <br...@us...> - 2009-11-01 22:25:37
|
Revision: 4038
http://openvrml.svn.sourceforge.net/openvrml/?rev=4038&view=rev
Author: braden
Date: 2009-11-01 22:25:24 +0000 (Sun, 01 Nov 2009)
Log Message:
-----------
Improve error message when no SpiderMonkey is found: account for the possibility that the installed libjs was not built with -DJS_THREADSAFE.
Modified Paths:
--------------
trunk/ChangeLog
trunk/configure.ac
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-11-01 08:25:04 UTC (rev 4037)
+++ trunk/ChangeLog 2009-11-01 22:25:24 UTC (rev 4038)
@@ -1,5 +1,11 @@
2009-11-01 Braden McDaniel <br...@en...>
+ * configure.ac: Improve error message when no SpiderMonkey is
+ found: account for the possibility that the installed libjs was
+ not built with -DJS_THREADSAFE.
+
+2009-11-01 Braden McDaniel <br...@en...>
+
Require at least FreeType 2.2.
* configure.ac: Require FreeType >= 2.2.
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-11-01 08:25:04 UTC (rev 4037)
+++ trunk/configure.ac 2009-11-01 22:25:24 UTC (rev 4038)
@@ -296,7 +296,7 @@
[AS_IF([test -z "${JS_CFLAGS+x}"], [JS_CFLAGS="-DXP_UNIX -DJS_THREADSAFE"])
AS_IF([test -z "${JS_LIBS+x}"], [JS_LIBS="-ljs"])])
AS_IF([test \( \( X$have_libmozjs = Xno -o \( X$with_libjs = Xyes -a X$have_libjs = Xno \) \) -a -z "${JS_LIBS+x}" \) -o X$have_jsapi_h != Xyes],
- [AC_MSG_FAILURE([SpiderMonkey is required for Script node JavaScript support])])])
+ [AC_MSG_FAILURE([SpiderMonkey is required for Script node JavaScript support. If you are trying to build --with-libjs, make sure that libjs has been built with thread safety enabled.])])])
AC_SUBST([JS_CFLAGS])
AC_SUBST([JS_LIBS])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|