summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-12-06 21:57:14 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-12-06 21:57:14 +0100
commitb16b4b09126d1a4ef6274023c5b86b4d38a3794c (patch)
treee93cbcfa3aaf5bf76200e3fd3569eae7af882aab /configure.ac
parent825eb18ed77f347a6e178d67f547ad867214ebb2 (diff)
downloadconnman-b16b4b09126d1a4ef6274023c5b86b4d38a3794c.tar.gz
connman-b16b4b09126d1a4ef6274023c5b86b4d38a3794c.tar.bz2
connman-b16b4b09126d1a4ef6274023c5b86b4d38a3794c.zip
Remove unfinished and unneeded PPP support
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 90621313..e774687f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -180,23 +180,6 @@ AC_ARG_ENABLE(mbm,
AM_CONDITIONAL(MBM, test "${enable_mbm}" != "no")
AM_CONDITIONAL(MBM_BUILTIN, test "${enable_mbm}" = "builtin")
-AC_ARG_WITH(pppd, AC_HELP_STRING([--with-pppd=PROGRAM],
- [specify location of pppd binary]), [path_pppd=${withval}])
-
-AC_ARG_ENABLE(ppp, AC_HELP_STRING([--enable-ppp],
- [enable PPP support]), [enable_ppp=${enableval}])
-if (test "${enable_ppp}" = "yes"); then
- if (test -z "${path_pppd}"); then
- AC_PATH_PROG(PPPD, [pppd], [], $PATH:/sbin:/usr/sbin)
- else
- PPPD="${path_pppd}"
- AC_SUBST(PPPD)
- fi
- AC_CHECK_HEADERS(pppd/pppd.h, enable_ppp=yes,
- AC_MSG_ERROR(PPP development files are required))
-fi
-AM_CONDITIONAL(PPPD, test "${enable_ppp}" = "yes")
-
AC_CHECK_LIB(dl, dlopen, dummy=yes,
AC_MSG_ERROR(dynamic linking loader is required))