diff options
author | Sergei Golubchik <serg@mariadb.org> | 2019-01-23 18:50:47 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2019-01-24 10:34:05 +0100 |
commit | edeba0c8733409865c3abcab881af0d48b7be94f (patch) | |
tree | b897406c5b22162353deef87d044113f9f3ec7a9 /libmysqld/examples | |
parent | a0f3b9f94f3094ccb9ce75c53b25d36c4c78e922 (diff) | |
download | mariadb-git-edeba0c8733409865c3abcab881af0d48b7be94f.tar.gz |
MDEV-17868 mysqltest fails to link with system PCRE libraries
pcre needs symbols from pcreposix
(but this is only an issue when linking with system static libraries)
Diffstat (limited to 'libmysqld/examples')
-rw-r--r-- | libmysqld/examples/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/examples/CMakeLists.txt b/libmysqld/examples/CMakeLists.txt index d47638ad2f9..1eb07a2adf8 100644 --- a/libmysqld/examples/CMakeLists.txt +++ b/libmysqld/examples/CMakeLists.txt @@ -34,7 +34,7 @@ ENDIF(UNIX) MYSQL_ADD_EXECUTABLE(mysqltest_embedded ../../client/mysqltest.cc COMPONENT Test) -TARGET_LINK_LIBRARIES(mysqltest_embedded mysqlserver pcre pcreposix) +TARGET_LINK_LIBRARIES(mysqltest_embedded mysqlserver pcreposix pcre) IF(CMAKE_GENERATOR MATCHES "Xcode") # It does not seem possible to tell Xcode the resulting target might need |