summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordominique.leuenberger@gmail.com <dominique.leuenberger@gmail.com@c587cffe-e639-0410-9787-d7902ae8ed56>2011-03-07 18:24:33 +0000
committerdominique.leuenberger@gmail.com <dominique.leuenberger@gmail.com@c587cffe-e639-0410-9787-d7902ae8ed56>2011-03-07 18:24:33 +0000
commitc1decf1bd7bbf49ad674873359b8e2a37831fe45 (patch)
treec10a337e79658a7e6ed207357e05c1cd2bf3a641
parent1c98687442ea92e325660bef4e4d3262d75434a7 (diff)
downloadlibproxy-c1decf1bd7bbf49ad674873359b8e2a37831fe45.tar.gz
eorder the JS search order:
1) mozilla-js => Gecko 1.9 / 2.0 2) xulrunner-js => Gecko 1.8 3) firefox-js => (no reference where and when that was used, sorry) 4) seamonkey-js => is not really used upstream, but seems some dists named it like that. Keeping at last position, as it was before. (This order is equal to what gjs uses) git-svn-id: http://libproxy.googlecode.com/svn/trunk@788 c587cffe-e639-0410-9787-d7902ae8ed56
-rw-r--r--libproxy/cmake/modules/pacrunner_mozjs.cmk2
1 files changed, 1 insertions, 1 deletions
diff --git a/libproxy/cmake/modules/pacrunner_mozjs.cmk b/libproxy/cmake/modules/pacrunner_mozjs.cmk
index 7a73873..5e5dc48 100644
--- a/libproxy/cmake/modules/pacrunner_mozjs.cmk
+++ b/libproxy/cmake/modules/pacrunner_mozjs.cmk
@@ -7,7 +7,7 @@ if(WIN32)
include_directories("${MOZJS_INCLUDE_DIR}")
endif()
elseif(NOT APPLE)
- set(MOZJS_SEARCH_ORDER "xulrunner-js;firefox-js;mozilla-js;seamonkey-js" CACHE STRING "MozJS search order")
+ set(MOZJS_SEARCH_ORDER "mozilla-js;xulrunner-js;firefox-js;seamonkey-js" CACHE STRING "MozJS search order")
option(WITH_MOZJS "Search for MOZJS package" ON)
if (WITH_MOZJS)
foreach(MOZJSLIB ${MOZJS_SEARCH_ORDER})