mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -04:00
This update fixes several issues including CVEs. Bug-fixes: - Return better error messages for OpenSSL errors - Incorrect copying of an integer value by X Plugin caused an error relating to misaligned memory access Improvement: - Important Change: X Protocol now provides a connection pooling option Upstream notes: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-13 While here, fix the build with GCC-based architectures too (ported from fix on MySQL57) Sponsored by: The FreeBSD Foundation
18 lines
442 B
Text
18 lines
442 B
Text
--- plugin/x/CMakeLists.txt.orig 2018-04-08 06:44:49 UTC
|
|
+++ plugin/x/CMakeLists.txt
|
|
@@ -89,12 +89,15 @@ INCLUDE_DIRECTORIES(
|
|
${MYSQLX_GENERATE_DIR}
|
|
${MYSQLX_PROTOCOL_INCLUDE_DIR}
|
|
${MYSQLX_CLIENT_INCLUDE_DIR}
|
|
+ ${BOOST_INCLUDE_DIR}
|
|
)
|
|
|
|
INCLUDE_DIRECTORIES(SYSTEM
|
|
${PROTOBUF_INCLUDE_DIRS}
|
|
${LIBEVENT_INCLUDE_DIRS}
|
|
${ICU_INCLUDE_DIRS}
|
|
+ ${SSL_INCLUDE_DIRS}
|
|
+ ${ZLIB_INCLUDE_DIR}
|
|
)
|
|
|
|
SET(MYSQLX_PROTBUF_AND_PROTOCOL_LIB
|