You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2010/01/17 10:02:20 UTC

svn commit: r900070 - in /tuscany/sca-cpp/trunk: INSTALL configure.ac

Author: jsdelfino
Date: Sun Jan 17 09:02:19 2010
New Revision: 900070

URL: http://svn.apache.org/viewvc?rev=900070&view=rev
Log:
Updated to newer version of xulrunner and libmozjs.

Modified:
    tuscany/sca-cpp/trunk/INSTALL
    tuscany/sca-cpp/trunk/configure.ac

Modified: tuscany/sca-cpp/trunk/INSTALL
URL: http://svn.apache.org/viewvc/tuscany/sca-cpp/trunk/INSTALL?rev=900070&r1=900069&r2=900070&view=diff
==============================================================================
--- tuscany/sca-cpp/trunk/INSTALL (original)
+++ tuscany/sca-cpp/trunk/INSTALL Sun Jan 17 09:02:19 2010
@@ -37,7 +37,7 @@
 
 JSON
 SpiderMonkey libmozjs
-(included in xulrunner-1.9.1.5)
+(included in xulrunner-1.9.1.7)
 
 Python
 libpython2.6
@@ -80,8 +80,8 @@
 ./configure --prefix=$HOME/tuscany-sca-cpp-bin \
 --with-apr=$HOME/httpd-2.2.13-bin --with-httpd=$HOME/httpd-2.2.13-bin \
 --with-curl=/usr --with-libxml2=/usr \
---with-js-include=/usr/include/xulrunner-1.9.1.5/unstable \
---with-js-lib=/usr/lib/xulrunner-1.9.1.5 \
+--with-js-include=/usr/include/xulrunner-1.9.1.7/unstable \
+--with-js-lib=/usr/lib/xulrunner-1.9.1.7 \
 --enable-python --with-python=/usr \
 --enable-java --with-java=/usr/lib/jvm/default-java \
 --enable-webservice --with-axis2c=$HOME/axis2c-1.6.0-bin \

Modified: tuscany/sca-cpp/trunk/configure.ac
URL: http://svn.apache.org/viewvc/tuscany/sca-cpp/trunk/configure.ac?rev=900070&r1=900069&r2=900070&view=diff
==============================================================================
--- tuscany/sca-cpp/trunk/configure.ac (original)
+++ tuscany/sca-cpp/trunk/configure.ac Sun Jan 17 09:02:19 2010
@@ -85,20 +85,20 @@
 # Configure path to libmozjs includes and lib.
 AC_MSG_CHECKING([for js-include])
 AC_ARG_WITH([js-include], [AC_HELP_STRING([--with-js-include=PATH], [path to installed SpiderMonkey include dir
-             [default=/usr/include/xulrunner-1.9.1.5/unstable]])], [
+             [default=/usr/include/xulrunner-1.9.1.7/unstable]])], [
   JS_INCLUDE="${withval}"
   AC_MSG_RESULT("${withval}")
 ], [
-  JS_INCLUDE="/usr/include/xulrunner-1.9.1.5/unstable"
-  AC_MSG_RESULT(/usr/include/xulrunner-1.9.1.5/unstable)
+  JS_INCLUDE="/usr/include/xulrunner-1.9.1.7/unstable"
+  AC_MSG_RESULT(/usr/include/xulrunner-1.9.1.7/unstable)
 ])
 AC_MSG_CHECKING([for js-lib])
-AC_ARG_WITH([js-lib], [AC_HELP_STRING([--with-js-lib=PATH], [path to installed SpiderMonkey lib dir [default=/usr/lib/xulrunner-1.9.1.5]])], [
+AC_ARG_WITH([js-lib], [AC_HELP_STRING([--with-js-lib=PATH], [path to installed SpiderMonkey lib dir [default=/usr/lib/xulrunner-1.9.1.7]])], [
   JS_LIB="${withval}"
   AC_MSG_RESULT("${withval}")
 ], [
-  JS_LIB="/usr/lib/xulrunner-1.9.1.5"
-  AC_MSG_RESULT(/usr/lib/xulrunner-1.9.1.5)
+  JS_LIB="/usr/lib/xulrunner-1.9.1.7"
+  AC_MSG_RESULT(/usr/lib/xulrunner-1.9.1.7)
 ])
 AC_SUBST(JS_INCLUDE)
 AC_SUBST(JS_LIB)