Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
port OSX to xulrunner 6.0.2. only change required was the way we popu…
Browse files Browse the repository at this point in the history
…late browserCodePath in app-paths.js, suspected due to different evaluation order under xulrunner 6
  • Loading branch information
lloyd committed Sep 12, 2011
1 parent cabc4cb commit 707a16a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions impl/appifier/resources/application.ini.template
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Copyright=
ID=${developer_email} ID=${developer_email}


[Gecko] [Gecko]
MinVersion=2.0 MinVersion=6.0.2
MaxVersion=2.0 MaxVersion=6.0.2


[XRE] [XRE]
EnableExtensionManager=true EnableExtensionManager=true
6 changes: 3 additions & 3 deletions impl/mozfetcher/_config.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
}, },
# for both 32 and 64 bit darwin we'll use 32 bit binaries # for both 32 and 64 bit darwin we'll use 32 bit binaries
( "Darwin_64bit", "Darwin_32bit" ): { ( "Darwin_64bit", "Darwin_32bit" ): {
"url": "http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/2.0/sdk/xulrunner-2.0.en-US.mac-i386.sdk.tar.bz2", "url": "http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/6.0.2/sdk/xulrunner-6.0.2.en-US.mac-i386.sdk.tar.bz2",
"md5": "cf56e216a05feed16cb290110fd89802", "md5": "a645c56fb9f3dacc8e7f96166bfb288d",
"bin": { "bin": {
"path": "xulrunner-sdk/bin/xulrunner-bin", "path": "xulrunner-sdk/bin/xulrunner-bin",
"sig": "ec043427ca789950bf388db3cf88c7cf" "sig": "fa285003839fd8e128b9a2171ca89757"
} }
}, },
( "Windows_32bit", "Windows_64bit" ): { ( "Windows_32bit", "Windows_64bit" ): {
Expand Down
2 changes: 1 addition & 1 deletion modules/lib/app-paths.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ exports.profileDir = dirsvc.get("ProfD", Ci.nsIFile).path;
* This path should be expected to be read-only. * This path should be expected to be read-only.
* @type string * @type string
*/ */
exports.browserCodeDir = path.join(dirsvc.get("resource:app", Ci.nsIFile).path, "browser_code"); exports.browserCodeDir = path.join(dirsvc.get("DefRt", Ci.nsIFile).parent.path, "browser_code");


/** /**
* @property startMenuDir * @property startMenuDir
Expand Down

0 comments on commit 707a16a

Please sign in to comment.