diff options
author | mharo <mharo@FreeBSD.org> | 2004-08-28 18:10:38 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2004-08-28 18:10:38 +0000 |
commit | 2e7552c42e298f937384bec7f95d99fd592a932e (patch) | |
tree | d01fea595fb2946aac3a13f83b1c24e461038080 /ftp | |
parent | 07fb9f1b51e75ea2c5a3c52b8f9ccb62b76b56ef (diff) | |
download | FreeBSD-ports-2e7552c42e298f937384bec7f95d99fd592a932e.zip FreeBSD-ports-2e7552c42e298f937384bec7f95d99fd592a932e.tar.gz |
add option to compile with support for quotas
PR: 68644
Submitted by: Krzysztof Stryjek <wtp+proftpd@bsdguru.org>
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/proftpd-devel/Makefile | 10 | ||||
-rw-r--r-- | ftp/proftpd/Makefile | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/ftp/proftpd-devel/Makefile b/ftp/proftpd-devel/Makefile index e551760..cab6afa 100644 --- a/ftp/proftpd-devel/Makefile +++ b/ftp/proftpd-devel/Makefile @@ -113,6 +113,16 @@ MAN8+= ftpdctl.8 .else .endif +.if defined(WITH_QUOTA) +MODULES:=${MODULES}:mod_quotatab:mod_quotatab_file +.if defined(WITH_LDAP) +MODULES:=${MODULES}:mod_quotatab_ldap +.endif +.if defined(WITH_POSTGRESQL) || defined(WITH_MYSQL) +MODULES:=${MODULES}:mod_quotatab_sql +.endif +.endif + # Keep this here below, in case similar constructs need to be made CONFIGURE_ENV+= "LIBS=${PROFTPD_LIBS}" diff --git a/ftp/proftpd/Makefile b/ftp/proftpd/Makefile index e551760..cab6afa 100644 --- a/ftp/proftpd/Makefile +++ b/ftp/proftpd/Makefile @@ -113,6 +113,16 @@ MAN8+= ftpdctl.8 .else .endif +.if defined(WITH_QUOTA) +MODULES:=${MODULES}:mod_quotatab:mod_quotatab_file +.if defined(WITH_LDAP) +MODULES:=${MODULES}:mod_quotatab_ldap +.endif +.if defined(WITH_POSTGRESQL) || defined(WITH_MYSQL) +MODULES:=${MODULES}:mod_quotatab_sql +.endif +.endif + # Keep this here below, in case similar constructs need to be made CONFIGURE_ENV+= "LIBS=${PROFTPD_LIBS}" |