gnu: glib: Disable SELinux support.
It was added mainly because the build system previously could not cope with SELinux being missing. * gnu/packages/glib.scm (glib)[propagated-inputs]: Remove LIBSELINUX. [arguments]: Add #:configure-flags.
This commit is contained in:
parent
bca05d0709
commit
77577c03aa
1 changed files with 1 additions and 2 deletions
|
|
@ -60,7 +60,6 @@
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
#:use-module (gnu packages selinux)
|
|
||||||
#:use-module (gnu packages web)
|
#:use-module (gnu packages web)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (gnu packages xorg)
|
#:use-module (gnu packages xorg)
|
||||||
|
|
@ -198,7 +197,6 @@ shared NFS home directories.")
|
||||||
("libffi" ,libffi) ; in the Requires.private field of gobject-2.0.pc
|
("libffi" ,libffi) ; in the Requires.private field of gobject-2.0.pc
|
||||||
;; These are in the Requires.private field of gio-2.0.pc
|
;; These are in the Requires.private field of gio-2.0.pc
|
||||||
("util-linux" ,util-linux "lib") ;for libmount
|
("util-linux" ,util-linux "lib") ;for libmount
|
||||||
("libselinux" ,libselinux)
|
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gettext" ,gettext-minimal)
|
`(("gettext" ,gettext-minimal)
|
||||||
|
|
@ -210,6 +208,7 @@ shared NFS home directories.")
|
||||||
("tzdata" ,tzdata-for-tests))) ; for tests/gdatetime.c
|
("tzdata" ,tzdata-for-tests))) ; for tests/gdatetime.c
|
||||||
(arguments
|
(arguments
|
||||||
`(#:disallowed-references (,tzdata-for-tests)
|
`(#:disallowed-references (,tzdata-for-tests)
|
||||||
|
#:configure-flags '("-Dselinux=disabled")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-dbus-launch-path
|
(add-after 'unpack 'patch-dbus-launch-path
|
||||||
|
|
|
||||||
Reference in a new issue