mirror of
https://git.freebsd.org/ports.git
synced 2025-06-15 09:40:35 -04:00
resulted in errors with libc++ 3.8.0, because it declares the allocators for several std::map declarations incorrectly. Fix this by sprinkling const in the right places. Approved by: mokhi64@gmail.com (maintainer) PR: 208525 MFH: 2016Q2
16 lines
489 B
Text
16 lines
489 B
Text
--- include/CMakeLists.txt.orig 2015-11-29 19:16:24 UTC
|
|
+++ include/CMakeLists.txt
|
|
@@ -68,11 +68,13 @@ SET(HEADERS
|
|
${HEADERS_GEN_CONFIGURE}
|
|
)
|
|
|
|
+IF(FALSE)
|
|
INSTALL(FILES ../libbinlogevents/export/binary_log_types.h DESTINATION ${INSTALL_INCLUDEDIR})
|
|
INSTALL(FILES ${HEADERS} DESTINATION ${INSTALL_INCLUDEDIR} COMPONENT Development)
|
|
INSTALL(DIRECTORY mysql/ DESTINATION ${INSTALL_INCLUDEDIR}/mysql COMPONENT Development
|
|
PATTERN "*.h"
|
|
PATTERN "psi_abi*" EXCLUDE
|
|
)
|
|
+ENDIF()
|
|
|
|
|