gnu: mesa-utils: Fix build.
* gnu/packages/gl.scm (mesa-utils)[arguments]: Pass "--disable-egl" as #:configure-flags.master
parent
7f48be419d
commit
9fa8f43669
|
@ -327,7 +327,12 @@ emulation to complete hardware acceleration for modern GPUs.")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(;; XXX: fails to build against latest mesa:
|
||||||
|
;; eglut.c: error: 'EGL_SCREEN_BIT_MESA' undeclared
|
||||||
|
;;
|
||||||
|
;; <https://bugs.freedesktop.org/show_bug.cgi?id=91643>
|
||||||
|
#:configure-flags '("--disable-egl")
|
||||||
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace
|
(replace
|
||||||
'install
|
'install
|
||||||
|
|
Reference in New Issue