ports/databases/mysql57-server/files/patch-include_CMakeLists.txt
Dimitry Andric a5741fb5a7 In the exp-run for bug 208158, building databases/mysql57-server
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
2016-04-07 22:23:19 +00:00

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()