415c6777ce
Security Notes -------------- * Incompatible Change: For STANDALONE and WIN builds, the default secure_file_priv value has changed from the empty string to NULL. This is a secure-by-default setting because it disables import and export operations. To permit those operations, set secure_file_priv to the path name of the directory to use for those operations. * The linked OpenSSL library for the MySQL Commercial Server has been updated to version 1.0.1u. For a description of issues fixed in this version, see http://www.openssl.org/news/vulnerabilities.html. This change does not affect the Oracle-produced MySQL Community build of MySQL Server, which uses the yaSSL library instead. Functionality Added or Changed ------------------------------ * yaSSL was upgraded to version 2.4.2. This upgrade corrects issues with: Potential AES side channel leaks; DSA padding for unusual sizes; the SSL_CTX_load_verify_locations() OpenSSL compatibility function failing to handle long path directory names.
23 lines
738 B
Makefile
23 lines
738 B
Makefile
# $NetBSD: Makefile,v 1.3 2016/10/14 19:28:28 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-client-/}
|
|
COMMENT= MySQL 5, a free SQL database (client)
|
|
|
|
CONFLICTS= mysql3-client-[0-9]*
|
|
|
|
.include "Makefile.common"
|
|
|
|
CMAKE_ARGS+= -DWITHOUT_SERVER=ON
|
|
UNWRAP_FILES+= scripts/mysql_config
|
|
INFO_FILES= yes
|
|
INSTALL_DIRS+= client include libmysql man scripts testclients
|
|
|
|
# Replace manual pages which only include other ones with a symbolic link
|
|
# It is for manual compression is activated or mandoc(1) is used.
|
|
post-install:
|
|
.for mf in mysql_client_test_embedded.1 mysqltest_embedded.1
|
|
${RM} -f ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/${mf}
|
|
${LN} -s ${mf:S/_embedded//} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/${mf}
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|