diff options
author | adam <adam@pkgsrc.org> | 2004-01-12 21:19:50 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2004-01-12 21:19:50 +0000 |
commit | 1f5cd42a831ce1dfefbada3fc41e7d7ad349a68b (patch) | |
tree | 078195fb505784d5088ff21e69f5dca3e75a084e /devel/zlib/files | |
parent | 07775e738947c45da334ca36fe6047b96c307ce0 (diff) | |
download | pkgsrc-1f5cd42a831ce1dfefbada3fc41e7d7ad349a68b.tar.gz |
Changes 1.2.1:
* inflate is about 20% faster and minimizes memory allocation
* crc32 is about 50% faster
* new functions and functionality
* more supported architectures
Diffstat (limited to 'devel/zlib/files')
-rw-r--r-- | devel/zlib/files/lt.mk | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/devel/zlib/files/lt.mk b/devel/zlib/files/lt.mk deleted file mode 100644 index 499d884e8ac..00000000000 --- a/devel/zlib/files/lt.mk +++ /dev/null @@ -1,46 +0,0 @@ -# Original NetBSD: Makefile,v 1.13 1999/07/09 07:07:13 garbled Exp - -# libtool-using Makefile for libz, derived deom bsd.mk for Solaris - HF - -LIB= z -MKMAN= no - -SRCS= adler32.c compress.c crc32.c deflate.c gzio.c infblock.c \ - infcodes.c inffast.c inflate.c inftrees.c infutil.c trees.c uncompr.c \ - zutil.c - -CPPFLAGS+= -I${.CURDIR} - -CLEANFILES+= minigzip - -INCS= zconf.h zlib.h -INCSDIR=${PREFIX}/include -LIBDIR=${PREFIX}/lib - -SHLIB_MAJOR= 0 -SHLIB_MINOR= 1 - -test: minigzip - echo hello world | ./minigzip | ./minigzip -d - -# Note: CFLAGS ommitted by intention! -# This is to verify that zlib.h works standalone. -minigzip : minigzip.c libz.la - ${LIBTOOL} $(CC) -o minigzip ${.CURDIR}/minigzip.c libz.la - - - -all: minigzip - -.SUFFIXES: .lo .c -.c.lo: - ${LIBTOOL} ${CC} -c $*.c -lib${LIB}.la: ${SRCS:.c=.lo} - ${LIBTOOL} ${CC} -o lib${LIB}.la ${SRCS:.c=.lo} \ - -rpath ${LIBDIR} \ - -version-info ${SHLIB_MAJOR}:${SHLIB_MINOR} -install: - ${BSD_INSTALL_DATA_DIR} ${INCSDIR} - ${BSD_INSTALL_DATA} zconf.h zlib.h ${INCSDIR} - ${LIBTOOL} ${BSD_INSTALL_DATA} libz.la ${LIBDIR} - |