-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes various reliability problems and CVE-2024-21096. Mess around with the patches, since apparently some quite invasive build system changes are being committed to these old LTS branches.
- Loading branch information
Showing
7 changed files
with
82 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 7 additions & 5 deletions
12
databases/mariadb105-client/patches/patch-storage_columnstore_CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
$NetBSD: patch-storage_columnstore_CMakeLists.txt,v 1.1 2023/03/07 10:28:02 jperkin Exp $ | ||
$NetBSD: patch-storage_columnstore_CMakeLists.txt,v 1.2 2024/05/20 15:53:42 nia Exp $ | ||
|
||
Support SunOS. | ||
|
||
--- storage/columnstore/CMakeLists.txt.orig 2022-11-02 12:37:21.000000000 +0000 | ||
--- storage/columnstore/CMakeLists.txt.orig 2024-05-08 18:05:55.000000000 +0000 | ||
+++ storage/columnstore/CMakeLists.txt | ||
@@ -12,6 +12,7 @@ macro(APPEND_FOR_CPACK V) | ||
@@ -12,7 +12,8 @@ macro(APPEND_FOR_CPACK V) | ||
endmacro() | ||
|
||
IF(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" OR | ||
-CMAKE_SYSTEM_PROCESSOR STREQUAL "amd64") | ||
+ CMAKE_SYSTEM_NAME STREQUAL "SunOS" OR | ||
CMAKE_SYSTEM_PROCESSOR STREQUAL "amd64") | ||
add_subdirectory(columnstore) | ||
+ CMAKE_SYSTEM_PROCESSOR STREQUAL "amd64") | ||
|
||
# https://jira.mariadb.org/browse/MCOL-5611 | ||
FIND_PACKAGE(Boost 1.53 COMPONENTS system filesystem thread regex date_time chrono atomic) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters