2f54f4753f
Buildroot commit26d5d1c0a2
removed the configure option --with-rfc2640 due to upstream commit:33eda763bf
In the same upstream commit the iconv support was also removed because it was only needed for rfc2640 support, this removal was forgotten in the forementioned buildroot commit. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Arnout Vandecappelle <arnout@mind.be> (cherry picked from commitf30f5e4f61
) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
86 lines
2.1 KiB
Makefile
86 lines
2.1 KiB
Makefile
################################################################################
|
|
#
|
|
# pure-ftpd
|
|
#
|
|
################################################################################
|
|
|
|
PURE_FTPD_VERSION = 1.0.51
|
|
PURE_FTPD_SITE = https://download.pureftpd.org/pub/pure-ftpd/releases
|
|
PURE_FTPD_SOURCE = pure-ftpd-$(PURE_FTPD_VERSION).tar.bz2
|
|
PURE_FTPD_LICENSE = ISC
|
|
PURE_FTPD_LICENSE_FILES = COPYING
|
|
PURE_FTPD_CPE_ID_VENDOR = pureftpd
|
|
|
|
PURE_FTPD_CONF_OPTS = \
|
|
--with-altlog \
|
|
--with-puredb
|
|
|
|
ifeq ($(BR2_PACKAGE_ELFUTILS),y)
|
|
PURE_FTPD_DEPENDENCIES += elfutils
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCAP),y)
|
|
PURE_FTPD_CONF_OPTS += --with-capabilities
|
|
PURE_FTPD_DEPENDENCIES += libcap
|
|
else
|
|
PURE_FTPD_CONF_OPTS += --without-capabilities
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSODIUM),y)
|
|
PURE_FTPD_DEPENDENCIES += libsodium
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_MARIADB),y)
|
|
PURE_FTPD_CONF_OPTS += --with-mysql=$(STAGING_DIR)/usr
|
|
PURE_FTPD_DEPENDENCIES += mariadb
|
|
else
|
|
PURE_FTPD_CONF_OPTS += --without-mysql
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENLDAP),y)
|
|
PURE_FTPD_CONF_OPTS += --with-ldap
|
|
PURE_FTPD_DEPENDENCIES += openldap
|
|
else
|
|
PURE_FTPD_CONF_OPTS += --without-ldap
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
PURE_FTPD_CONF_OPTS += --with-tls
|
|
PURE_FTPD_DEPENDENCIES += host-pkgconf openssl
|
|
PURE_FTPD_CONF_ENV += LIBS=`$(PKG_CONFIG_HOST_BINARY) --libs openssl`
|
|
else
|
|
PURE_FTPD_CONF_OPTS += --without-tls
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_POSTGRESQL),y)
|
|
PURE_FTPD_CONF_OPTS += --with-pgsql=$(STAGING_DIR)/usr
|
|
PURE_FTPD_DEPENDENCIES += postgresql
|
|
else
|
|
PURE_FTPD_CONF_OPTS += --without-pgsql
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_SUPPORTS_PIE),)
|
|
PURE_FTPD_CONF_ENV += ax_cv_check_cflags___fPIE=no ax_cv_check_ldflags___fPIE=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PURE_FTPD_FTPWHO),y)
|
|
PURE_FTPD_CONF_OPTS += --with-ftpwho
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PURE_FTPD_QUOTAS),y)
|
|
PURE_FTPD_CONF_OPTS += --with-quotas
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PURE_FTPD_UPLOADSCRIPT),y)
|
|
PURE_FTPD_CONF_OPTS += --with-uploadscript
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
|
|
PURE_FTPD_CONF_OPTS += --with-pam
|
|
PURE_FTPD_DEPENDENCIES += linux-pam
|
|
else
|
|
PURE_FTPD_CONF_OPTS += --without-pam
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|