summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-01-09 03:11:13 +0000
committerSam James <sam@gentoo.org>2025-01-09 03:11:13 +0000
commit830d4e01455f365b9904fb86a4fac5ec23921614 (patch)
tree727067cce602841c66bab66f191bfff56a75ec6c /dev-db/mariadb-connector-c/files
parentprofiles/base: drop dev-perl/DBD-mysql[mariadb] stable-mask (diff)
downloadgentoo-830d4e01455f365b9904fb86a4fac5ec23921614.tar.gz
gentoo-830d4e01455f365b9904fb86a4fac5ec23921614.tar.bz2
gentoo-830d4e01455f365b9904fb86a4fac5ec23921614.zip
dev-db/mariadb-connector-c: drop 3.2.7, 3.3.4
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db/mariadb-connector-c/files')
-rw-r--r--dev-db/mariadb-connector-c/files/mariadb-connector-c-3.3.4-fix-building-without-gssapi.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/dev-db/mariadb-connector-c/files/mariadb-connector-c-3.3.4-fix-building-without-gssapi.patch b/dev-db/mariadb-connector-c/files/mariadb-connector-c-3.3.4-fix-building-without-gssapi.patch
deleted file mode 100644
index a76af28aabd4..000000000000
--- a/dev-db/mariadb-connector-c/files/mariadb-connector-c-3.3.4-fix-building-without-gssapi.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-# https://jira.mariadb.org/browse/CONC-637
-# https://github.com/mariadb-corporation/mariadb-connector-c/commit/4e2408c1cc298ada91b30683501c0c94a6621562
-diff --git a/plugins/auth/CMakeLists.txt b/plugins/auth/CMakeLists.txt
-index ed9be6f3..da0b58e4 100644
---- a/plugins/auth/CMakeLists.txt
-+++ b/plugins/auth/CMakeLists.txt
-@@ -120,7 +120,7 @@ IF(GSSAPI_SOURCES)
- IF(CMAKE_C_COMPILER_ID MATCHES "Clang")
- SET_SOURCE_FILES_PROPERTIES(${GSSAPI_SOURCES} PROPERTY COMPILE_FLAGS "-Wno-deprecated-declarations")
- ENDIF()
-- IF(have__Wl___as_needed)
-+ IF(have__Wl___as_needed AND TARGET auth_gssapi_client)
- SET_TARGET_PROPERTIES(auth_gssapi_client PROPERTIES LINK_FLAGS "-Wl,--as-needed")
- ENDIF()
- ENDIF()