diff options
author | Hanketsu <hanketsu@egregore.fun> | 2024-11-23 06:09:16 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-06-13 00:04:42 +0200 |
commit | 4d82d5bdf46a661aadaa5d64ded1a5286dfb971f (patch) | |
tree | 6ae04ace3c41e91b3bb291519a42cf7d4a2829a0 | |
parent | 3df4ccf1830d553763e22965e81ef950a130c3c2 (diff) |
battering: palemoon: Enable accessibility unconditionally.
* battering/packages/palemoon.scm (make-uxp-browser): Enable accessbility flag
unconditionally.
Clean up some comments.
-rw-r--r-- | battering/packages/palemoon.scm | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/battering/packages/palemoon.scm b/battering/packages/palemoon.scm index d0a1f48..6ca9faf 100644 --- a/battering/packages/palemoon.scm +++ b/battering/packages/palemoon.scm @@ -112,6 +112,7 @@ gtk-version))) (list #:tests? #f #:configure-flags #~'(#$(string-append "--enable-application=" name) + "--enable-accessibility" "--enable-appcompat-guid" "--enable-av1" #$(string-append "--enable-default-toolkit=cairo-" gtk-version) @@ -125,11 +126,13 @@ "--enable-official-branding" ;; Official branding. #$(string-append "--with-branding=" branding-dir) "--enable-optimize=\"-O2 -w\"" + #$(format #f "--enable-optimize=~s" "-O2 -w") "--enable-strip" "--enable-webrtc" "--enable-system-ffi" "--enable-system-cairo" "--enable-system-pixman" + ;; UNBUNDLE: "--enable-system-hunspell" "--enable-system-extension-dirs" "--disable-debug" "--disable-debug-js-modules" @@ -142,23 +145,7 @@ "--with-system-bz2" "--with-system-jpeg" "--with-system-zlib" - "--with-x" - ;; Avoid bundled libraries. - ;; UNBUNDLE-ME! "--system-sqlite" - ;; UNBUNDLE-ME! "--with-system-graphite2" - ;; UNBUNDLE-ME! "--with-system-harfbuzz" - ;; UNBUNDLE-ME! "--with-system-icu" - ;; UNBUNDLE-ME! "--with-system-libevent" - ;; UNBUNDLE-ME! "--with-system-libvpx" - ;; UNBUNDLE-ME! "--with-system-nspr" - ;; UNBUNDLE-ME! "--with-system-nss" - ;; UNBUNDLE-ME! "--with-system-ogg" - ;; UNBUNDLE-ME! "--with-system-png" - ;; UNBUNDLE-ME! "--with-system-theora" - ;; UNBUNDLE-ME! "--with-system-vorbis" - #$(if with-gtk3? ;; TODO: find a way to link atk_bridge_adaptor_init - "--disable-accessibility" - "--enable-accessibility")) + "--with-x") #:modules '((guix build utils) (guix build gnu-build-system) (ice-9 regex)) |