diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-04-07 22:23:19 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-04-07 22:23:19 +0000 |
commit | a5741fb5a79634ec1e40a5de18ed077ddb507fd7 (patch) | |
tree | 4555904c7d560eea1dcfe7b151969476d5341198 /databases/mysql57-server/files/patch-include_CMakeLists.txt | |
parent | Update to 4.1.0 (diff) |
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
Diffstat (limited to 'databases/mysql57-server/files/patch-include_CMakeLists.txt')
-rw-r--r-- | databases/mysql57-server/files/patch-include_CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/databases/mysql57-server/files/patch-include_CMakeLists.txt b/databases/mysql57-server/files/patch-include_CMakeLists.txt index 860024bd0b13..a68196b7e221 100644 --- a/databases/mysql57-server/files/patch-include_CMakeLists.txt +++ b/databases/mysql57-server/files/patch-include_CMakeLists.txt @@ -1,8 +1,9 @@ --- include/CMakeLists.txt.orig 2015-11-29 19:16:24 UTC +++ include/CMakeLists.txt -@@ -69,10 +69,12 @@ SET(HEADERS +@@ -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) |