summaryrefslogtreecommitdiff
path: root/databases/mysql55-client/options.mk
diff options
context:
space:
mode:
authormef <mef>2017-05-03 12:37:01 +0000
committermef <mef>2017-05-03 12:37:01 +0000
commit828560368f94c682c087b0e2eaa6423213aa991d (patch)
tree601dae0c7f4cc4308b8ef41abfdd39d96c9b0a25 /databases/mysql55-client/options.mk
parentf38e64ee976ad699666f3f0de78bc3a3ab39bdef (diff)
downloadpkgsrc-828560368f94c682c087b0e2eaa6423213aa991d.tar.gz
Updated database/mysql55-{client,server} to 5.5.56
------------------------------------------------------------------- (From https://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-56.html) Changes in MySQL 5.5.56 (2017-05-02, General availability) Binary packages for MySQL 5.5.56 are identical to those for MySQL 5.5.55, except for the version number. The change in 5.5.56 for Bug #25942414 is applicable only to those who build from source. Security Notes For the WITH_SSL CMake option, no is no longer a permitted value or the default value. The default is now bundled. Consequently, MySQL now is always built with SSL support. (Bug #25942414) ------------------------------------------------------------------- (pkgsrc changes) - Removed ssl option both from PKG_{SUPPORTED,SUGGESTED}_OPTIONS. This may give error if ssl is explicitly designated, but I believe that is the (kind of) upstream intension. (or left ssl in SUPPORTED and ignore it ?)
Diffstat (limited to 'databases/mysql55-client/options.mk')
-rw-r--r--databases/mysql55-client/options.mk12
1 files changed, 3 insertions, 9 deletions
diff --git a/databases/mysql55-client/options.mk b/databases/mysql55-client/options.mk
index 65c85171e1a..7d258ab6e7f 100644
--- a/databases/mysql55-client/options.mk
+++ b/databases/mysql55-client/options.mk
@@ -1,20 +1,14 @@
-# $NetBSD: options.mk,v 1.12 2016/08/04 10:09:46 adam Exp $
+# $NetBSD: options.mk,v 1.13 2017/05/03 12:37:01 mef Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mysql5
# ndb-cluster does not configure with cmake
-PKG_SUPPORTED_OPTIONS+= dtrace embedded-server ndb-cluster sphinx ssl
-PKG_SUGGESTED_OPTIONS+= embedded-server ssl
+PKG_SUPPORTED_OPTIONS+= dtrace embedded-server ndb-cluster sphinx
+PKG_SUGGESTED_OPTIONS+= embedded-server
.include "../../mk/bsd.options.mk"
-# Enable OpenSSL support
-.if !empty(PKG_OPTIONS:Mssl)
. include "../../security/openssl/buildlink3.mk"
-CMAKE_ARGS+= -DWITH_SSL=system
-.else
-CMAKE_ARGS+= -DWITH_SSL=no
-.endif
# Enable DTrace support
.if !empty(PKG_OPTIONS:Mdtrace)