blob: c2a9617c4b5769d59b71134a1bdac9dc94b15897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: options.mk,v 1.1 2006/02/19 15:47:35 adrianp 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
|