diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-09-16 17:53:11 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-10-04 23:43:03 +0200 |
commit | 5eb0dbec8742e222e85389938d7965ddf71471a7 (patch) | |
tree | eba05e69932941f54ab7d07f638db2fe19499d5f /app-admin/augeas | |
parent | media-plugins/gst-plugins-srt: keyword 1.22.3 for ~arm64 (diff) | |
download | gentoo-5eb0dbec8742e222e85389938d7965ddf71471a7.tar.gz gentoo-5eb0dbec8742e222e85389938d7965ddf71471a7.tar.bz2 gentoo-5eb0dbec8742e222e85389938d7965ddf71471a7.zip |
app-admin/augeas: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32835
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-admin/augeas')
-rw-r--r-- | app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch b/app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch deleted file mode 100644 index 07cda4c4ae02..000000000000 --- a/app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch +++ /dev/null @@ -1,22 +0,0 @@ -https://github.com/hercules-team/augeas/pull/791 - -From 46ecd3542820604603ab4f046f9fb3e6195f60aa Mon Sep 17 00:00:00 2001 -From: Dimitry Andric <dimitry@andric.com> -Date: Thu, 8 Dec 2022 13:08:53 +0100 -Subject: [PATCH] Only use GNU specific strerror_r() API when __GLIBC__ is - defined. - ---- a/src/internal.c -+++ b/src/internal.c -@@ -431,8 +431,8 @@ char *cleanpath(char *path) { - - const char *xstrerror(int errnum, char *buf, size_t len) { - #ifdef HAVE_STRERROR_R --# ifdef __USE_GNU -- /* Annoying linux specific API contract */ -+# if defined(__USE_GNU) && defined(__GLIBC__) -+ /* Annoying GNU specific API contract */ - return strerror_r(errnum, buf, len); - # else - strerror_r(errnum, buf, len); - |