mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-31 11:20:12 +01:00
* initscript/NetworkManager - Use NMLaunchHelper rather than sleeping * initscript/NMLaunchHelper.c Makefile.am - Add helper program that exits only when NM activates a device, or 10 seconds have passed, whichever happens first. This stops the boot processes until we have a network connection, which NM can't do because it daemonizes and brings the connection up in the background. Allows stuff like NFS to not die. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@59 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
18 lines
379 B
Makefile
18 lines
379 B
Makefile
INCLUDES = \
|
|
$(NM_CFLAGS) \
|
|
-Wall \
|
|
-DDBUS_API_SUBJECT_TO_CHANGE \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DBINDIR=\"$(bindir)\" \
|
|
-DDATADIR=\"$(datadir)\"
|
|
|
|
bin_PROGRAMS = NMLaunchHelper
|
|
|
|
NMLaunchHelper_SOURCES = NMLaunchHelper.c
|
|
|
|
NMLaunchHelper_LDADD = $(NM_LIBS)
|
|
|
|
EXTRA_DIST = NetworkManager
|
|
|
|
initddir = $(sysconfdir)/rc.d/init.d
|
|
initd_SCRIPTS = NetworkManager
|