From 1597b3d76bd82e58735bf6eca931945c26d14a86 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sun, 29 Aug 2021 23:19:42 +0200 Subject: disable bzip2, lzma, and lzo explicitly in debian release builds we don't build debian release builds with them anyway, but let's make it explicit, independently on what happens to be installed on the builder. --- cmake/build_configurations/mysql_release.cmake | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cmake') diff --git a/cmake/build_configurations/mysql_release.cmake b/cmake/build_configurations/mysql_release.cmake index c9c394b6d03..4ae15d4b139 100644 --- a/cmake/build_configurations/mysql_release.cmake +++ b/cmake/build_configurations/mysql_release.cmake @@ -110,6 +110,10 @@ ELSEIF(DEB) SET(WITH_LIBWRAP ON) SET(HAVE_EMBEDDED_PRIVILEGE_CONTROL ON) SET(WITH_JEMALLOC "yes" CACHE STRING "") + SET(WITH_INNODB_BZIP2 OFF CACHE STRING "") + SET(WITH_INNODB_LZMA OFF CACHE STRING "") + SET(WITH_INNODB_LZO OFF CACHE STRING "") + SET(WITH_ROCKSDB_BZip2 OFF CACHE STRING "") ELSE() SET(WITH_SSL bundled CACHE STRING "") SET(WITH_PCRE bundled CACHE STRING "") -- cgit v1.2.1