diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-20 23:38:33 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-20 23:49:46 +0800 |
commit | 6c569e64af88867f2a0007f1fb047a00fb8f9ef0 (patch) | |
tree | ff1cc1273830b0d14b2c76b91b2bfdbf3cc54d87 /shell/Makefile.am | |
parent | 185b7b2a0b5641bdfafd440568d11c4521c42573 (diff) | |
download | gsoc2013-evolution-6c569e64af88867f2a0007f1fb047a00fb8f9ef0.tar.gz gsoc2013-evolution-6c569e64af88867f2a0007f1fb047a00fb8f9ef0.tar.zst gsoc2013-evolution-6c569e64af88867f2a0007f1fb047a00fb8f9ef0.zip |
Convert NetworkManager integration to an EShell extension.
This demonstrates how to extend EShell without having to modify and
recompile e-shell.c. If NetworkManager integration is enabled, the
extension is loaded automatically when the EShell is created.
The same pattern can be applied to integrate other network monitoring
software like ConnMan or Microsoft's Wireless Zero Configuration.
Diffstat (limited to 'shell/Makefile.am')
-rw-r--r-- | shell/Makefile.am | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/shell/Makefile.am b/shell/Makefile.am index 8afc886d46..0a93912680 100644 --- a/shell/Makefile.am +++ b/shell/Makefile.am @@ -2,13 +2,6 @@ if ENABLE_TEST_COMPONENT SUBDIRS = . test endif -if NM_SUPPORT -NM_CPPFLAGS = \ - $(DBUS_GLIB_CFLAGS) \ - $(NM_CFLAGS) -NM_SUPPORT_FILES = e-shell-nm.c -endif - # Executable bin_PROGRAMS = evolution @@ -61,7 +54,6 @@ libeshell_la_CPPFLAGS = \ $(SHELL_CFLAGS) libeshell_la_SOURCES = \ - $(NM_SUPPORT_FILES) \ $(eshellinclude_HEADERS) \ e-shell.c \ e-shell-backend.c \ @@ -92,10 +84,6 @@ libeshell_la_LIBADD = \ $(GNOME_PLATFORM_LIBS) \ $(SHELL_LIBS) -if NM_SUPPORT -libeshell_la_LIBADD += $(DBUS_GLIB_LIBS) -endif - # Evolution executable if HAVE_WINDRES |