diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2021-09-08 10:52:04 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2021-09-08 12:06:41 +0200 |
commit | 359740b0b3eff4f5c0e6973a56ebed2c5fcbaa73 (patch) | |
tree | 98cf304403e814d6ab9676e14153db01c0236ddd /gnu | |
parent | 3ed18c05e930ae0d4c3a72b588b3e24f805c7aef (diff) | |
download | guix-359740b0b3eff4f5c0e6973a56ebed2c5fcbaa73.tar guix-359740b0b3eff4f5c0e6973a56ebed2c5fcbaa73.tar.gz |
gnu: qtwebengine: Build with bundled icu4c.
Building with icu4c >= 68 fails.
* gnu/packages/qt.scm (qtwebengine)[arguments]: Comment out
"--webengine-icu=system" option in 'configure' phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/qt.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 05037b034e..1f05ab5db1 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -1939,7 +1939,9 @@ using the Enchant spell-checking library.") (invoke "qmake" "QT_BUILD_PARTS = libs tools" "--" "--webengine-printing-and-pdf=no" "--webengine-ffmpeg=system" - "--webengine-icu=system" + ;; FIXME: Building qtwebengine 5.12.2 with + ;; icu4c >= 68 fails. + ;;"--webengine-icu=system" "--webengine-pepper-plugins=no" "-webengine-proprietary-codecs"))))) ;; Tests are disabled due to "Could not find QtWebEngineProcess error" |