diff options
author | dominique.leuenberger@gmail.com <dominique.leuenberger@gmail.com@c587cffe-e639-0410-9787-d7902ae8ed56> | 2011-03-07 18:24:33 +0000 |
---|---|---|
committer | dominique.leuenberger@gmail.com <dominique.leuenberger@gmail.com@c587cffe-e639-0410-9787-d7902ae8ed56> | 2011-03-07 18:24:33 +0000 |
commit | c1decf1bd7bbf49ad674873359b8e2a37831fe45 (patch) | |
tree | c10a337e79658a7e6ed207357e05c1cd2bf3a641 /libproxy/cmake | |
parent | 1c98687442ea92e325660bef4e4d3262d75434a7 (diff) | |
download | libproxy-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
Diffstat (limited to 'libproxy/cmake')
-rw-r--r-- | libproxy/cmake/modules/pacrunner_mozjs.cmk | 2 |
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}) |