2004-12-21 Colin Walters <walters@redhat.com>

* configure.in: Correct named detection.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@353 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Colin Walters 2004-12-21 21:47:51 +00:00 committed by Colin Walters
parent 33bd873ec4
commit 399003d492
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2004-12-21 Colin Walters <walters@redhat.com>
* configure.in: Correct named detection.
2004-12-21 Colin Walters <walters@redhat.com>
* src/NetworkManager.c (nm_data_new): Initialize named.

View file

@ -152,7 +152,7 @@ AC_DEFINE_UNQUOTED(DBUS_SYSTEMD_DIR, "$DBUS_SYS_DIR", [Where system.d dir for DB
AC_ARG_WITH(named, AC_HELP_STRING([--with-named=<path>], [path to the named binary]))
if test "x${with_named}" = x; then
AC_PATH_PROG(with_named, [named], no)
if test "x${with_named}" = x; then
if test "x${with_named}" = xno; then
AC_MSG_ERROR([must specify path to named binary with --with-named])
fi
fi