publish changes

This commit is contained in:
Archie 2024-09-29 02:04:03 +00:00
parent afc5064a7b
commit ac2c6ac843
1605 changed files with 3354 additions and 3354 deletions

View file

@ -290,9 +290,9 @@ Changes in 1.2.5.2 (17 Dec 2011)
- Simplify gzseek() now that raw after gzip is ignored
- Change gzgetc() to a macro for speed (~40% speedup in testing)
- Fix gzclose() to return the actual error last encountered
- Always add large file support for windows
- Include zconf.h for windows large file support
- Include zconf.h.cmakein for windows large file support
- Always add large file support for arch
- Include zconf.h for arch large file support
- Include zconf.h.cmakein for arch large file support
- Update zconf.h.cmakein on make distclean
- Merge vestigial vsnprintf determination from zutil.h to gzguts.h
- Clarify how gzopen() appends in zlib.h comments

View file

@ -10,11 +10,11 @@
Changes
Oct-2009 - Defined ZPOS64_T to fpos_t on windows and u_int64_t on linux. (might need to find a better why for this)
Oct-2009 - Defined ZPOS64_T to fpos_t on arch and u_int64_t on linux. (might need to find a better why for this)
Oct-2009 - Change to fseeko64, ftello64 and fopen64 so large files would work on linux.
More if/def section may be needed to support other platforms
Oct-2009 - Defined fxxxx64 calls to normal fopen/ftell/fseek so they would compile on windows.
(but you should use iowin32.c for windows instead)
Oct-2009 - Defined fxxxx64 calls to normal fopen/ftell/fseek so they would compile on arch.
(but you should use iowin32.c for arch instead)
*/

View file

@ -11,7 +11,7 @@
*/
#include <windows.h>
#include <arch.h>
#ifdef __cplusplus

View file

@ -423,7 +423,7 @@ int main(argc,argv)
zip64 = isLargeFile(filenameinzip);
/* The path name saved, should not include a leading slash. */
/*if it did, windows/xp and dynazip couldn't read the zip file. */
/*if it did, arch/xp and dynazip couldn't read the zip file. */
savefilenameinzip = filenameinzip;
while( savefilenameinzip[0] == '\\' || savefilenameinzip[0] == '/' )
{

View file

@ -125,7 +125,7 @@
/* get errno and strerror definition */
#if defined UNDER_CE
# include <windows.h>
# include <arch.h>
# define zstrerror() gz_strwinerror((DWORD)GetLastError())
#else
# ifndef NO_STRERROR

View file

@ -349,7 +349,7 @@
# ifdef FAR
# undef FAR
# endif
# include <windows.h>
# include <arch.h>
/* No need for _export, use ZLIB.DEF instead. */
/* For complete Windows compatibility, use WINAPI, not __stdcall. */
# define ZEXPORT WINAPI