diff options
-rw-r--r-- | PKGBUILD | 12 | ||||
-rw-r--r-- | mozconfig.in | 4 |
2 files changed, 10 insertions, 6 deletions
@@ -10,7 +10,7 @@ pkgname=palemoon _pmaltname=pale-moon -pkgver=29.4.1 +pkgver=29.4.2 pkgrel=1 pkgdesc="Open source web browser based on Firefox focusing on efficiency." arch=(x86_64 i686) @@ -31,8 +31,8 @@ optdepends=('ffmpeg: various video and audio support' source=($pkgname-$pkgver.tar.xz::http://archive.palemoon.org/source/${pkgname}-${pkgver}-source.tar.xz mozconfig.in system-libs.patch) -b2sums=('ec6983e127f56626dc3b61e7dde0cbc8cb62bc2ee96fb39fdd5a2cbaf56e487e1339ff9306bc83f876f31b43f6ad831b9a107eef8c6768fd988a0af660e86846' - '1f00d86b6c1cfad0636213e5a5b67f6749a46a8885f61ecd30c9f9b63397ee8fb36f27e9199623466fcae7e0a4112438862796f27cde07a06e3403f2f1bb474f' +b2sums=('aae6bbeb445e119a18a24d46d928bc7735fa785a836c001805fa65a16ee40d32a02bf5106c30169266e16cf179e67030ccc26401681d55061c4522ead9c60d8b' + 'e8b63df4274a8063ae3c9e81d23a43e8e8a91515213243909ad79f250f7fd376db4444269d7a5a42242a77f2dd17f386679163f955c2fed9898d77a94f18a13c' '47cc9da19cb7003ea896e8d1f3f77197548cf917c943ec1bd8526daaf6212d2c2c90bc417df156ee571c9ca052749a6a3a13f8acc150f1983a8bf0f8f1ebe2de') validpgpkeys=('3059E09144F56804F0FBF4E126B40624BDBFD9F3') @@ -48,12 +48,12 @@ build() { # palemoon is prone to OOM, use 1 thread per 2GB ram #export MOZ_MAKE_FLAGS="${MAKEFLAGS}" - export MOZ_MAKE_FLAGS="-j16" + export MOZ_MAKE_FLAGS="-j32" export MOZBUILD_STATE_PATH="${srcdir}/mozbuild" export MOZCONFIG="${srcdir}/mozconfig" - export CFLAGS="$CFLAGS -O3 -fstack-protector-all -flto=16 -fPIC" - export CXXFLAGS="$CXXFLAGS -O3 -fstack-protector-all -flto=16 -fPIC" + export CFLAGS="$CFLAGS -O3 -fstack-protector-all -flto=auto -fPIC" + export CXXFLAGS="$CXXFLAGS -O3 -fstack-protector-all -flto=auto -fPIC" ./mach build } diff --git a/mozconfig.in b/mozconfig.in index d218d83..e787dac 100644 --- a/mozconfig.in +++ b/mozconfig.in @@ -52,17 +52,20 @@ ac_add_options --enable-raw ac_add_options --enable-jemalloc # Disables +# # palemoon does not support accessibility anyway. This is just making sure. ac_add_options --disable-accessibility ac_add_options --disable-crashreporter ac_add_options --disable-dbus ac_add_options --disable-debug ac_add_options --disable-debug-symbols +# # palemoon does not support eme anyway. This is just making sure. ac_add_options --disable-eme ac_add_options --disable-gamepad ac_add_options --disable-gconf ac_add_options --disable-gio ac_add_options --disable-mozril-geoloc ac_add_options --disable-necko-wifi +# # palemoon does not support parental conrtols anyway. This is just making sure. ac_add_options --disable-parental-controls # # precompiled-startupcache must be disabled to optimize for a newer # # instruction set target @@ -71,6 +74,7 @@ ac_add_options --disable-sync ac_add_options --disable-synth-speechd ac_add_options --disable-tests ac_add_options --disable-updater +# # palemoon does not support webtrc anyway. This is just making sure. ac_add_options --disable-webrtc ac_add_options --disable-webspeech # # --disable-webspeechtestbackend support removed |