mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-15 13:50:36 +01:00
Since openSUSE 11.1 NetworkManager does not support reading yast network setup. It's for your own good - you either want to use static configuration (yast) or dynamic (NetworkManager). Mixing the two has never worked very well and has caused a lot of confusion. The only exception to this is hostname handling, which is handled by ifcfg-suse plugin.
26 lines
674 B
Makefile
26 lines
674 B
Makefile
|
|
pkglib_LTLIBRARIES = libnm-settings-plugin-ifcfg-suse.la
|
|
|
|
libnm_settings_plugin_ifcfg_suse_la_SOURCES = \
|
|
plugin.c \
|
|
plugin.h
|
|
|
|
libnm_settings_plugin_ifcfg_suse_la_CPPFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(GMODULE_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-I${top_srcdir}/src/system-settings \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/libnm-util \
|
|
-I$(top_srcdir)/libnm-glib \
|
|
-DSYSCONFDIR=\"$(sysconfdir)\"
|
|
|
|
libnm_settings_plugin_ifcfg_suse_la_LDFLAGS = -module -avoid-version
|
|
libnm_settings_plugin_ifcfg_suse_la_LIBADD = \
|
|
$(top_builddir)/libnm-util/libnm-util.la \
|
|
$(top_builddir)/libnm-glib/libnm-glib.la \
|
|
$(GLIB_LIBS) \
|
|
$(GMODULE_LIBS) \
|
|
$(GIO_LIBS)
|
|
|