This update (released on Jan 21st) includes:
Bugs Fixed:
Important Change: Fix importing a dump from a MySQL 5.7 server 8.0 failure.
(ER_WRONG_VALUE_FOR_VAR, when an unsupported [by 8.0] SQL mode was used).
The behavior of the server in such circumstances now depends on the setting of the
`pseudo_slave_mode` system variable.
If this is false, the server rejects the mode setting with ER_UNSUPPORTED_SQL_MODE.
Otherwise, server just gives a warning. (Bug #90337, Bug #27828236).
InnoDB: Properly initialize the static thread-local 'tables' variable in
the TempTable storage engine (on Solaris X86) was not properly initialized.
(Bug #28987365)
InnoDB: Fix incorrect lock order caused a deadlock when one thread attempted to
drop a table while another created an encrypted tablespace. (Bug #28774259)
More info from upstream:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-14.html
While here, Adapt some local patches with new upstream changes.
PR: 234984
Sponsored by: The FreeBSD Foundation
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
# Created by: "Mahdi Mokhtari <mokhi64@gmail.com>"
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mysql
|
|
PORTREVISION= 0
|
|
PKGNAMESUFFIX= 80-client
|
|
|
|
COMMENT= Multithreaded SQL database (client)
|
|
|
|
LICENSE+= LGPL21
|
|
|
|
BROKEN_powerpc64= does not build: reports unsupported compiler
|
|
BROKEN_sparc64= does not build: reports unsupported compiler
|
|
|
|
MASTERDIR= ${.CURDIR}/../mysql80-server
|
|
|
|
PKGMESSAGE= ${.CURDIR}/pkg-message
|
|
PATCHDIR= ${.CURDIR}/files
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
CONFLICTS_INSTALL= mysql8[1-9]-client-* \
|
|
mysql[0-79][0-9]-client-* \
|
|
mariadb[0-9][0-9]-client-* \
|
|
percona[0-9][0-9]-client-*
|
|
|
|
CMAKE_ARGS+= -DWITHOUT_SERVER=1 -DINSTALL_SUPPORTFILESDIR=0
|
|
|
|
USE_LDCONFIG+= ${PREFIX}/lib/mysql
|
|
|
|
MMAN1= comp_err.1 msql2mysql.1 mysql.1 mysql_config.1 mysql_config_editor.1 mysql_find_rows.1 \
|
|
mysql_waitpid.1 mysqlaccess.1 mysqladmin.1 mysqlbinlog.1 \
|
|
mysqlcheck.1 mysqldump.1 mysqlimport.1 mysqlshow.1 mysqlslap.1
|
|
|
|
CLIENT_ONLY= yes
|
|
|
|
# issue 166367: adding symlinks for back-compatibility with ${lib}_r
|
|
post-install:
|
|
@${LN} -s libmysqlclient.a ${STAGEDIR}${PREFIX}/lib/mysql/libmysqlclient_r.a
|
|
@${LN} -s libmysqlclient.so ${STAGEDIR}${PREFIX}/lib/mysql/libmysqlclient_r.so
|
|
@${LN} -s libmysqlclient.so.21 ${STAGEDIR}${PREFIX}/lib/mysql/libmysqlclient_r.so.21
|
|
|
|
.include "${MASTERDIR}/Makefile"
|