diff options
author | 2010-07-21 13:18:52 +0000 | |
---|---|---|
committer | 2010-07-21 13:18:52 +0000 | |
commit | 73e41555d207543c501be4b240475e4936c43716 (patch) | |
tree | 481309ea1d4019741f8dd5fe1be628f6df63399d /net-libs/xulrunner/files | |
parent | Version bump for small bug fixes, bug 328663 (diff) | |
download | historical-73e41555d207543c501be4b240475e4936c43716.tar.gz historical-73e41555d207543c501be4b240475e4936c43716.tar.bz2 historical-73e41555d207543c501be4b240475e4936c43716.zip |
Enable tracemonkey on amd64 (bug #315997)
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'net-libs/xulrunner/files')
-rw-r--r-- | net-libs/xulrunner/files/801-enable-x86_64-tracemonkey.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net-libs/xulrunner/files/801-enable-x86_64-tracemonkey.patch b/net-libs/xulrunner/files/801-enable-x86_64-tracemonkey.patch new file mode 100644 index 000000000000..b72ad76b450e --- /dev/null +++ b/net-libs/xulrunner/files/801-enable-x86_64-tracemonkey.patch @@ -0,0 +1,25 @@ +--- js/src/configure.in.old 2009-11-08 19:50:54.299642792 -0500 ++++ js/src/configure.in 2009-11-08 19:57:49.235621814 -0500 +@@ -2465,6 +2465,10 @@ + ENABLE_JIT=1 + NANOJIT_ARCH=i386 + ;; ++x86_64*-*) ++ ENABLE_JIT=1 ++ NANOJIT_ARCH=X64 ++ ;; + arm*-*) + ENABLE_JIT=1 + NANOJIT_ARCH=ARM +@@ -2488,7 +2492,10 @@ + i?86-*) + AC_DEFINE(AVMPLUS_IA32) + ;; +- ++x86_64*-*) ++ AC_DEFINE(AVMPLUS_AMD64) ++ AC_DEFINE(AVMPLUS_64BIT) ++ ;; + arm*-*) + AC_DEFINE(AVMPLUS_ARM) + ;; |