mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-18 22:40:33 +01:00
Patch from Tom Parker * Add autoip/Link Local Addressing support when we fail to get a DHCP address * Longer pause after setting ESSID on cards that support a larger number of channels to give the card time to find the right channel * Add system hook to restart mDNSResponder (or whatever the local implementation of Multicast DNS is) when we activate interfaces git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@341 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
26 lines
437 B
Makefile
26 lines
437 B
Makefile
INCLUDES = -I${top_srcdir} -I${top_srcdir}/src
|
|
|
|
AM_CPPFLAGS = \
|
|
$(NM_CFLAGS) \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DDATADIR=\"$(datadir)\" \
|
|
-DARP_DEBUG \
|
|
-DDEBUG
|
|
|
|
noinst_LIBRARIES = libdhcpc.a
|
|
|
|
libdhcpc_a_SOURCES= \
|
|
buildmsg.c \
|
|
buildmsg.h \
|
|
arp.c \
|
|
arp.h \
|
|
client.c \
|
|
client.h \
|
|
dhcpcd.c \
|
|
dhcpcd.h \
|
|
udpipgen.c \
|
|
udpipgen.h
|
|
|
|
bin_PROGRAMS = dhcp_test
|
|
dhcp_test_SOURCES = dhcp_test.c
|
|
dhcp_test_LDADD = libdhcpc.a
|