aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-12-22 19:53:28 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-12-22 19:53:28 +0800
commit48608a485f3aa3e681f4e90bf4949618ede62918 (patch)
treebd0f318386da83f196610ce0e02da1c2dd953b5f /configure.in
parent9745382f613294eef333a50f85502815d85557a7 (diff)
downloadgsoc2013-evolution-48608a485f3aa3e681f4e90bf4949618ede62918.tar
gsoc2013-evolution-48608a485f3aa3e681f4e90bf4949618ede62918.tar.gz
gsoc2013-evolution-48608a485f3aa3e681f4e90bf4949618ede62918.tar.bz2
gsoc2013-evolution-48608a485f3aa3e681f4e90bf4949618ede62918.tar.lz
gsoc2013-evolution-48608a485f3aa3e681f4e90bf4949618ede62918.tar.xz
gsoc2013-evolution-48608a485f3aa3e681f4e90bf4949618ede62918.tar.zst
gsoc2013-evolution-48608a485f3aa3e681f4e90bf4949618ede62918.zip
Fix minor errors in the Network Manager tests.
2005-12-22 Tor Lillqvist <tml@novell.com> * configure.in: Fix minor errors in the Network Manager tests. svn path=/trunk/; revision=30937
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index abd319c8b6..7d99688056 100644
--- a/configure.in
+++ b/configure.in
@@ -1204,9 +1204,11 @@ if test "x$NM_SUPPORT_GLIB" = "xyes"; then
else
PKG_CHECK_MODULES(NM, dbus-glib-1, NM_SUPPORT="yes", NM_SUPPORT="no")
AC_CHECK_HEADER(NetworkManager/NetworkManager.h, [ nm_header="yes" ] )
-if test "x$NM_SUPPORT" = "xyes" -a "x$nm_header" = "xyes"; then
+ if test "x$NM_SUPPORT" = "xyes" -a "x$nm_header" = "xyes"; then
AC_DEFINE(NM_SUPPORT, 1, [network manager available])
NM_SUPPORT_PACKAGES="dbus-1 dbus-glib-1"
+ else
+ NM_SUPPORT=no
fi
fi