mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
29 lines
997 B
Text
29 lines
997 B
Text
--- libmysql/CMakeLists.txt.orig 2018-01-23 20:34:50.742425000 +0200
|
|
+++ libmysql/CMakeLists.txt 2018-01-23 20:36:13.066280000 +0200
|
|
@@ -235,7 +235,7 @@
|
|
ADD_SUBDIRECTORY(authentication_ldap)
|
|
|
|
# Merge several convenience libraries into one big mysqlclient
|
|
-MERGE_CONVENIENCE_LIBRARIES(mysqlclient ${LIBS} COMPONENT Development)
|
|
+MERGE_CONVENIENCE_LIBRARIES(mysqlclient ${LIBS} COMPONENT Development SKIP_INSTALL)
|
|
|
|
# Visual Studio users need debug static library for debug projects
|
|
IF(MSVC)
|
|
@@ -271,7 +271,8 @@
|
|
# and link them together into shared library.
|
|
MERGE_LIBRARIES_SHARED(libmysql ${LIBS}
|
|
EXPORTS ${CLIENT_API_FUNCTIONS} ${CLIENT_API_FUNCTIONS_UNDOCUMENTED}
|
|
- COMPONENT SharedLibraries)
|
|
+ COMPONENT SharedLibraries SKIP_INSTALL)
|
|
+ IF(FALSE)
|
|
IF(UNIX)
|
|
# libtool compatability
|
|
IF(CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR APPLE)
|
|
@@ -316,6 +317,7 @@
|
|
SET_TARGET_PROPERTIES(libmysql PROPERTIES CLEAN_DIRECT_OUTPUT 1)
|
|
|
|
ENDIF()
|
|
+ ENDIF()
|
|
ENDIF()
|
|
|
|
#
|