summaryrefslogtreecommitdiff
path: root/dev-db/mysql-connector-c++/files/mysql-connector-c++-1.1.11-fix-cpp-linking.patch
blob: 4b8a4a9830960728114ce8e19f4c0c1024d60c1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
https://bugs.mysql.com/bug.php?id=90727

--- a/FindMySQL.cmake
+++ b/FindMySQL.cmake
@@ -700,8 +700,10 @@ endif()
 
 # For dynamic linking use the built-in sys and strings
 if(NOT MYSQLCLIENT_STATIC_LINKING)
+IF(CMAKE_SYSTEM_NAME MATCHES "SunOS")
    list(APPEND SYS_LIBRARIES "mysql_sys")
    list(APPEND SYS_LIBRARIES "mysql_strings")
+endif()
    list(APPEND SYS_LIBRARIES ${MYSQL_LIBRARIES})
    SET(MYSQL_LIBRARIES ${SYS_LIBRARIES})