Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
33ab30df
Commit
33ab30df
authored
Nov 19, 2015
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix tokudb compilation with bundled zlib
parent
d4017d49
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
storage/tokudb/CMakeLists.txt
storage/tokudb/CMakeLists.txt
+3
-3
storage/tokudb/ft-index/tools/tokuft_logprint.cc
storage/tokudb/ft-index/tools/tokuft_logprint.cc
+1
-0
No files found.
storage/tokudb/CMakeLists.txt
View file @
33ab30df
...
...
@@ -14,8 +14,7 @@ IF(NOT TOKUDB_OK)
ENDIF
()
SET
(
TOKUDB_SOURCES ha_tokudb.cc
)
MYSQL_ADD_PLUGIN
(
tokudb
${
TOKUDB_SOURCES
}
STORAGE_ENGINE MODULE_ONLY
LINK_LIBRARIES
${
ZLIB_LIBRARY
}
stdc++
)
MYSQL_ADD_PLUGIN
(
tokudb
${
TOKUDB_SOURCES
}
STORAGE_ENGINE MODULE_ONLY
)
IF
(
NOT TARGET tokudb
)
RETURN
()
...
...
@@ -85,7 +84,8 @@ INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}/ft-index)
INCLUDE_DIRECTORIES
(
${
CMAKE_CURRENT_BINARY_DIR
}
/ft-index/buildheader
)
INCLUDE_DIRECTORIES
(
${
CMAKE_CURRENT_BINARY_DIR
}
/ft-index/portability
)
TARGET_LINK_LIBRARIES
(
tokudb tokufractaltree_static tokuportability_static
)
TARGET_LINK_LIBRARIES
(
tokudb tokufractaltree_static tokuportability_static
${
ZLIB_LIBRARY
}
stdc++
)
SET
(
CMAKE_MODULE_LINKER_FLAGS_RELEASE
"
${
CMAKE_MODULE_LINKER_FLAGS_RELEASE
}
-flto -fuse-linker-plugin"
)
SET
(
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
"
${
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
}
-flto -fuse-linker-plugin"
)
...
...
storage/tokudb/ft-index/tools/tokuft_logprint.cc
View file @
33ab30df
...
...
@@ -91,6 +91,7 @@ PATENT RIGHTS GRANT:
/* Dump the log from stdin to stdout. */
#include <my_config.h>
#include "ft/log_header.h"
#include "ft/logger/logger.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment