From 2d9e9df3e75dbca2b3b5c98c689743c22a2c7b46 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Thu, 29 May 2008 18:27:14 +0000 Subject: [PATCH] Remove unused check for /sbin/ip (Michael Biebl) git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3703 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- configure.in | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/configure.in b/configure.in index 096b85baa8..73babf4b7c 100644 --- a/configure.in +++ b/configure.in @@ -285,19 +285,6 @@ else fi AC_SUBST(DBUS_SYS_DIR) -# ip binary path -AC_ARG_WITH(ip, AS_HELP_STRING([--with-ip=/path/to/ip], [path to ip])) -if test "x${with_ip}" = x; then - AC_PATH_PROG(IP_BINARY_PATH, ip, [], $PATH:/sbin:/usr/sbin) - if ! test -x "$IP_BINARY_PATH"; then - AC_MSG_ERROR(iproute2 was not installed. See http://linux-net.osdl.org/index.php/Iproute2) - fi -else - IP_BINARY_PATH="$with_ip" -fi -AC_DEFINE_UNQUOTED(IP_BINARY_PATH, "$IP_BINARY_PATH", [Define to path of ip binary]) -AC_SUBST(IP_BINARY_PATH) - # PPPD AC_CHECK_HEADERS(pppd/pppd.h,, AC_MSG_ERROR(couldn't find pppd.h. pppd development headers are required.))