56ad964245
Suggested by pancake@ in PR #28573
18 lines
419 B
Makefile
18 lines
419 B
Makefile
# $NetBSD: options.mk,v 1.1 2007/07/09 22:34:27 adrianp Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mysql5-client
|
|
|
|
PKG_SUPPORTED_OPTIONS= ssl
|
|
PKG_SUGGESTED_OPTIONS= ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Enable OpenSSL support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-openssl
|
|
.endif
|