summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2019-01-23 18:50:47 +0100
committerSergei Golubchik <serg@mariadb.org>2019-01-24 10:34:05 +0100
commitedeba0c8733409865c3abcab881af0d48b7be94f (patch)
treeb897406c5b22162353deef87d044113f9f3ec7a9 /client
parenta0f3b9f94f3094ccb9ce75c53b25d36c4c78e922 (diff)
downloadmariadb-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 'client')
-rw-r--r--client/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt
index c75abd4956d..c760a9dbf14 100644
--- a/client/CMakeLists.txt
+++ b/client/CMakeLists.txt
@@ -41,7 +41,7 @@ ENDIF(UNIX)
MYSQL_ADD_EXECUTABLE(mysqltest mysqltest.cc COMPONENT Test)
SET_SOURCE_FILES_PROPERTIES(mysqltest.cc PROPERTIES COMPILE_FLAGS "-DTHREADS")
-TARGET_LINK_LIBRARIES(mysqltest mysqlclient pcre pcreposix)
+TARGET_LINK_LIBRARIES(mysqltest mysqlclient pcreposix pcre)
SET_TARGET_PROPERTIES(mysqltest PROPERTIES ENABLE_EXPORTS TRUE)