Commit c13b5011 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fix broken cmake -DBUILD_CONFIG=mysql_release on Windows.

mysql_release.cmake set WITH_JEMALLOC=static, which makes windows
builds fail since there is no jemalloc either static or shared there
parent d93bbcad
...@@ -83,7 +83,8 @@ IF(FEATURE_SET) ...@@ -83,7 +83,8 @@ IF(FEATURE_SET)
ENDIF() ENDIF()
OPTION(ENABLED_LOCAL_INFILE "" ON) OPTION(ENABLED_LOCAL_INFILE "" ON)
IF(RPM) IF(WIN32)
ELSEIF(RPM)
SET(WITH_SSL system CACHE STRING "") SET(WITH_SSL system CACHE STRING "")
SET(WITH_ZLIB system CACHE STRING "") SET(WITH_ZLIB system CACHE STRING "")
ELSEIF(DEB) ELSEIF(DEB)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment