diff options
author | Sergei Golubchik <serg@mariadb.org> | 2021-08-29 23:19:42 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2021-08-31 09:50:57 +0200 |
commit | 1597b3d76bd82e58735bf6eca931945c26d14a86 (patch) | |
tree | 07aa840d80a446144cbd96abb510e13499668a5d /cmake/build_configurations | |
parent | ceb40ef45b735f7e35aa87306b220a8493f4d754 (diff) | |
download | mariadb-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.
Diffstat (limited to 'cmake/build_configurations')
-rw-r--r-- | cmake/build_configurations/mysql_release.cmake | 4 |
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 "") |