diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-02-27 11:38:16 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-02-27 11:43:44 +0000 |
commit | a72328cf1812eef1fa313cc095826414b5b59939 (patch) | |
tree | d452fa0e65fe45ca1c06082cb4d7896bbabc4395 /community/firefox-esr | |
parent | 0d40326b80ef9111e6edaf82ef9b1dab9fbaa291 (diff) | |
download | aports-a72328cf1812eef1fa313cc095826414b5b59939.tar.bz2 aports-a72328cf1812eef1fa313cc095826414b5b59939.tar.xz |
community/firefox-esr: build with bundled libvpx due to 1.8.0
libvpx update to 1.8.0 broke firefox-esr
upstream bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1525393
Diffstat (limited to 'community/firefox-esr')
-rw-r--r-- | community/firefox-esr/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/firefox-esr/APKBUILD b/community/firefox-esr/APKBUILD index 3e762164ed..b75e896b73 100644 --- a/community/firefox-esr/APKBUILD +++ b/community/firefox-esr/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=firefox-esr pkgver=60.5.0 -pkgrel=1 +pkgrel=2 pkgdesc="Firefox web browser - Extended Support Release" url="https://www.mozilla.org/en-US/firefox/organizations/" # limited by rust and cargo @@ -31,7 +31,6 @@ makedepends=" libtheora-dev libtool libvorbis-dev - libvpx-dev libxt-dev libxcomposite-dev llvm5-dev @@ -147,7 +146,6 @@ build() { --with-system-icu \ --with-system-jpeg \ --with-system-libevent \ - --with-system-libvpx \ --with-system-nspr \ --with-system-nss \ --with-system-pixman \ @@ -155,6 +153,8 @@ build() { --with-system-zlib \ --with-clang-path=/usr/bin/clang \ --with-libclang-path=/usr/lib + # FIXME: fix build with --with-system-libvpx and libvpx 1.8.0 + # https://bugzilla.mozilla.org/show_bug.cgi?id=1525393 make # paxmark outside fakeroot |