aboutsummaryrefslogtreecommitdiffstats
path: root/main/libbsd/musl-fixes.patch
diff options
context:
space:
mode:
authorTuan M. Hoang <tmhoang@flatglobe.org>2017-04-25 18:48:01 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2017-04-25 19:04:17 +0000
commit1eba7932edc2dcb0d601a65eab0c7b9af7866c2a (patch)
tree0dd98e858bc5a7bb1d18406722955b9277b2d958 /main/libbsd/musl-fixes.patch
parenteead5f8364feaad02302f551320d0e5eb0cad811 (diff)
downloadaports-1eba7932edc2dcb0d601a65eab0c7b9af7866c2a.tar.bz2
aports-1eba7932edc2dcb0d601a65eab0c7b9af7866c2a.tar.xz
main/libbsd: fix a.out.h bug
Ref https://git.yoctoproject.org/cgit.cgi/poky/tree/meta/recipes-support/libbsd/libbsd https://patchwork.openembedded.org/patch/133637/
Diffstat (limited to 'main/libbsd/musl-fixes.patch')
-rw-r--r--main/libbsd/musl-fixes.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/main/libbsd/musl-fixes.patch b/main/libbsd/musl-fixes.patch
deleted file mode 100644
index d07f18cb1b..0000000000
--- a/main/libbsd/musl-fixes.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- libbsd-0.8.3.orig/include/bsd/nlist.h
-+++ libbsd-0.8.3/include/bsd/nlist.h
-@@ -28,7 +28,7 @@
- #define LIBBSD_NLIST_H
-
- #include <sys/cdefs.h>
--#include <a.out.h>
-+#include <linux/a.out.h>
-
- __BEGIN_DECLS
- extern int nlist(const char *filename, struct nlist *list);
---- libbsd-0.8.3.orig/src/funopen.c
-+++ libbsd-0.8.3/src/funopen.c
-@@ -138,5 +138,4 @@
- return fopencookie(cookiewrap, mode, funcswrap);
- }
- #else
--#error "Function funopen() needs to be ported."
- #endif
---- libbsd-0.8.3.orig/src/nlist.c
-+++ libbsd-0.8.3/src/nlist.c
-@@ -40,7 +40,7 @@
-
- #include <errno.h>
- #include <fcntl.h>
--#include <a.out.h>
-+#include <linux/a.out.h>
- #include <stdio.h>
- #include <string.h>
- #include <unistd.h>