summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-11-26 11:10:09 +0100
committerMarcel Holtmann <marcel@holtmann.org>2010-11-26 11:10:09 +0100
commite2c6ed0aac1ae31584107c248384de51e9fe962e (patch)
treed39c6249615962fe9ae22421d88e6a1bfad28118 /configure.ac
parent0274fe4a18abd90764567ed2c20e8582d252928c (diff)
downloadconnman-e2c6ed0aac1ae31584107c248384de51e9fe962e.tar.gz
connman-e2c6ed0aac1ae31584107c248384de51e9fe962e.tar.bz2
connman-e2c6ed0aac1ae31584107c248384de51e9fe962e.zip
Remove support for dhclient plugin
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac17
1 files changed, 0 insertions, 17 deletions
diff --git a/configure.ac b/configure.ac
index a1390f08..ba73bf03 100644
--- a/configure.ac
+++ b/configure.ac
@@ -95,23 +95,6 @@ AC_ARG_ENABLE(ofono,
AM_CONDITIONAL(OFONO, test "${enable_ofono}" != "no")
AM_CONDITIONAL(OFONO_BUILTIN, test "${enable_ofono}" = "builtin")
-AC_ARG_WITH(dhclient, AC_HELP_STRING([--with-dhclient=PROGRAM],
- [specify location of dhclient binary]), [path_dhclient=${withval}])
-
-AC_ARG_ENABLE(dhclient,
- AC_HELP_STRING([--enable-dhclient], [enable dhclient support]),
- [enable_dhclient=${enableval}], [enable_dhclient="no"])
-if (test "${enable_dhclient}" != "no"); then
- if (test -z "${path_dhclient}"); then
- AC_PATH_PROG(DHCLIENT, [dhclient], [], $PATH:/sbin:/usr/sbin)
- else
- DHCLIENT="${path_dhclient}"
- AC_SUBST(DHCLIENT)
- fi
-fi
-AM_CONDITIONAL(DHCLIENT, test "${enable_dhclient}" != "no")
-AM_CONDITIONAL(DHCLIENT_BUILTIN, test "${enable_dhclient}" = "builtin")
-
AC_ARG_WITH(openconnect, AC_HELP_STRING([--with-openconnect=PROGRAM],
[specify location of openconnect binary]), [path_openconnect=${withval}])