Checking for gcc...
Checking for shared library support...
Building shared library libz.so.1.1.4 with gcc.
Checking for unistd.h... Yes.
Checking for errno.h... Yes.
Checking for mmap support... Yes.
gcc -fPIC -DHAVE_UNISTD_H -DUSE_MMAP -c -o example.o example.c
gcc -fPIC -DHAVE_UNISTD_H -DUSE_MMAP -c -o adler32.o adler32.c
.
.
.
chmod 644 /usr/include/zlib.h /usr/include/zconf.h
cp libz.so.1.1.4 libz.a /usr/lib
cd /usr/lib; chmod 755 libz.so.1.1.4 libz.a
cd /usr/lib; if test -f libz.so.1.1.4; then \
rm -f libz.so libz.so.1; \
ln -s libz.so.1.1.4 libz.so; \
ln -s libz.so.1.1.4 libz.so.1; \
(ldconfig || true) >/dev/null 2>&1; \
fi
|