89094db8e9
popular database language in the world. MySQL is a client-server implementation that consists of a server daemon `mysqld' and many different client programs/libraries. The main goals of MySQL are speed and robustness. The base upon which MySQL is built is a set of routines that have been used in a highly demanding production environment for many years. While MySQL is still in development it already offers a rich and highly useful function set. The official way to pronounce 'MySQL' is 'My Ess Que Ell' (Not MY-SEQUEL). This package contains the MySQL client programs and libraries.
28 lines
696 B
Makefile
28 lines
696 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2011/04/25 21:12:53 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mysql5
|
|
|
|
# ndb-cluster does not configure with cmake
|
|
PKG_SUPPORTED_OPTIONS+= embedded-server ndb-cluster ssl
|
|
PKG_SUGGESTED_OPTIONS+= embedded-server ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Enable OpenSSL support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
. if ${OPSYS} == "SunOS"
|
|
CHECK_BUILTIN.openssl:=yes
|
|
. include "../../security/openssl/builtin.mk"
|
|
CHECK_BUILTIN.openssl:=no
|
|
. if ${USE_BUILTIN.openssl} == "yes"
|
|
CMAKE_ARGS+= -DWITH_SSL=system
|
|
. endif
|
|
. else
|
|
CMAKE_ARGS+= -DWITH_SSL=system
|
|
. endif
|
|
.else
|
|
CMAKE_ARGS+= -DWITH_SSL=no
|
|
.endif
|