diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-07-27 18:36:05 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-07-27 18:36:05 -0700 |
commit | 6536cc01ae474807f74e0f160f1d7e756f2870e7 (patch) | |
tree | 7e19bc8444effe7664346fb28e4cdf4b18062d7b /configure.ac | |
parent | 53fd2c3bf958859f6b518681ff65f5dff9e23f70 (diff) | |
download | connman-6536cc01ae474807f74e0f160f1d7e756f2870e7.tar.gz connman-6536cc01ae474807f74e0f160f1d7e756f2870e7.tar.bz2 connman-6536cc01ae474807f74e0f160f1d7e756f2870e7.zip |
Remove resolvconf plugin
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/configure.ac b/configure.ac index 76bc916d..745e5dba 100644 --- a/configure.ac +++ b/configure.ac @@ -132,23 +132,6 @@ fi AM_CONDITIONAL(DHCLIENT, test "${enable_dhclient}" != "no") AM_CONDITIONAL(DHCLIENT_BUILTIN, test "${enable_dhclient}" = "builtin") -AC_ARG_WITH(resolvconf, AC_HELP_STRING([--with-resolvconf=PROGRAM], - [specify location of resolvconf binary]), [path_resolvconf=${withval}]) - -AC_ARG_ENABLE(resolvconf, - AC_HELP_STRING([--enable-resolvconf], [enable resolvconf support]), - [enable_resolvconf=${enableval}], [enable_resolvconf="no"]) -if (test "${enable_resolvconf}" != "no"); then - if (test -z "${path_resolvconf}"); then - AC_PATH_PROG(RESOLVCONF, [resolvconf], [], $PATH:/sbin:/usr/sbin) - else - RESOLVCONF="${path_resolvconf}" - AC_SUBST(RESOLVCONF) - fi -fi -AM_CONDITIONAL(RESOLVCONF, test "${enable_resolvconf}" != "no") -AM_CONDITIONAL(RESOLVCONF_BUILTIN, test "${enable_resolvconf}" = "builtin") - AC_ARG_WITH(openconnect, AC_HELP_STRING([--with-openconnect=PROGRAM], [specify location of openconnect binary]), [path_openconnect=${withval}]) |