Skip to content

Commit

Permalink
Fix broken cmake -DBUILD_CONFIG=mysql_release on Windows.
Browse files Browse the repository at this point in the history
mysql_release.cmake set WITH_JEMALLOC=static, which makes windows
builds fail since there is no jemalloc either static or shared there
  • Loading branch information
vaintroub committed Dec 14, 2016
1 parent d93bbca commit c13b501
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmake/build_configurations/mysql_release.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ IF(FEATURE_SET)
ENDIF()

OPTION(ENABLED_LOCAL_INFILE "" ON)
IF(RPM)
IF(WIN32)
ELSEIF(RPM)
SET(WITH_SSL system CACHE STRING "")
SET(WITH_ZLIB system CACHE STRING "")
ELSEIF(DEB)
Expand Down

0 comments on commit c13b501

Please sign in to comment.