summaryrefslogtreecommitdiff
path: root/package/findutils/patches/patch-gnulib_lib_freadahead_h
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-01-16 18:12:36 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-01-16 18:12:36 +0100
commitc9fc73c8354c8f9a91943e07e1958ebb2cb1f4b4 (patch)
treeb231676415068adf4dd916d82d80c643013d4cfb /package/findutils/patches/patch-gnulib_lib_freadahead_h
parent329c31246e8aea3d3a1890ea839776d707b4617f (diff)
findutils: update to latest, musl patches no longer required, as upstream updated included gnulib copy
Diffstat (limited to 'package/findutils/patches/patch-gnulib_lib_freadahead_h')
-rw-r--r--package/findutils/patches/patch-gnulib_lib_freadahead_h23
1 files changed, 0 insertions, 23 deletions
diff --git a/package/findutils/patches/patch-gnulib_lib_freadahead_h b/package/findutils/patches/patch-gnulib_lib_freadahead_h
deleted file mode 100644
index 6cd605e41..000000000
--- a/package/findutils/patches/patch-gnulib_lib_freadahead_h
+++ /dev/null
@@ -1,23 +0,0 @@
---- findutils-4.4.2.orig/gnulib/lib/freadahead.h Sun May 10 23:23:57 2009
-+++ findutils-4.4.2/gnulib/lib/freadahead.h Sat May 24 15:13:05 2014
-@@ -29,7 +29,20 @@ extern "C" {
-
- STREAM must not be wide-character oriented. */
-
-+#if HAVE___FREADAHEAD || (defined(__linux__) && !defined(__GLIBC__) && !defined(__UCLIBC__)) /* musl libc */
-+
-+#ifndef HAVE___FREADAHEAD
-+#define HAVE___FREADAHEAD 1
-+#endif
-+
-+# include <stdio_ext.h>
-+# define freadahead(stream) __freadahead (stream)
-+
-+#else
-+
- extern size_t freadahead (FILE *stream);
-+
-+#endif
-
- #ifdef __cplusplus
- }