diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-07-08 09:57:38 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-07-08 09:57:38 +0800 |
| commit | 127ae105058b335326a23ff4f34ff0c41af7df32 (patch) | |
| tree | 2f3bb8e42b61ea6cae58e02b955f93ffca2a3691 /repos | |
| parent | 4d086db088dc4ae584da880852e8548c5fce7482 (diff) | |
| download | alicelinux-127ae105058b335326a23ff4f34ff0c41af7df32.tar.gz alicelinux-127ae105058b335326a23ff4f34ff0c41af7df32.zip | |
firefox: updated to 127.0.2
Diffstat (limited to 'repos')
| -rw-r--r-- | repos/extra/firefox/.files | 1 | ||||
| -rw-r--r-- | repos/extra/firefox/abuild | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/repos/extra/firefox/.files b/repos/extra/firefox/.files index 3ff83380..d5a92868 100644 --- a/repos/extra/firefox/.files +++ b/repos/extra/firefox/.files @@ -40,6 +40,7 @@ drwxr-xr-x root/root usr/lib/firefox/gmp-clearkey/0.1/ -rwxr-xr-x root/root usr/lib/firefox/libmozgtk.so -rwxr-xr-x root/root usr/lib/firefox/libmozsandbox.so -rwxr-xr-x root/root usr/lib/firefox/libmozsqlite3.so +-rwxr-xr-x root/root usr/lib/firefox/libmozwayland.so -rwxr-xr-x root/root usr/lib/firefox/libxul.so -rw-r--r-- root/root usr/lib/firefox/omni.ja -rwxr-xr-x root/root usr/lib/firefox/pingsender diff --git a/repos/extra/firefox/abuild b/repos/extra/firefox/abuild index b0b0c5b1..0706e0f8 100644 --- a/repos/extra/firefox/abuild +++ b/repos/extra/firefox/abuild @@ -1,5 +1,5 @@ name=firefox -version=127.0.1 +version=127.0.2 release=1 source="https://ftp.mozilla.org/pub/${name}/releases/${version}/source/${name}-${version}.source.tar.xz fix-target-detection.patch" @@ -47,9 +47,9 @@ ac_add_options --disable-parental-controls ac_add_options --disable-system-extension-dirs EOF - if [ -f $SPM_PKGDB/libx11 ]; then + if [ -f $SPM_PKGDB/libx11 ] && [ ! -f $SPM_PKGDB/wayland ]; then echo "ac_add_options --enable-default-toolkit=cairo-gtk3-x11-only" >> .mozconfig - elif [ -f $SPM_PKGDB/wayland ]; then + elif [ -f $SPM_PKGDB/wayland ] && [ ! -f $SPM_PKGDB/libx11 ]; then echo "ac_add_options --enable-default-toolkit=cairo-gtk3-wayland-only" >> .mozconfig fi |