d8180f6b39
remove the later. The old version 1.0.5 is unmaintained, has a remote DoS vulnerability and is less reliable than version 1.2.0beta2. Approved by Adrian Portelli.
22 lines
448 B
Makefile
22 lines
448 B
Makefile
# $NetBSD: options.mk,v 1.1 2008/06/17 12:53:54 tron Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.dircproxy
|
|
PKG_SUPPORTED_OPTIONS= ssl debug
|
|
PKG_SUGGESTED_OPTIONS= ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Compile with SSL support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
CONFIGURE_ARGS+= --enable-ssl
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.endif
|
|
|
|
###
|
|
### Turn on debugging
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|