gnu: harfbuzz: Support build for the Hurd.
* gnu/packages/gtk.scm (harfbuzz)[native-inputs]: Do not include gobject-introspection when building for the Hurd.
parent
03f35ff390
commit
dd3f9a7a49
|
@ -276,11 +276,13 @@ output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB.")
|
||||||
;; There are all in the Requires or Requires.private field of '.pc'.
|
;; There are all in the Requires or Requires.private field of '.pc'.
|
||||||
(list glib graphite2 icu4c))
|
(list glib graphite2 icu4c))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list `(,glib "bin") ;for glib-mkenums
|
(append (list `(,glib "bin")) ;for glib-mkenums
|
||||||
gobject-introspection
|
(if (target-hurd?)
|
||||||
pkg-config
|
'()
|
||||||
python-wrapper
|
(list gobject-introspection))
|
||||||
which))
|
(list pkg-config
|
||||||
|
python-wrapper
|
||||||
|
which)))
|
||||||
(arguments
|
(arguments
|
||||||
(list #:configure-flags
|
(list #:configure-flags
|
||||||
#~(list "--with-graphite2"
|
#~(list "--with-graphite2"
|
||||||
|
|
Reference in New Issue