1config BR2_PACKAGE_PPPD
2	bool "pppd"
3	depends on !BR2_STATIC_LIBS
4	depends on BR2_USE_MMU
5	select BR2_PACKAGE_OPENSSL if BR2_TOOLCHAIN_USES_GLIBC
6	select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
7	help
8	  An implementation of the Point-to-point protocol.
9
10	  http://www.samba.org/ppp/
11
12if BR2_PACKAGE_PPPD
13
14config BR2_PACKAGE_PPPD_FILTER
15	bool "filtering"
16	select BR2_PACKAGE_LIBPCAP
17	help
18	  Packet filtering abilities for pppd. If enabled,
19	  the pppd active-filter and pass-filter options
20	  are available.
21
22endif
23
24comment "pppd needs a toolchain w/ dynamic library"
25	depends on BR2_STATIC_LIBS
26	depends on BR2_USE_MMU
27