summaryrefslogtreecommitdiff
path: root/packages/glibc-ports/2.13/0005-alpha-DEFAULT_STACK_PERMS.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2022-02-10 23:00:09 (GMT)
committerAlexey Neyman <stilor@att.net>2022-02-11 08:47:50 (GMT)
commit8d636658182a3e3f234e8ce032afc6562cd8dd01 (patch)
treef1440740a2fece4de1c3574a427b07dcddb0eecb /packages/glibc-ports/2.13/0005-alpha-DEFAULT_STACK_PERMS.patch
parent30fb23dd895f82e71f13cd8a8d6a90d165f5090b (diff)
glibc-ports: remove obsolete versions
The corresponding versions of glibc have been removed previously; kill their "ports" counterpart. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/glibc-ports/2.13/0005-alpha-DEFAULT_STACK_PERMS.patch')
-rw-r--r--packages/glibc-ports/2.13/0005-alpha-DEFAULT_STACK_PERMS.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/packages/glibc-ports/2.13/0005-alpha-DEFAULT_STACK_PERMS.patch b/packages/glibc-ports/2.13/0005-alpha-DEFAULT_STACK_PERMS.patch
deleted file mode 100644
index a5a9615..0000000
--- a/packages/glibc-ports/2.13/0005-alpha-DEFAULT_STACK_PERMS.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-2011-02-28 Aurelien Jarno <aurelien@aurel32.net>
-
- * sysdeps/alpha/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
-
----
- sysdeps/alpha/stackinfo.h | 6 ++++++
- 1 file changed, 6 insertions(+)
-
---- a/sysdeps/alpha/stackinfo.h
-+++ b/sysdeps/alpha/stackinfo.h
-@@ -22,7 +22,13 @@
- #ifndef _STACKINFO_H
- #define _STACKINFO_H 1
-
-+#include <elf.h>
-+
- /* On Alpha the stack grows down. */
- #define _STACK_GROWS_DOWN 1
-
-+/* Default to an executable stack. PF_X can be overridden if PT_GNU_STACK is
-+ * present, but it is presumed absent. */
-+#define DEFAULT_STACK_PERMS (PF_R|PF_W|PF_X)
-+
- #endif /* stackinfo.h */