summaryrefslogtreecommitdiff
path: root/sys/lib/libz
AgeCommit message (Collapse)Author
2004-03-24Do not check for writing to address zero on vax, since this is whereMiod Vallat
we want to be able to load a .gz kernel. ok deraadt@
2003-12-18Move -DDYNAMIC_CRC_TABLE into the main libz MakefileTodd C. Miller
2003-12-17#include <lib/libsa/stand.h> instead of just <stand.h> so we can avoidTodd C. Miller
adding an extra -I for each libz Makefile. This is how the old kernel libz was.
2003-12-17No need to build infback.c here after all.Todd C. Miller
2003-12-17_ZLIB_PRIVATE is not used anywhereTodd C. Miller
2003-12-16Add #ifdef SMALL and #ifdef SLOW and include sys/unistd.h instead of unistd.hTodd C. Miller
2003-12-16Update to zlib 1.2.1Todd C. Miller
2003-12-16shrink error strings a lot; ok millertTheo de Raadt
2002-04-29Delete directories created by cleandir to prevent permission problemsHugh Graham
during sudo builds. Verified by Valchev and sanctioned by Shalayeff.
2002-03-12Update to zlib-1.1.4Todd C. Miller
2002-01-18Fix some zlib memory leaks, originally from Mark AdlerTodd C. Miller
2000-11-08Include stand.h from lib/libsa/stand.hArtur Grabowski
2000-03-03$OpenBSD$Todd T. Fries
1999-02-14make z_error be a panicMichael Shalayeff
1999-02-14fix -DDEBUG case, ie remove L-user-and stuff such as fprintf and stderr.Michael Shalayeff
another obvious fix would be porting stdio file functions into stand library, so code would go smooth from -lz, but former seems to be a minimal-change-compliant approach.
1999-01-25fix a real bad bug, which consists of return value fromMichael Shalayeff
read() /* oread() */ not being checked for errors/eof or not checked for error value (-1), which would result in bad kernels loaded, i/o errors not reported and such.
1998-09-08Let's commit the correct files, shall we. This is the real zlib-1.1.3...Todd C. Miller
1998-09-08include stand.h if -D_STANDALONETodd C. Miller
1998-09-08Update from zlib-1.1.3. These should really just be references to ↵Todd C. Miller
../../../lib/libz/*
1998-05-30more const here and there; so would benefit everyoneMichael Shalayeff
1997-11-07$OpenBSD$Niklas Hallqvist
1997-08-04remove that i386 defines, we can survive w/o 'emMichael Shalayeff
1997-07-18no user includes in standaloneMichael Shalayeff
1997-07-18cumulative CFLAGSMichael Shalayeff
1997-06-19Fix a repeatbility problem associated with doing make cleandir of sys/lib/* -grr
mkdir fails if the destination already exists. It could be argued that having make cleandir rm the directory would be appropriate, but there really shouldn't be any dynamic fooling around with the directory structure. Fixes PR sparc/231 by Marshal Midden, though probably MI.
1997-05-05Back out depend/clean changes.Todd C. Miller
1997-05-04Change clean/depend targets to allow inclusion of Makefile.incTodd C. Miller
where there is already a depend: target.
1997-04-03Quote CC in args to makebriggs
1997-04-02save 4k space for i386!Michael Shalayeff
1997-04-02#ifndef localMichael Shalayeff
#define local static #endif
1997-02-07s/DEBUG/DEBUG_ZLIB/gMichael Shalayeff
1997-02-07quote [AC]FLAGS and others...Michael Shalayeff
1997-02-06Add libz and make libsa aware of it. From NetBSD.Jason Downs