diff options
Diffstat (limited to 'ftp/proftpd')
-rw-r--r-- | ftp/proftpd/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ftp/proftpd/Makefile b/ftp/proftpd/Makefile index e55176081cee..cab6afab60bd 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}" |