mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: qtwebengine: Fix build failure.
* gnu/packages/qt.scm (qtwebengine)[source](snippet): Preserve the included Mesa headers, to avoid an incompatibility with system Mesa. Also adjust some files to use system Vulkan headers. Preserve third_party/emoji-segmenter. [inputs]: Remove obsolete comment (LCMS is already in inputs).
This commit is contained in:
parent
cb475eaa71
commit
c37b621cf3
1 changed files with 8 additions and 2 deletions
|
@ -1595,6 +1595,7 @@ (define-public qtwebengine
|
|||
"third_party/crc32c"
|
||||
"third_party/dav1d"
|
||||
"third_party/dawn"
|
||||
"third_party/emoji-segmenter"
|
||||
"third_party/ffmpeg"
|
||||
"third_party/googletest"
|
||||
"third_party/hunspell"
|
||||
|
@ -1621,6 +1622,7 @@ (define-public qtwebengine
|
|||
"third_party/libyuv"
|
||||
"third_party/lss"
|
||||
"third_party/markupsafe"
|
||||
"third_party/mesa_headers"
|
||||
"third_party/metrics_proto"
|
||||
"third_party/modp_b64"
|
||||
"third_party/nasm"
|
||||
|
@ -1737,6 +1739,12 @@ (define (delete-unwanted-files child stat flag base level)
|
|||
(substitute*
|
||||
"third_party/breakpad/breakpad/src/common/linux/libcurl_wrapper.h"
|
||||
(("third_party/curl") "curl"))
|
||||
(substitute*
|
||||
'("components/viz/common/gpu/vulkan_context_provider.h"
|
||||
"components/viz/common/resources/resource_format_utils.h"
|
||||
"gpu/config/gpu_util.cc")
|
||||
(("third_party/vulkan/include/")
|
||||
""))
|
||||
|
||||
;; Replace Google Analytics bundle with an empty file and hope
|
||||
;; no one notices.
|
||||
|
@ -1777,8 +1785,6 @@ (define (delete-unwanted-files child stat flag base level)
|
|||
("libgcrypt" ,libgcrypt)
|
||||
("libjpeg" ,libjpeg-turbo)
|
||||
("libvpx" ,libvpx)
|
||||
;; FIXME: configure does not find system lcms
|
||||
;; ("lcms" ,lcms)
|
||||
("libwebp" ,libwebp)
|
||||
("libx11" ,libx11)
|
||||
("libxcb" ,libxcb)
|
||||
|
|
Loading…
Reference in a new issue