summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-11-26 09:46:42 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-11-26 09:46:42 +0100
commit378de73cbf88e5522fe0102c6a913a5ddb55e84c (patch)
tree02d5f89772a1d2a4f8997146f4331172b06de105 /configure.ac
parenta2601994cd564bb81d2240c98261de17a6b830e4 (diff)
downloadconnman-378de73cbf88e5522fe0102c6a913a5ddb55e84c.tar.gz
connman-378de73cbf88e5522fe0102c6a913a5ddb55e84c.tar.bz2
connman-378de73cbf88e5522fe0102c6a913a5ddb55e84c.zip
Remove empty plugins for Novatel and Huawei modems
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac11
1 files changed, 1 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index 1cc01c36..f9ce1b65 100644
--- a/configure.ac
+++ b/configure.ac
@@ -168,14 +168,6 @@ AC_ARG_ENABLE(dnsproxy,
AM_CONDITIONAL(DNSPROXY, test "${enable_dnsproxy}" != "no")
AM_CONDITIONAL(DNSPROXY_BUILTIN, test "${enable_dnsproxy}" = "builtin")
-AC_ARG_ENABLE(novatel, AC_HELP_STRING([--enable-novatel],
- [enable Novatel support]), [enable_novatel=${enableval}])
-AM_CONDITIONAL(NOVATEL, test "${enable_novatel}" = "yes")
-
-AC_ARG_ENABLE(huawei, AC_HELP_STRING([--enable-huawei],
- [enable HUAWEI support]), [enable_huawei=${enableval}])
-AM_CONDITIONAL(HUAWEI, test "${enable_huawei}" = "yes")
-
AC_ARG_ENABLE(hso,
AC_HELP_STRING([--enable-hso], [enable HSO support]),
[enable_hso=${enableval}], [enable_hso="no"])
@@ -193,8 +185,7 @@ AC_ARG_WITH(pppd, AC_HELP_STRING([--with-pppd=PROGRAM],
AC_ARG_ENABLE(ppp, AC_HELP_STRING([--enable-ppp],
[enable PPP support]), [enable_ppp=${enableval}])
-if (test "${enable_ppp}" = "yes" || test "${enable_novatel}" = "yes" ||
- test "${enable_huawei}" = "yes"); then
+if (test "${enable_ppp}" = "yes"); then
if (test -z "${path_pppd}"); then
AC_PATH_PROG(PPPD, [pppd], [], $PATH:/sbin:/usr/sbin)
else