aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--configure.in4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 895049532b..3f928805e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,6 @@
2005-12-22 Tor Lillqvist <tml@novell.com>
- * configure.in: Fix minor typo in the Network Manager tests.
+ * configure.in: Fix minor errors in the Network Manager tests.
2005-12-22 Shreyas Srinivasan <sshreyas@novell.com>
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