aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBenjamin Otte <otte@src.gnome.org>2009-03-12 22:47:55 +0800
committerBenjamin Otte <otte@src.gnome.org>2009-03-12 22:47:55 +0800
commit51cf7473e5f18cc62d0aec64d468d20b68b92452 (patch)
tree7e08ff13f9e13cf1f6499fc9b7e0c567ee7921b9 /src
parente77131ccda31af1df0f1e979d6cd3588d869817f (diff)
downloadgsoc2013-epiphany-51cf7473e5f18cc62d0aec64d468d20b68b92452.tar
gsoc2013-epiphany-51cf7473e5f18cc62d0aec64d468d20b68b92452.tar.gz
gsoc2013-epiphany-51cf7473e5f18cc62d0aec64d468d20b68b92452.tar.bz2
gsoc2013-epiphany-51cf7473e5f18cc62d0aec64d468d20b68b92452.tar.lz
gsoc2013-epiphany-51cf7473e5f18cc62d0aec64d468d20b68b92452.tar.xz
gsoc2013-epiphany-51cf7473e5f18cc62d0aec64d468d20b68b92452.tar.zst
gsoc2013-epiphany-51cf7473e5f18cc62d0aec64d468d20b68b92452.zip
detect NetworkManager using pkg-config
svn path=/trunk/; revision=8873
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/ephy-net-monitor.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 1d8fd6f09..a94d08285 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -122,6 +122,8 @@ if ENABLE_NETWORK_MANAGER
libephymain_la_SOURCES += \
ephy-net-monitor.c \
ephy-net-monitor.h
+
+libephymain_la_CFLAGS += $(NETWORK_MANAGER_CFLAGS)
endif
if ENABLE_SEED
diff --git a/src/ephy-net-monitor.c b/src/ephy-net-monitor.c
index 762a9fb8f..69f8be7b7 100644
--- a/src/ephy-net-monitor.c
+++ b/src/ephy-net-monitor.c
@@ -26,7 +26,7 @@
#include "ephy-debug.h"
#include "ephy-prefs.h"
-#include <NetworkManager/NetworkManager.h>
+#include <NetworkManager.h>
#include <gmodule.h>