zlib: Sync with GCC

zlib/ChangeLog.bin-gdb:

	Sync with FSF GCC sources.
This commit is contained in:
Simon Marchi
2018-06-18 09:37:44 -04:00
parent 978588dc58
commit b0f49e3fd7
5 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
Sync with FSF GCC sources.
2017-02-20 Nick Clifton <nickc@redhat.com> 2017-02-20 Nick Clifton <nickc@redhat.com>
Sync with FSF GCC sources, bringing in version 1.2.11. Sync with FSF GCC sources, bringing in version 1.2.11.

View File

@ -1,3 +1,10 @@
2017-03-15 Yaakov Selkowitz <yselkowitz@redhat.com>
PR bootstrap/79771
* gzguts.h (WIDECHAR): Do not define for __CYGWIN__.
* zlib.h (gzopen_w): Do not declare for __CYGWIN__.
* win32/zlib.def: Remove gzopen_w.
2017-01-22 Matthias Klose <doko@ubuntu.com> 2017-01-22 Matthias Klose <doko@ubuntu.com>
* Import zlib 1.2.11. * Import zlib 1.2.11.

View File

@ -39,7 +39,7 @@
# include <io.h> # include <io.h>
#endif #endif
#if defined(_WIN32) || defined(__CYGWIN__) #if defined(_WIN32)
# define WIDECHAR # define WIDECHAR
#endif #endif

View File

@ -91,4 +91,3 @@ EXPORTS
inflateCodesUsed inflateCodesUsed
inflateResetKeep inflateResetKeep
deflateResetKeep deflateResetKeep
gzopen_w

View File

@ -1893,7 +1893,7 @@ ZEXTERN int ZEXPORT inflateValidate OF((z_streamp, int));
ZEXTERN unsigned long ZEXPORT inflateCodesUsed OF ((z_streamp)); ZEXTERN unsigned long ZEXPORT inflateCodesUsed OF ((z_streamp));
ZEXTERN int ZEXPORT inflateResetKeep OF((z_streamp)); ZEXTERN int ZEXPORT inflateResetKeep OF((z_streamp));
ZEXTERN int ZEXPORT deflateResetKeep OF((z_streamp)); ZEXTERN int ZEXPORT deflateResetKeep OF((z_streamp));
#if (defined(_WIN32) || defined(__CYGWIN__)) && !defined(Z_SOLO) #if defined(_WIN32) && !defined(Z_SOLO)
ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path, ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
const char *mode)); const char *mode));
#endif #endif