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 /client | |
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 'client')
-rw-r--r-- | client/CMakeLists.txt | 2 |
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) |