diff options
author | miwi <miwi@FreeBSD.org> | 2007-12-22 23:59:19 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-12-22 23:59:19 +0800 |
commit | 77f095275155d3cff8a8b1fb9c0b85c60d151033 (patch) | |
tree | 852c92eb6b4aaad140f129468187fa580eea5500 | |
parent | d719d2d40041f5c8c6307435a19219f086930205 (diff) | |
download | freebsd-ports-gnome-77f095275155d3cff8a8b1fb9c0b85c60d151033.tar.gz freebsd-ports-gnome-77f095275155d3cff8a8b1fb9c0b85c60d151033.tar.zst freebsd-ports-gnome-77f095275155d3cff8a8b1fb9c0b85c60d151033.zip |
- Fix OPTIONS handling
PR: 118373
Submitted by: Max N. Boyarov <m.boyarov@bsd.by>
Approved by: maintainer
-rw-r--r-- | www/havp/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/havp/Makefile b/www/havp/Makefile index 94da63dc3bf2..85ee3640e4c4 100644 --- a/www/havp/Makefile +++ b/www/havp/Makefile @@ -36,6 +36,8 @@ OPTIONS= SSL "Enable SSL proxying (not scanned, only forwarded!)" on \ CLAMAV "Enable libclamav support" on \ TROPHIE "Enable Trend Micro (Trophie) support" off +.include <bsd.port.pre.mk> + .if defined(WITH_SSL) CONFIGURE_ARGS+= --enable-ssl-tunnel .else @@ -66,4 +68,4 @@ post-install: @${CP} ${WRKSRC}/etc/havp/whitelist ${EXAMPLESDIR}/whitelist.sample @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.include <bsd.port.mk> +.include <bsd.port.post.mk> |