summarylogtreecommitdiffstats
path: root/issue189.patch
diff options
context:
space:
mode:
authorlilac2021-09-04 06:01:39 +0800
committerlilac2021-09-04 06:01:39 +0800
commit53d2436980ea7858e2ca4400775c6997ccfcae28 (patch)
treea512e3d04ac008d19826f9005e1fb78bab221935 /issue189.patch
parentbd18c2552756d525ad6b4acb52a740cfc7132b10 (diff)
downloadaur-53d2436980ea7858e2ca4400775c6997ccfcae28.tar.gz
[lilac] updated to 5.14-2
Diffstat (limited to 'issue189.patch')
-rw-r--r--issue189.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/issue189.patch b/issue189.patch
deleted file mode 100644
index 6802909b6052..000000000000
--- a/issue189.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From d2b1a5d79476f1df2adc1465ac53eefb85a52f50 Mon Sep 17 00:00:00 2001
-From: "Dmitry V. Levin" <ldv@strace.io>
-Date: Wed, 21 Jul 2021 08:00:00 +0000
-Subject: [PATCH] prctl: fix build using bionic libc
-
-* src/prctl.c [__ANDROID__ && !PR_SET_VMA] (PR_SET_VMA): Define.
-* NEWS: Mention this.
-
-Resolves: https://github.com/strace/strace/issues/189
----
- NEWS | 1 +
- src/prctl.c | 6 ++++++
- 2 files changed, 7 insertions(+)
-
-diff --git a/src/prctl.c b/src/prctl.c
-index 62e79510e..6b645d42b 100644
---- a/src/prctl.c
-+++ b/src/prctl.c
-@@ -13,6 +13,12 @@
-
- #include <linux/prctl.h>
-
-+#ifdef __ANDROID__
-+# ifndef PR_SET_VMA
-+# define PR_SET_VMA 0x53564d41 /* "SVMA" */
-+# endif
-+#endif
-+
- #include "xstring.h"
-
- #include "xlat/prctl_options.h"