e6ea0ca4b6
of the lzf_compress API by default. This is because there is evidently code floating around out there in the world with broken autoconf scripts that don't check for LZF_STATE_ARG in the lzf header files and just assume the dumb version of the API. We rename the sane API to lzf_compress_r and implement the dumb API in terms of it. Consequently, bump liblzf major version number. This is fine because nothing used our liblzf with the old API. Add lzf(1) utility from LZF distribution. Add manual page for lzf(1).
9 lines
232 B
Makefile
9 lines
232 B
Makefile
# $NetBSD: Makefile.inc,v 1.2 2012/09/16 18:59:27 tls Exp $
|
|
.include <bsd.own.mk>
|
|
|
|
USE_FORT?= yes # data-driven bugs?
|
|
|
|
LIBLZFDIR= ${NETBSDSRCDIR}/external/bsd/liblzf
|
|
.PATH: ${LIBLZFDIR}/dist
|
|
CPPFLAGS+= -I ${LIBLZFDIR}/dist
|