summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extra/libwebkit/PKGBUILD5
1 files changed, 4 insertions, 1 deletions
diff --git a/extra/libwebkit/PKGBUILD b/extra/libwebkit/PKGBUILD
index d218cdab2..7c05826eb 100644
--- a/extra/libwebkit/PKGBUILD
+++ b/extra/libwebkit/PKGBUILD
@@ -4,7 +4,7 @@
pkgbase=libwebkit
pkgname=(libwebkit libwebkit3)
pkgver=1.6.3
-pkgrel=1
+pkgrel=1.1
pkgdesc="An opensource web content engine"
arch=('i686' 'x86_64' 'mips64el')
url="http://webkitgtk.org/"
@@ -23,6 +23,9 @@ build() {
# Fix MIPS N32 support.
sed -i 's/defined(_ABIO32)/(defined(_ABIO32) || defined(_ABIN32))/' \
Source/JavaScriptCore/wtf/Platform.h
+ # Don't enable JIT even if configure finds that it's not supported.
+ sed -i 's/#define ENABLE_JIT 1/#define ENABLE_JIT 0/' \
+ Source/JavaScriptCore/wtf/Platform.h
( cd build-gtk2 && _build --with-gtk=2.0 )
( cd build-gtk3 && _build --with-gtk=3.0 )