diff options
author | wiz <wiz> | 2005-03-23 01:17:45 +0000 |
---|---|---|
committer | wiz <wiz> | 2005-03-23 01:17:45 +0000 |
commit | de93ae5fdc846416821aa4299fc7568e3179e176 (patch) | |
tree | 23dacb69f65bc786c5b88b56386915f0713e442c /graphics/tiff/options.mk | |
parent | 2ac8090d313bc0996bc9f5a4e63f9be3394379b2 (diff) | |
download | pkgsrc-de93ae5fdc846416821aa4299fc7568e3179e176.tar.gz |
Update to 3.7.2.
Package changes:
Put options in options.mk, and retire support for USE_GIF; turn on
the lzw option by default (since USE_GIF was on by default).
C++ library's name changed, to be in sync with tiff distribution's name
for it (libtiffcxx -> libtiffxx).
Changes in 3.7.2:
Maintainance [sic] release. Many bugfixes in the build
environment and compatibility improvements.
Diffstat (limited to 'graphics/tiff/options.mk')
-rw-r--r-- | graphics/tiff/options.mk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/graphics/tiff/options.mk b/graphics/tiff/options.mk new file mode 100644 index 00000000000..f56f430744a --- /dev/null +++ b/graphics/tiff/options.mk @@ -0,0 +1,15 @@ +# $NetBSD: options.mk,v 1.1 2005/03/23 01:17:45 wiz Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.tiff +PKG_SUPPORTED_OPTIONS= lzw +PKG_DEFAULT_OPTIONS= lzw +.include "../../mk/bsd.options.mk" + +### +### LZW compression support +### +.if !empty(PKG_OPTIONS:Mlzw) +CONFIGURE_ARGS+= --enable-lzw +.else +CONFIGURE_ARGS+= --disable-lzw +.endif |