mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 23:30:07 +01:00
settings: move agent code into settings directory
Since that's where it's used, and it doesn't need to be exposed to any other code.
This commit is contained in:
parent
5a7cf39a62
commit
3a97939525
6 changed files with 12 additions and 12 deletions
|
|
@ -175,11 +175,7 @@ NetworkManager_SOURCES = \
|
|||
nm-dhcp6-config.h \
|
||||
nm-rfkill.h \
|
||||
nm-session-monitor.c \
|
||||
nm-session-monitor.h \
|
||||
nm-agent-manager.c \
|
||||
nm-agent-manager.h \
|
||||
nm-secret-agent.c \
|
||||
nm-secret-agent.h
|
||||
nm-session-monitor.h
|
||||
|
||||
nm-access-point-glue.h: $(top_srcdir)/introspection/nm-access-point.xml
|
||||
$(AM_V_GEN) dbus-binding-tool --prefix=nm_access_point --mode=glib-server --output=$@ $<
|
||||
|
|
@ -223,9 +219,6 @@ nm-device-cdma-glue.h: $(top_srcdir)/introspection/nm-device-cdma.xml
|
|||
nm-device-gsm-glue.h: $(top_srcdir)/introspection/nm-device-gsm.xml
|
||||
$(AM_V_GEN) dbus-binding-tool --prefix=nm_device_gsm --mode=glib-server --output=$@ $<
|
||||
|
||||
nm-agent-manager-glue.h: $(top_srcdir)/introspection/nm-agent-manager.xml
|
||||
$(AM_V_GEN) dbus-binding-tool --prefix=nm_agent_manager --mode=glib-server --output=$@ $<
|
||||
|
||||
BUILT_SOURCES = \
|
||||
nm-access-point-glue.h \
|
||||
nm-manager-glue.h \
|
||||
|
|
@ -240,8 +233,7 @@ BUILT_SOURCES = \
|
|||
nm-ip6-config-glue.h \
|
||||
nm-active-connection-glue.h \
|
||||
nm-dhcp4-config-glue.h \
|
||||
nm-dhcp6-config-glue.h \
|
||||
nm-agent-manager-glue.h
|
||||
nm-dhcp6-config-glue.h
|
||||
|
||||
NetworkManager_CPPFLAGS = \
|
||||
$(DBUS_CFLAGS) \
|
||||
|
|
|
|||
|
|
@ -9,7 +9,8 @@ noinst_LTLIBRARIES = libsettings.la
|
|||
|
||||
BUILT_SOURCES = \
|
||||
nm-settings-glue.h \
|
||||
nm-settings-connection-glue.h
|
||||
nm-settings-connection-glue.h \
|
||||
nm-agent-manager-glue.h
|
||||
|
||||
libsettings_la_SOURCES = \
|
||||
nm-settings.c \
|
||||
|
|
@ -24,7 +25,11 @@ libsettings_la_SOURCES = \
|
|||
nm-settings-connection.c \
|
||||
nm-settings-connection.h \
|
||||
nm-default-wired-connection.c \
|
||||
nm-default-wired-connection.h
|
||||
nm-default-wired-connection.h \
|
||||
nm-agent-manager.c \
|
||||
nm-agent-manager.h \
|
||||
nm-secret-agent.c \
|
||||
nm-secret-agent.h
|
||||
|
||||
libsettings_la_CPPFLAGS = \
|
||||
$(DBUS_CFLAGS) \
|
||||
|
|
@ -59,6 +64,9 @@ nm-settings-glue.h: $(top_srcdir)/introspection/nm-settings.xml
|
|||
nm-settings-connection-glue.h: $(top_srcdir)/introspection/nm-settings-connection.xml
|
||||
$(AM_V_GEN) dbus-binding-tool --prefix=nm_settings_connection --mode=glib-server --output=$@ $<
|
||||
|
||||
nm-agent-manager-glue.h: $(top_srcdir)/introspection/nm-agent-manager.xml
|
||||
$(AM_V_GEN) dbus-binding-tool --prefix=nm_agent_manager --mode=glib-server --output=$@ $<
|
||||
|
||||
CLEANFILES = \
|
||||
$(BUILT_SOURCES)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue