diff options
author | krion <krion@FreeBSD.org> | 2004-03-25 15:37:10 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-03-25 15:37:10 +0800 |
commit | 55bbac6cb2176a49258c2a4c7785ead2881211d3 (patch) | |
tree | d8ff95aa5907fc0c692988139dae7bd4cc13bb15 /ftp/frox | |
parent | 88c6d43266a3eb51f227d6ed2b4dc3725cc2f9a6 (diff) | |
download | freebsd-ports-gnome-55bbac6cb2176a49258c2a4c7785ead2881211d3.tar.gz freebsd-ports-gnome-55bbac6cb2176a49258c2a4c7785ead2881211d3.tar.zst freebsd-ports-gnome-55bbac6cb2176a49258c2a4c7785ead2881211d3.zip |
- Fix default options
PR: ports/64673
Submitted by: maintainer
Diffstat (limited to 'ftp/frox')
-rw-r--r-- | ftp/frox/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/ftp/frox/Makefile b/ftp/frox/Makefile index 0515b54af339..f5be52184b6f 100644 --- a/ftp/frox/Makefile +++ b/ftp/frox/Makefile @@ -47,11 +47,16 @@ OPTIONS= IPFILTER "Use ipfilter instead of ipfw" off \ LOCAL_CACHE "Enable use of local cache" off \ CCP "Ftp-proxy style command control programs" on \ ROOT_RUN "Allow frox running as root (not recomended)" off -WITH_HTTP_CACHE?= yes -WITH_CCP?= yes - .include <bsd.port.pre.mk> +# Set default options +.if !defined(WITHOUT_HTTP_CACHE) +WITH_HTTP_CACHE= yes +.endif +.if !defined(WITHOUT_CCP) +WITH_CCP= yes +.endif + .if defined(WITH_IPFILTER) CONFIGURE_ARGS+= --enable-ipfilter .endif |