mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
15 lines
349 B
Makefile
15 lines
349 B
Makefile
# $NetBSD: options.mk,v 1.1 2015/11/27 16:20:31 nils Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.siege
|
|
PKG_SUPPORTED_OPTIONS= ssl
|
|
PKG_SUGGESTED_OPTIONS= ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q}
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-ssl
|
|
.endif
|