diff options
author | Tor Lillqvist <tml@novell.com> | 2005-12-22 18:41:40 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-12-22 18:41:40 +0800 |
commit | c6926bb957c087ee3068090922c316374ac08f4a (patch) | |
tree | f9e754b25894d3b84862bc1676bf04c433ab50d6 | |
parent | b107c8e591e1b9297383d917bc954081006d4f3a (diff) | |
download | gsoc2013-evolution-c6926bb957c087ee3068090922c316374ac08f4a.tar.gz gsoc2013-evolution-c6926bb957c087ee3068090922c316374ac08f4a.tar.zst gsoc2013-evolution-c6926bb957c087ee3068090922c316374ac08f4a.zip |
Fix minor typo in the Network Manager tests.
2005-12-22 Tor Lillqvist <tml@novell.com>
* configure.in: Fix minor typo in the Network Manager tests.
svn path=/trunk/; revision=30932
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2005-12-22 Tor Lillqvist <tml@novell.com> + + * configure.in: Fix minor typo in the Network Manager tests. + 2005-12-22 Shreyas Srinivasan <sshreyas@novell.com> * configure.in: Network Manager Support- Check if dbus, dbus-glib, diff --git a/configure.in b/configure.in index 317b5e1700..abd319c8b6 100644 --- a/configure.in +++ b/configure.in @@ -1204,8 +1204,7 @@ 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}" != "x"; then -dnl if test "x$NM_SUPPORT" = "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" fi |