8cea35247c
------------------------------------------------------------------- (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 ?)
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
# $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
|
|
PKG_SUGGESTED_OPTIONS+= embedded-server
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
|
|
# Enable DTrace support
|
|
.if !empty(PKG_OPTIONS:Mdtrace)
|
|
CMAKE_ARGS+= -DENABLE_DTRACE=ON
|
|
.else
|
|
CMAKE_ARGS+= -DENABLE_DTRACE=OFF
|
|
.endif
|
|
|
|
# Enable Sphinx SE support
|
|
# http://sphinxsearch.com/docs/current.html#sphinxse-overview
|
|
PLIST_VARS+= sphinx
|
|
.if !empty(PKG_OPTIONS:Msphinx) || make(distinfo) || make(makesum) || make(mdi)
|
|
SPHINX_VER= 2.2.11
|
|
DISTFILES= ${DEFAULT_DISTFILES} sphinx-${SPHINX_VER}-release${EXTRACT_SUFX}
|
|
SITES.sphinx-2.2.11-release.tar.gz= http://sphinxsearch.com/files/
|
|
.if !empty(PKGPATH:Mdatabases/mysql55-server)
|
|
MESSAGE_SRC= ${PKGDIR}/MESSAGE ${PKGDIR}/MESSAGE.sphinx
|
|
.endif
|
|
PLIST.sphinx= yes
|
|
|
|
post-extract:
|
|
${CP} -R ${WRKDIR}/sphinx-${SPHINX_VER}-release/mysqlse ${WRKSRC}/storage/sphinx
|
|
.endif
|