summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2021-08-04 15:46:13 -0400
committerMike Gilbert <floppym@gentoo.org>2021-08-04 15:46:13 -0400
commit26896413cb8cad59dc57772b67a663a08a8d7eac (patch)
tree1e78f714a86d28b4ba2d8bef1a9b03a5e5612e80 /dev-util/pkgconf
parentprofiles: last-rite dev-util/pkgconfig (diff)
downloadgentoo-26896413cb8cad59dc57772b67a663a08a8d7eac.tar.gz
gentoo-26896413cb8cad59dc57772b67a663a08a8d7eac.tar.bz2
gentoo-26896413cb8cad59dc57772b67a663a08a8d7eac.zip
dev-util/pkgconf: drop obsolete darwin patch
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'dev-util/pkgconf')
-rw-r--r--dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch24
-rw-r--r--dev-util/pkgconf/pkgconf-1.7.4.ebuild2
-rw-r--r--dev-util/pkgconf/pkgconf-1.8.0.ebuild2
3 files changed, 0 insertions, 28 deletions
diff --git a/dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch b/dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch
deleted file mode 100644
index f41de43b97c5..000000000000
--- a/dev-util/pkgconf/files/pkgconf-1.7.3-darwin9.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-darwin9 does not malloc on NULL resolved_path
-
-https://github.com/pkgconf/pkgconf/pull/208
-
---- a/libpkgconf/path.c
-+++ b/libpkgconf/path.c
-@@ -92,15 +92,11 @@
- return;
- if (S_ISLNK(st.st_mode))
- {
-- char *linkdest = realpath(path, NULL);
-+ char pathbuf[PATH_MAX];
-+ char *linkdest = realpath(path, pathbuf);
-
- if (linkdest != NULL && stat(linkdest, &st) == -1)
-- {
-- free(linkdest);
- return;
-- }
--
-- free(linkdest);
- }
- if (path_list_contains_entry(path, dirlist, &st))
- return;
diff --git a/dev-util/pkgconf/pkgconf-1.7.4.ebuild b/dev-util/pkgconf/pkgconf-1.7.4.ebuild
index 28f583d94f5f..edfc4c30bd49 100644
--- a/dev-util/pkgconf/pkgconf-1.7.4.ebuild
+++ b/dev-util/pkgconf/pkgconf-1.7.4.ebuild
@@ -40,8 +40,6 @@ MULTILIB_CHOST_TOOLS=(
src_prepare() {
default
- [[ ${CHOST} == *-darwin9 ]] && eapply "${FILESDIR}"/${PN}-1.7.3-darwin9.patch
-
[[ ${PV} == "9999" ]] && eautoreconf
if use pkg-config; then
MULTILIB_CHOST_TOOLS+=(
diff --git a/dev-util/pkgconf/pkgconf-1.8.0.ebuild b/dev-util/pkgconf/pkgconf-1.8.0.ebuild
index 5be8ccdbf798..257e865e259d 100644
--- a/dev-util/pkgconf/pkgconf-1.8.0.ebuild
+++ b/dev-util/pkgconf/pkgconf-1.8.0.ebuild
@@ -40,8 +40,6 @@ MULTILIB_CHOST_TOOLS=(
src_prepare() {
default
- [[ ${CHOST} == *-darwin9 ]] && eapply "${FILESDIR}"/${PN}-1.7.3-darwin9.patch
-
[[ ${PV} == "9999" ]] && eautoreconf
if use pkg-config; then
MULTILIB_CHOST_TOOLS+=(