gnu: icecat: Remove 'use-skia-by-default' phase.

This seems no longer to be needed for stability.

* gnu/packages/gnuzilla.scm (icecat)[arguments]: Remove the
'use-skia-by-default' phase.
master
Mark H Weaver 2018-04-11 17:20:00 -04:00
parent 3c0316169b
commit 1293f6d8a4
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 0 additions and 13 deletions

View File

@ -647,19 +647,6 @@ security standards.")
(utime file early-1980 early-1980))
#t))
#t)))
(add-after
'unpack 'use-skia-by-default
(lambda _
;; Use the bundled Skia library by default, since IceCat appears
;; to be far more stable when using it than when using our system
;; Cairo.
(let ((out (open "browser/app/profile/icecat.js"
(logior O_WRONLY O_APPEND))))
(format out "~%// Use Skia by default~%")
(format out "pref(~s, ~s);~%" "gfx.canvas.azure.backends" "skia")
(format out "pref(~s, ~s);~%" "gfx.content.azure.backends" "skia")
(close-port out))
#t))
(add-after
'unpack 'link-libxul-with-libraries
(lambda _