Bump buildroot to version 2017-02

TG-3 #closed
This commit is contained in:
jbnadal
2017-03-28 18:29:16 +02:00
parent 93b7fd91d2
commit 42c92a6bcb
3010 changed files with 41289 additions and 46428 deletions

View File

@@ -10,3 +10,22 @@ config BR2_PACKAGE_PURE_FTPD
well as hosting providers.
http://www.pureftpd.org
if BR2_PACKAGE_PURE_FTPD
config BR2_PACKAGE_PURE_FTPD_FTPWHO
bool "ftpwho"
help
Enable the pure-ftpd command. Pure-ftpwho shows current Pure-ftpd
client sessions. Only the system administrator may run this. Output
can be text (default), HTML, XML data and parser-optimized.
config BR2_PACKAGE_PURE_FTPD_QUOTAS
bool "quotas"
help
Enable virtual quotas. With virtual quotas, restrictions can
be placed on the maximum number of files a user can store in
his account. In addition, restrictions can also be placed
on the total size.
endif

View File

@@ -45,4 +45,12 @@ 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
$(eval $(autotools-package))