Use the ppp zlib from net. In preparation for importing zlib-1.2.3.

Unfortunately due to the changes in 1.2.3 that have more fine-grain
states between calls to inflate, we cannot easily adapt it to
packetized mode.
This commit is contained in:
christos 2006-01-14 19:55:11 +00:00
parent 81a0859118
commit f4a430efd2
1 changed files with 4 additions and 6 deletions

View File

@ -1,15 +1,13 @@
# $NetBSD: Makefile,v 1.3 2005/02/21 06:41:20 cube Exp $
# $NetBSD: Makefile,v 1.4 2006/01/14 19:55:11 christos Exp $
.include <bsd.own.mk>
.PATH: ${NETBSDSRCDIR}/dist/pppd/pppdump
.PATH: ${NETBSDSRCDIR}/dist/pppd/pppdump ${NETBSDSRCDIR}/sys/net
PROG= pppdump
SRCS= pppdump.c deflate.c bsd-comp.c
SRCS= pppdump.c deflate.c bsd-comp.c zlib.c
MAN= pppdump.8
CPPFLAGS+= -I${.CURDIR}
CPPFLAGS+= -I${NETBSDSRCDIR}/sys/net -I${.CURDIR}
DPADD+=${LIBZ}
LDADD+=-lz
.include <bsd.prog.mk>