0c15169f5a
Removed all patches, they are now included in this release. Added other patches fixing errors. Removed option BR2_PACKAGE_PPPD_RADIUS, upstream build system, now auto- conf-based, does not support disabling the radius plugin. Removed BR2_PACKAGE_PPPD_OVERWRITE_RESOLV_CONF, upstream now defaults to /etc, quoting README: "Note that if you have built and installed previous versions of this package and you want to continue having configuration and TDB files in /etc/ppp, you will need to use the --sysconfdir option to ./configure." Switched build system to autoconf, added optional systemd support. Added configure option to enable multilink support which now defaults to false but was enabled before: https://github.com/ppp-project/ppp/blob/2.4.9/pppd/Makefile.linux#L57 Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# pppd
|
|
#
|
|
################################################################################
|
|
|
|
# The tarball provided at https://download.samba.org/pub/ppp/ does not
|
|
# include the license files yet so we use the github tarball.
|
|
PPPD_VERSION = 2.5.0
|
|
PPPD_SITE = $(call github,ppp-project,ppp,ppp-$(PPPD_VERSION))
|
|
PPPD_LICENSE = LGPL-2.0+, LGPL, BSD-4-Clause, BSD-3-Clause, GPL-2.0+
|
|
PPPD_LICENSE_FILES = LICENSE.BSD LICENSE.GPL-2
|
|
PPPD_CPE_ID_VENDOR = point-to-point_protocol_project
|
|
PPPD_CPE_ID_PRODUCT = point-to-point_protocol
|
|
PPPD_SELINUX_MODULES = ppp
|
|
PPPD_AUTORECONF = YES
|
|
PPPD_INSTALL_STAGING = YES
|
|
PPPD_CONF_OPTS = --enable-multilink
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
PPPD_CONF_OPTS += \
|
|
--enable-eaptls \
|
|
--enable-openssl-engine \
|
|
--enable-peap \
|
|
--with-openssl=$(STAGING_DIR)/usr
|
|
PPPD_DEPENDENCIES += openssl
|
|
else
|
|
PPPD_CONF_OPTS += \
|
|
--disable-eaptls \
|
|
--disable-openssl-engine \
|
|
--disable-peap \
|
|
--without-openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PPPD_FILTER),y)
|
|
PPPD_CONF_OPTS += --with-pcap=$(STAGING_DIR)/usr
|
|
PPPD_DEPENDENCIES += libpcap
|
|
else
|
|
PPPD_CONF_OPTS += --without-pcap
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
PPPD_CONF_OPTS += --enable-systemd
|
|
PPPD_DEPENDENCIES += systemd
|
|
else
|
|
PPPD_CONF_OPTS += --disable-systemd
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|