summaryrefslogtreecommitdiff
path: root/app-crypt/adcli/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-01-08 12:15:59 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-01-08 12:15:59 +0000
commit6a57f9ee53dc794f3d47ea68f78d6ef76d00af47 (patch)
treedc9e574f3209abd88e91e2ee0d6093f4fe78e2d3 /app-crypt/adcli/files
parent268f9f01921ccb921b794d43092c5f29c1e96c56 (diff)
gentoo auto-resync : 08:01:2023 - 12:15:59
Diffstat (limited to 'app-crypt/adcli/files')
-rw-r--r--app-crypt/adcli/files/adcli-0.9.1-glibc-2.34-resolv.patch32
-rw-r--r--app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch21
2 files changed, 0 insertions, 53 deletions
diff --git a/app-crypt/adcli/files/adcli-0.9.1-glibc-2.34-resolv.patch b/app-crypt/adcli/files/adcli-0.9.1-glibc-2.34-resolv.patch
deleted file mode 100644
index 105a4c407bab..000000000000
--- a/app-crypt/adcli/files/adcli-0.9.1-glibc-2.34-resolv.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-https://gitlab.freedesktop.org/realmd/adcli/-/commit/e841ba7513f3f8b6393183d2dea9adcbf7ba2e44
-https://bugs.gentoo.org/820224
-
-From: Sumit Bose <sbose@redhat.com>
-Date: Wed, 28 Jul 2021 12:55:16 +0200
-Subject: [PATCH] configure: check for ns_get16 and ns_get32 as well
-
-With newer versions of glibc res_query() might ba already available in
-glibc with ns_get16() and ns_get32() still requires libresolv.
-
-Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1984891
---- a/configure.ac
-+++ b/configure.ac
-@@ -98,13 +98,15 @@ AC_SUBST(LDAP_CFLAGS)
- # -------------------------------------------------------------------
- # resolv
-
--AC_MSG_CHECKING(for which library has res_query)
-+AC_MSG_CHECKING([for which library has res_query, ns_get16 and ns_get32])
- for lib in "" "-lresolv"; do
- saved_LIBS="$LIBS"
- LIBS="$LIBS $lib"
- AC_LINK_IFELSE([
- AC_LANG_PROGRAM([#include <resolv.h>],
-- [res_query (0, 0, 0, 0, 0)])
-+ [res_query (0, 0, 0, 0, 0);
-+ ns_get32 (NULL);
-+ ns_get16 (NULL);])
- ],
- [ AC_MSG_RESULT(${lib:-libc}); have_res_query="yes"; break; ],
- [ LIBS="$saved_LIBS" ])
-GitLab
diff --git a/app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch b/app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch
deleted file mode 100644
index b901796d8d6c..000000000000
--- a/app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-https://bugs.gentoo.org/830325
-https://gitlab.freedesktop.org/realmd/adcli/-/merge_requests/47
-
-From: Henning Schild <henning@hennsch.de>
-Date: Tue, 11 Jan 2022 08:22:55 +0100
-Subject: [PATCH] library: include endian.h for le32toh
-
-upstream commit 938065a751c0876eb837a27f8c1443fc7d0d2551
-
-linking against musl libc we need to include that specifically, actually
-also according to "man 3 endian".
---- a/library/adutil.c
-+++ b/library/adutil.c
-@@ -29,6 +29,7 @@
-
- #include <assert.h>
- #include <ctype.h>
-+#include <endian.h>
- #include <errno.h>
- #include <stdio.h>
- #include <stdlib.h>