diff options
author | jlam <jlam> | 2001-07-16 09:49:16 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-07-16 09:49:16 +0000 |
commit | 9fe54374fe385318015afa4ecd5fd1912f3e5173 (patch) | |
tree | a9582e6ec5799fa6a47750d9b7454401117f1a6b /archivers | |
parent | 683c8f2c75c226b62af0f41271bdd7ce6e5b4208 (diff) | |
download | pkgsrc-9fe54374fe385318015afa4ecd5fd1912f3e5173.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')
-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" |