gnu: webkitgtk: Enable WOFF2 support.

* gnu/packages/webkit.scm (webkitgtk):
[arguments]<#:configure-flags>: Remove "-DUSE_WOFF2=OFF".
[inputs]: Add woff2.
This commit is contained in:
Léo Le Bouter 2021-03-14 06:07:10 +01:00
parent 37b5e79154
commit 92d0949a26
No known key found for this signature in database
GPG key ID: 45A8B1E86BCD10A6

View file

@ -256,12 +256,7 @@ (define-public webkitgtk
;; included. More investigation is needed. For
;; now, we explicitly disable it to prevent an error
;; at configuration time.
"-DUSE_GSTREAMER_GL=OFF"
;; XXX Disable WOFF2 web fonts. These were never
;; supported in our previous builds. Enabling them
;; requires building libwoff2 and possibly woff2dec.
"-DUSE_WOFF2=OFF")
"-DUSE_GSTREAMER_GL=OFF")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'configure-bubblewrap-store-directory
@ -338,6 +333,7 @@ (define-public webkitgtk
("mesa" ,mesa)
("openjpeg" ,openjpeg)
("sqlite" ,sqlite)
("woff2" ,woff2)
("wpebackend-fdo" ,wpebackend-fdo)
("xdg-dbus-proxy" ,xdg-dbus-proxy)))
(home-page "https://www.webkitgtk.org/")