summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2021-08-29 23:19:42 +0200
committerSergei Golubchik <serg@mariadb.org>2021-08-31 09:50:57 +0200
commit1597b3d76bd82e58735bf6eca931945c26d14a86 (patch)
tree07aa840d80a446144cbd96abb510e13499668a5d
parentceb40ef45b735f7e35aa87306b220a8493f4d754 (diff)
downloadmariadb-git-1597b3d76bd82e58735bf6eca931945c26d14a86.tar.gz
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.
-rw-r--r--cmake/build_configurations/mysql_release.cmake4
1 files changed, 4 insertions, 0 deletions
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 "")