summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/elfutils/files/elfutils-0.118-glibc-hacks.patch')
-rw-r--r--dev-libs/elfutils/files/elfutils-0.118-glibc-hacks.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/dev-libs/elfutils/files/elfutils-0.118-glibc-hacks.patch b/dev-libs/elfutils/files/elfutils-0.118-glibc-hacks.patch
deleted file mode 100644
index 829a3f61f5c0..000000000000
--- a/dev-libs/elfutils/files/elfutils-0.118-glibc-hacks.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-http://bugs.gentoo.org/130121#c8
-
---- src/strings.c
-+++ src/strings.c
-@@ -480,6 +480,10 @@
- if (mem != MAP_FAILED)
- {
- /* We will go through the mapping sequentially. */
-+/* hack for old glibc systems */
-+#ifndef POSIX_MADV_SEQUENTIAL
-+# define POSIX_MADV_SEQUENTIAL 2
-+#endif
- (void) posix_madvise (mem, map_size, POSIX_MADV_SEQUENTIAL);
- break;
- }