mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-06-08 19:48:19 +02:00
The DHCP helper uses a private socket when building with dbus-glib >= 0.100, which means we don't need to install a D-Bus permissions file.
19 lines
413 B
Makefile
19 lines
413 B
Makefile
libexec_PROGRAMS = nm-dhcp-helper
|
|
|
|
nm_dhcp_helper_SOURCES = nm-dhcp-helper.c
|
|
|
|
nm_dhcp_helper_CPPFLAGS = $(DBUS_CFLAGS) -DNMRUNDIR=\"$(nmrundir)\"
|
|
|
|
nm_dhcp_helper_LDADD = $(DBUS_LIBS)
|
|
|
|
|
|
# FIXME: remove when dbus-glib >= 0.100 is required
|
|
dhcp_helper_conf = nm-dhcp-helper.conf
|
|
|
|
if !HAVE_DBUS_GLIB_100
|
|
dbusservicedir = $(DBUS_SYS_DIR)
|
|
dbusservice_DATA = $(dhcp_helper_conf)
|
|
endif
|
|
|
|
EXTRA_DIST = $(dhcp_helper_conf)
|
|
|