mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-03-22 18:30:37 +01:00
2005-08-16 Dan Williams <dcbw@redhat.com>
Patch from j@bootlab.org * vpn-daemons/vpnc/Makefile.am: Fix for autoreconf * configure.in: allow specifying the path to dhcdbd git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@852 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
3bdab81126
commit
387f572771
3 changed files with 14 additions and 2 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2005-08-16 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
Patch from j@bootlab.org
|
||||
* vpn-daemons/vpnc/Makefile.am: Fix for autoreconf
|
||||
|
||||
* configure.in: allow specifying the path to dhcdbd
|
||||
|
||||
2005-08-16 Robert Love <rml@novell.com>
|
||||
|
||||
Patch from j@bootlab.org
|
||||
|
|
|
|||
|
|
@ -197,9 +197,12 @@ AC_DEFINE_UNQUOTED(NM_NAMED_BINARY_PATH, "$with_named", [Define to path of named
|
|||
AC_DEFINE_UNQUOTED(NM_NAMED_DATA_DIR, "$with_named_dir", [Define to path of named data directory])
|
||||
AC_DEFINE_UNQUOTED(NM_NAMED_USER, "$with_named_user", [Define to named username])
|
||||
|
||||
AC_PATH_PROG(DHCDBD_BINARY_PATH, dhcdbd, [], $PATH:/sbin:/usr/sbin)
|
||||
if ! test -x "$DHCDBD_BINARY_PATH"; then
|
||||
AC_ARG_WITH(DHCDBD_BINARY_PATH, AC_HELP_STRING([--with-dhcdbd=/path/to/dhcdbd], [path to dhcdbd]))
|
||||
if test "x${DHCDBD_BINARY_PATH}" = x; then
|
||||
AC_PATH_PROG(DHCDBD_BINARY_PATH, dhcdbd, [], $PATH:/sbin:/usr/sbin)
|
||||
if ! test -x "$DHCDBD_BINARY_PATH"; then
|
||||
AC_MSG_ERROR(dhcdbd was not installed. See http://people.redhat.com/jvdias/dhcdbd)
|
||||
fi
|
||||
fi
|
||||
AC_SUBST(DHCDBD_BINARY_PATH)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
AUTOMAKE_OPTIONS = foreign
|
||||
|
||||
SUBDIRS = src auth-dialog properties po
|
||||
|
||||
dbusservicedir = $(sysconfdir)/dbus-1/system.d
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue