aboutsummaryrefslogtreecommitdiffstats
path: root/main/findutils/fix-gnulib-freadahead.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/findutils/fix-gnulib-freadahead.patch')
-rw-r--r--main/findutils/fix-gnulib-freadahead.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/main/findutils/fix-gnulib-freadahead.patch b/main/findutils/fix-gnulib-freadahead.patch
deleted file mode 100644
index adcfdd4186..0000000000
--- a/main/findutils/fix-gnulib-freadahead.patch
+++ /dev/null
@@ -1,38 +0,0 @@
---- findutils-4.4.2.orig/gnulib/lib/freadahead.c
-+++ findutils-4.4.2/gnulib/lib/freadahead.c
-@@ -19,6 +19,7 @@
- /* Specification. */
- #include "freadahead.h"
-
-+#ifndef HAVE___FREADAHEAD
- size_t
- freadahead (FILE *fp)
- {
-@@ -64,3 +65,4 @@
- #error "Please port gnulib freadahead.c to your platform! Look at the definition of fflush, fread on your system, then report this to bug-gnulib."
- #endif
- }
-+#endif
---- findutils-4.4.2.orig/gnulib/lib/freadahead.h
-+++ findutils-4.4.2/gnulib/lib/freadahead.h
-@@ -29,7 +29,20 @@
-
- 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
- }