diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-01-29 00:55:59 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-01-29 00:55:59 +0100 |
commit | 1eb911922a7e818a6f314a68c0561bba008e6efd (patch) | |
tree | 9b647e44195a0a0876b40cbf5fa42dca0641179f /main/audit/0001-auditctl-include-headers-to-make-build-work-with-mus.patch | |
parent | d420552f02af2ad6a15cf3a70b76bf86b222c07e (diff) | |
download | aports-1eb911922a7e818a6f314a68c0561bba008e6efd.tar.bz2 aports-1eb911922a7e818a6f314a68c0561bba008e6efd.tar.xz |
Remove stale patches in main/
Diffstat (limited to 'main/audit/0001-auditctl-include-headers-to-make-build-work-with-mus.patch')
-rw-r--r-- | main/audit/0001-auditctl-include-headers-to-make-build-work-with-mus.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/main/audit/0001-auditctl-include-headers-to-make-build-work-with-mus.patch b/main/audit/0001-auditctl-include-headers-to-make-build-work-with-mus.patch deleted file mode 100644 index 94614afce4..0000000000 --- a/main/audit/0001-auditctl-include-headers-to-make-build-work-with-mus.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 49ed6ac0e07bc30231ce53ca5a5e150fccd4d860 Mon Sep 17 00:00:00 2001 -From: Tycho Andersen <tycho@docker.com> -Date: Mon, 13 Mar 2017 22:44:19 +0000 -Subject: [PATCH 1/4] auditctl: include headers to make build work with musl - -technically select is defined in sys/select.h, and `struct timeval` -requires sys/time.h - -Signed-off-by: Tycho Andersen <tycho@docker.com> ---- - src/auditctl.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/src/auditctl.c b/src/auditctl.c -index 04765f4..07701f9 100644 ---- a/src/auditctl.c -+++ b/src/auditctl.c -@@ -32,6 +32,8 @@ - #include <ctype.h> - #include <unistd.h> - #include <sys/utsname.h> -+#include <sys/select.h> -+#include <sys/time.h> - #include <fcntl.h> - #include <errno.h> - #include <libgen.h> /* For basename */ --- -2.13.1 - |