aboutsummaryrefslogtreecommitdiffstats
path: root/ftp/proftpd-devel
diff options
context:
space:
mode:
authorlwhsu <lwhsu@FreeBSD.org>2010-08-22 11:33:11 +0800
committerlwhsu <lwhsu@FreeBSD.org>2010-08-22 11:33:11 +0800
commit9a202e80d9804fb451de642304a1678036e857c7 (patch)
tree0b5e99bbb0ebe69c066443e5d382f43839009436 /ftp/proftpd-devel
parentabe36208616debdcd269062646e0d7d60c6dd21c (diff)
downloadfreebsd-ports-gnome-9a202e80d9804fb451de642304a1678036e857c7.tar.gz
freebsd-ports-gnome-9a202e80d9804fb451de642304a1678036e857c7.tar.zst
freebsd-ports-gnome-9a202e80d9804fb451de642304a1678036e857c7.zip
- Add shaper module option
PR: ports/148403 Submitted by: Loic Pefferkorn <loic-freebsd AT loicp.eu> Approved by: <guzik AT anka.net.pl> (maintainer)
Diffstat (limited to 'ftp/proftpd-devel')
-rw-r--r--ftp/proftpd-devel/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/ftp/proftpd-devel/Makefile b/ftp/proftpd-devel/Makefile
index 477dc5539b89..ecb55f34d3e3 100644
--- a/ftp/proftpd-devel/Makefile
+++ b/ftp/proftpd-devel/Makefile
@@ -69,6 +69,7 @@ OPTIONS= IPV6 "Use IPv6" off \
LDAP_TLS "Use LDAP TLS (Requires LDAP, OPENSSL)" off\
MYSQL "MySQL auth (Can be combined)" off \
PGSQL "Postgres auth (Can be combined)" off \
+ SHAPER "Shaper module" off \
SQLITE "SQLite auth (Can be combined)" off \
ODBC "ODBC (Can be combined)" off \
OPENSSL "Include mod_tls" on \
@@ -135,6 +136,10 @@ MODULES:=${MODULES}:mod_wrap2_sql
MODULES:=${MODULES}:mod_radius
.endif
+.if defined(WITH_SHAPER)
+MODULES:=${MODULES}:mod_shaper
+.endif
+
.if defined(WITH_QUOTATAB_RADIUS)
MODULES:=${MODULES}:mod_quotatab_radius
.endif