diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-02-18 12:56:27 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-02-23 10:46:15 +0100 |
commit | ab2a9600a7b26cb6176e7fb62e029483fc821750 (patch) | |
tree | b9763e3db31d76eaf0b6e4a2cba2d84eff7852b3 /cmake/build_configurations | |
parent | bb54df6ec99d247302b6dffe12273f6896403dcd (diff) | |
download | mariadb-git-ab2a9600a7b26cb6176e7fb62e029483fc821750.tar.gz |
MDEV-9475 I can't finish my_install_db using binary tar distribution
to avoid run-time libjemalloc.so dependency
link binary tarballs with a static libjemalloc_pic.a
Diffstat (limited to 'cmake/build_configurations')
-rw-r--r-- | cmake/build_configurations/mysql_release.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/build_configurations/mysql_release.cmake b/cmake/build_configurations/mysql_release.cmake index 75ce57e45e0..ef9713e0556 100644 --- a/cmake/build_configurations/mysql_release.cmake +++ b/cmake/build_configurations/mysql_release.cmake @@ -94,6 +94,7 @@ ELSEIF(DEB) ELSE() SET(WITH_SSL bundled CACHE STRING "") SET(WITH_ZLIB bundled CACHE STRING "") + SET(WITH_JEMALLOC static CACHE STRING "") ENDIF() IF(NOT COMPILATION_COMMENT) |