diff options
Diffstat (limited to 'extra/qtwebkit/PKGBUILD')
-rw-r--r-- | extra/qtwebkit/PKGBUILD | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/extra/qtwebkit/PKGBUILD b/extra/qtwebkit/PKGBUILD index 62154e81a..069e436a0 100644 --- a/extra/qtwebkit/PKGBUILD +++ b/extra/qtwebkit/PKGBUILD @@ -4,7 +4,7 @@ pkgname=qtwebkit pkgver=2.3.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://trac.webkit.org/wiki/QtWebKit' pkgdesc='An open source web browser engine (Qt port)' license=('LGPL2.1' 'GPL3') @@ -16,12 +16,14 @@ source=("ftp://ftp.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}. "http://download.qt-project.org/official_releases/qt/4.8/4.8.5/qt-everywhere-opensource-src-${_qtver}.tar.gz" 'use-python2.patch' 'bison3.patch' - 'qwebview.patch') + 'qwebview.patch' + 'LLIntCLoop32BigEndian.patch') sha1sums=('64f3ab7f8e53b5b971a3a6577fc61db0cc2ea31f' '745f9ebf091696c0d5403ce691dc28c039d77b9e' '315b6ff603f35e5492a036f7082f6aa075dfb607' 'd2c6182512e4bcbdf30a9e9d513c52fe4b16d9f2' - '88ed73e6bd7ea9c6d227ceaed0ff2f1cf0200667') + '88ed73e6bd7ea9c6d227ceaed0ff2f1cf0200667' + 'af830ae24e2ae5113754c9ae524d27ec0a28a9d6') prepare() { cd ${pkgname}-${pkgver} @@ -30,11 +32,23 @@ prepare() { cd ../qt-everywhere-opensource-src-${_qtver} patch -p1 -i "${srcdir}"/qwebview.patch + + if [ "$CARCH" = "mips64el" ]; then + # Fix MIPS N32 support. + sed -i 's/defined(_ABIO32)/(defined(_ABIO32) || defined(_ABIN32))/' \ + Source/WTF/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/WTF/wtf/Platform.h + fi } build() { cd ${pkgname}-${pkgver} + # Fix https://bugs.webkit.org/show_bug.cgi?id=103128, original patch with ChangeLog stripped. + patch -p0 -i "${srcdir}/LLIntCLoop32BigEndian.patch" + OPTS="--no-webkit2" if [ "${CARCH}" = "i686" ]; then # FS#33418 |