blob: 7d4489e872bf3f6cc974b94fef71320ffff253c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $NetBSD: options.mk,v 1.2 2014/08/23 09:34:48 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.slrn
PKG_SUPPORTED_OPTIONS= ssl uulib
PKG_SUGGESTED_OPTIONS= ssl
.include "../../mk/bsd.options.mk"
###
### SSL support
###
.if !empty(PKG_OPTIONS:Mssl)
. include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q}
.else
CONFIGURE_ARGS+= --without-ssl
.endif
###
### uulib support
###
.if !empty(PKG_OPTIONS:Muulib)
. include "../../converters/uulib/buildlink3.mk"
CONFIGURE_ARGS+= --with-uu=${BUILDLINK_PREFIX.uulib}
.else
CONFIGURE_ARGS+= --without-uu
.endif
|