Package: recutils / 1.7-3

gnulibrary-glibc-detection.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Use __GNU_LIBRARY__ == 6 instead of 1 to detect glibc
Bug-Debian: https://bugs.debian.org/915174
Author: Sven Wick <sven.wick@gmx.de>

--- recutils-1.7.orig/lib/fseterr.c
+++ recutils-1.7/lib/fseterr.c
@@ -29,7 +29,7 @@ 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_ftrylockfile || __GNU_LIBRARY__ == 6 /* GNU libc, BeOS, Haiku, Linux libc5 */
   fp->_flags |= _IO_ERR_SEEN;
 #elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin */
   fp_->_flags |= __SERR;