forked from pool/glibc
35b77f97b8
Copy from Base:System/glibc based on submit request 24314 from user pbaudis OBS-URL: https://build.opensuse.org/request/show/24314 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/glibc?expand=0&rev=13
44 lines
1.8 KiB
Diff
44 lines
1.8 KiB
Diff
Index: io/Makefile
|
|
===================================================================
|
|
--- io/Makefile.orig
|
|
+++ io/Makefile
|
|
@@ -64,7 +64,7 @@ static-only-routines = stat fstat lstat
|
|
|
|
others := pwd
|
|
test-srcs := ftwtest
|
|
-tests := test-utime test-stat test-stat2 test-lfs tst-getcwd \
|
|
+tests := test-utime test-stat test-stat2 tst-getcwd \
|
|
tst-fcntl bug-ftw1 bug-ftw2 bug-ftw3 bug-ftw4 tst-statvfs \
|
|
tst-openat tst-unlinkat tst-fstatat tst-futimesat \
|
|
tst-renameat tst-fchownat tst-fchmodat tst-faccessat \
|
|
Index: libio/stdio.h
|
|
===================================================================
|
|
--- libio/stdio.h.orig
|
|
+++ libio/stdio.h
|
|
@@ -145,10 +145,12 @@ typedef _G_fpos64_t fpos64_t;
|
|
extern struct _IO_FILE *stdin; /* Standard input stream. */
|
|
extern struct _IO_FILE *stdout; /* Standard output stream. */
|
|
extern struct _IO_FILE *stderr; /* Standard error output stream. */
|
|
+#ifdef __STDC__
|
|
/* C89/C99 say they're macros. Make them happy. */
|
|
#define stdin stdin
|
|
#define stdout stdout
|
|
#define stderr stderr
|
|
+#endif
|
|
|
|
__BEGIN_NAMESPACE_STD
|
|
/* Remove file FILENAME. */
|
|
Index: stdio-common/Makefile
|
|
===================================================================
|
|
--- stdio-common/Makefile.orig
|
|
+++ stdio-common/Makefile
|
|
@@ -52,7 +52,7 @@ tests := tstscanf test_rdwr test-popen t
|
|
temptest tst-fileno test-fwrite tst-ungetc tst-ferror \
|
|
xbug errnobug \
|
|
bug1 bug2 bug3 bug4 bug5 bug6 bug7 bug8 bug9 bug10 bug11 bug12 bug13 \
|
|
- tfformat tiformat tllformat tstdiomisc tst-printfsz tst-wc-printf \
|
|
+ tfformat tiformat tllformat tst-printfsz tst-wc-printf \
|
|
scanf1 scanf2 scanf3 scanf4 scanf5 scanf7 scanf8 scanf9 scanf10 \
|
|
scanf11 scanf12 tst-tmpnam tst-cookie tst-obprintf tst-sscanf \
|
|
tst-swprintf tst-fseek tst-fmemopen test-vfprintf tst-gets \
|