mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: wpa-supplicant: Remove dependency on DBus.
* gnu/packages/admin.scm (wpa-supplicant): Remove dependency on DBUS.
This commit is contained in:
parent
16eb115ef4
commit
40b4c6d606
1 changed files with 9 additions and 4 deletions
|
@ -689,9 +689,12 @@ (define-public wpa-supplicant
|
||||||
(let ((port (open-file ".config" "al")))
|
(let ((port (open-file ".config" "al")))
|
||||||
(display "
|
(display "
|
||||||
CONFIG_DEBUG_SYSLOG=y
|
CONFIG_DEBUG_SYSLOG=y
|
||||||
CONFIG_CTRL_IFACE_DBUS=y
|
|
||||||
CONFIG_CTRL_IFACE_DBUS_NEW=y
|
# TODO: Add a variant of this package with DBus support.
|
||||||
CONFIG_CTRL_IFACE_DBUS_INTRO=y
|
#CONFIG_CTRL_IFACE_DBUS=y
|
||||||
|
#CONFIG_CTRL_IFACE_DBUS_NEW=y
|
||||||
|
#CONFIG_CTRL_IFACE_DBUS_INTRO=y
|
||||||
|
|
||||||
CONFIG_DRIVER_NL80211=y
|
CONFIG_DRIVER_NL80211=y
|
||||||
CFLAGS += $(shell pkg-config libnl-3.0 --cflags)
|
CFLAGS += $(shell pkg-config libnl-3.0 --cflags)
|
||||||
CONFIG_LIBNL32=y
|
CONFIG_LIBNL32=y
|
||||||
|
@ -708,7 +711,9 @@ (define-public wpa-supplicant
|
||||||
(inputs
|
(inputs
|
||||||
`(("readline" ,readline)
|
`(("readline" ,readline)
|
||||||
("libnl" ,libnl)
|
("libnl" ,libnl)
|
||||||
("dbus" ,dbus)
|
;; TODO: Add a variant with DBus support. This significantly increases
|
||||||
|
;; the size of its closure since DBus depends on libx11.
|
||||||
|
;; ("dbus" ,dbus)
|
||||||
("openssl" ,o:openssl)))
|
("openssl" ,o:openssl)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
|
Loading…
Reference in a new issue