pkgsrc/databases/mariadb55-client/options.mk
fhajny ca3632ed90 Update databases/mariadb55* to 5.5.57.
MariaDB 5.5.57
- Bugfixes and updates, including from MySQL 5.5.57.
- Fixes for the following security vulnerabilities:
  - CVE-2017-3636
  - CVE-2017-3641
  - CVE-2017-3653

MariaDB 5.5.56
- Bugfixes and updates, including from MySQL 5.5.56.

MariaDB 5.5.55
- Bugfixes and updates, including from MySQL 5.5.55.
- MDEV-11027: better InnoDB crash recovery progress reporting
- MDEV-11520: improvements to how InnoDB data files are extended
- MDEV-6143: the various MariaDB Linux binary tarballs will now untar
  to directories that match their filename
- Fixes for the following security vulnerabilities:
  - CVE-2017-3302
  - CVE-2017-3313
  - CVE-2017-3308
  - CVE-2017-3309
  - CVE-2017-3453
  - CVE-2017-3456
  - CVE-2017-3464

MariaDB 5.5.54
- Bugfixes and updates, including from MySQL 5.5.54.
- HeidiSQL updated to 9.4
- Fixes for the following security vulnerabilities:
  - CVE-2016-6664
  - CVE-2017-3238
  - CVE-2017-3243
  - CVE-2017-3244
  - CVE-2017-3258
  - CVE-2017-3265
  - CVE-2017-3291
  - CVE-2017-3312
  - CVE-2017-3317
  - CVE-2017-3318

MariaDB 5.5.53
- Bugfixes and updates, including from MySQL 5.5.53.
- XtraDB updated to 5.5.52-38.3
- Fixes for the following security vulnerabilities:
  - CVE-2016-7440
  - CVE-2016-5584
  - CVE-2016-5483 (re-issued later as CVE-2017-3600)
  - CVE-2017-3651
2017-08-08 11:23:38 +00:00

44 lines
1.3 KiB
Makefile

# $NetBSD: options.mk,v 1.4 2017/08/08 11:23:38 fhajny Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mariadb55
# ndb-cluster does not configure with cmake
PKG_SUPPORTED_OPTIONS+= dtrace embedded-server ndb-cluster sphinx 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"
CMAKE_ARGS+= -DWITH_SSL=system
.else
CMAKE_ARGS+= -DWITH_SSL=no
.endif
## This doesn't seem to build at all currently
# Enable DTrace support
PLIST_VARS+= dtrace
## This doesn't seem to build at all currently
## .if !empty(PKG_OPTIONS:Mdtrace)
## CMAKE_ARGS+= -DENABLE_DTRACE=ON
## PLIST.dtrace= yes
## .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-${SPHINX_VER}-release.tar.gz= http://sphinxsearch.com/files/
.if !empty(PKGPATH:Mdatabases/mariadb55-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