mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Changes: - musl patch upstreamed, see [1-3] - mysql.info not present any more, see [4] - lz4 patch updated [1]dc6b9e2556[2] https://bugs.mysql.com/bug.php?id=110808 [3] https://github.com/mysql/mysql-server/pull/455 [4]18b2dd3ddfCloses: https://bugs.gentoo.org/893912 Closes: https://bugs.gentoo.org/900667 Closes: https://bugs.gentoo.org/759058 Closes: https://bugs.gentoo.org/882743 Signed-off-by: Tomáš Mózes <hydrapolic@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/36160 Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
24 lines
607 B
Diff
24 lines
607 B
Diff
diff --git a/utilities/CMakeLists.txt b/utilities/CMakeLists.txt
|
|
index da34524..96c7299 100644
|
|
--- a/utilities/CMakeLists.txt
|
|
+++ b/utilities/CMakeLists.txt
|
|
@@ -124,13 +124,11 @@ MYSQL_ADD_EXECUTABLE(perror
|
|
DEPENDENCIES GenError
|
|
LINK_LIBRARIES mysys
|
|
)
|
|
-IF(WITH_LZ4 STREQUAL "bundled")
|
|
- MYSQL_ADD_EXECUTABLE(lz4_decompress
|
|
- lz4_decompress.cc
|
|
- COMPONENT Server
|
|
- LINK_LIBRARIES ext::lz4 mysys
|
|
- )
|
|
-ENDIF()
|
|
+MYSQL_ADD_EXECUTABLE(lz4_decompress
|
|
+ lz4_decompress.cc
|
|
+ COMPONENT Server
|
|
+ LINK_LIBRARIES ext::lz4 mysys
|
|
+ )
|
|
|
|
MYSQL_ADD_EXECUTABLE(zlib_decompress
|
|
zlib_decompress.cc
|