29 lines
1.4 KiB
Diff
29 lines
1.4 KiB
Diff
|
Index: idutils-4.6/lib/fseeko.c
|
||
|
===================================================================
|
||
|
--- idutils-4.6.orig/lib/fseeko.c
|
||
|
+++ idutils-4.6/lib/fseeko.c
|
||
|
@@ -40,7 +40,8 @@ fseeko (FILE *fp, off_t offset, int when
|
||
|
#endif
|
||
|
|
||
|
/* These tests are based on fpurge.c. */
|
||
|
-#if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */
|
||
|
+#if defined _IO_EOF_SEEN || defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1
|
||
|
+ /* GNU libc, BeOS, Haiku, Linux libc5 */
|
||
|
if (fp->_IO_read_end == fp->_IO_read_ptr
|
||
|
&& fp->_IO_write_ptr == fp->_IO_write_base
|
||
|
&& fp->_IO_save_base == NULL)
|
||
|
Index: idutils-4.6/lib/fseterr.c
|
||
|
===================================================================
|
||
|
--- idutils-4.6.orig/lib/fseterr.c
|
||
|
+++ idutils-4.6/lib/fseterr.c
|
||
|
@@ -29,7 +29,8 @@ fseterr (FILE *fp)
|
||
|
/* Most systems provide FILE as a struct and the necessary bitmask in
|
||
|
<stdio.h>, because they need it for implementing getc() and putc() as
|
||
|
fast macros. */
|
||
|
-#if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */
|
||
|
+#if defined _IO_EOF_SEEN || defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1
|
||
|
+ /* GNU libc, BeOS, Haiku, Linux libc5 */
|
||
|
fp->_flags |= _IO_ERR_SEEN;
|
||
|
#elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */
|
||
|
fp_->_flags |= __SERR;
|