diff options
author | Kalle Valo <kalle.valo@canonical.com> | 2011-01-28 17:02:36 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-01-28 16:20:06 +0100 |
commit | 298b67120507e9f19fa60e56d8abbe4f870125cc (patch) | |
tree | 379fb8af912cab3d5916ac668e478f5ebbfe17b9 /Makefile.plugins | |
parent | db075ce314d647680cce30d97fc174a3aee02f77 (diff) | |
download | connman-298b67120507e9f19fa60e56d8abbe4f870125cc.tar.gz connman-298b67120507e9f19fa60e56d8abbe4f870125cc.tar.bz2 connman-298b67120507e9f19fa60e56d8abbe4f870125cc.zip |
nmcompat: Add plugin
Add plugin which provides network-manager state interface to applications.
This is a direct copy of what was in src/manager.c, just copied all into
a plugin.
Diffstat (limited to 'Makefile.plugins')
-rw-r--r-- | Makefile.plugins | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.plugins b/Makefile.plugins index 18416979..af3cfa0b 100644 --- a/Makefile.plugins +++ b/Makefile.plugins @@ -269,6 +269,18 @@ plugins_ntpd_la_LDFLAGS = $(plugin_ldflags) endif endif +if NMCOMPAT +if NMCOMPAT_BUILTIN +builtin_modules += nmcompat +builtin_sources += plugins/nmcompat.c +else +plugin_LTLIBRARIES += plugins/nmcompat.la +plugin_objects += $(plugins_nmcompat_la_OBJECTS) +plugins_nmcompat_la_CFLAGS = $(plugin_cflags) +plugins_nmcompat_la_LDFLAGS = $(plugin_ldflags) +endif +endif + EXTRA_DIST += plugins/polkit.policy plugins/net.connman.policy: plugins/polkit.policy |