diff options
author | jlam <jlam@pkgsrc.org> | 2001-07-16 09:49:16 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-07-16 09:49:16 +0000 |
commit | 7c3cc51bd20e42672813b0858e0e38defd14d97e (patch) | |
tree | a9582e6ec5799fa6a47750d9b7454401117f1a6b /archivers/liblzo/Makefile | |
parent | c192ec952e5c461ab02aa5f399293fb35a8fd667 (diff) | |
download | pkgsrc-7c3cc51bd20e42672813b0858e0e38defd14d97e.tar.gz |
Avoid spurious detection of zlib as it's not needed by the liblzo library
and mark as USE_BUILDLINK_ONLY.
Diffstat (limited to 'archivers/liblzo/Makefile')
-rw-r--r-- | archivers/liblzo/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/archivers/liblzo/Makefile b/archivers/liblzo/Makefile index 7f3a7220cbd..66310b364fb 100644 --- a/archivers/liblzo/Makefile +++ b/archivers/liblzo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/02/28 11:25:46 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2001/07/16 09:49:16 jlam Exp $ # DISTNAME= lzo-1.06 @@ -13,8 +13,12 @@ MAINTAINER= rh@netbsd.org HOMEPAGE= http://wildsau.idv.uni-linz.ac.at/mfx/lzo.html COMMENT= Portable lossless data compression library written in ANSI C +USE_BUILDLINK_ONLY= # defined GNU_CONFIGURE= # defined USE_LIBTOOL= # defined LTCONFIG_OVERRIDE= ${WRKSRC}/acconfig/ltconfig +# Don't spuriously detect zlib, as it's not needed for the library. +CONFIGURE_ENV+= ac_cv_lib_z_gzputs=no + .include "../../mk/bsd.pkg.mk" |