be4d2b20b5
Changes: Use lcms2 instead of lcms. Can now use "-M" with a DNG file that embeds a bad color matrix. Improved support for Nokia cameraphones. Support the Alcatel 5235D, Powershot G16 and S120, Pentax K-3, etc. Added tone curve for Canon RMF files. Copied color matrices from DNG Converter 8.3. Support blacklevel patterns up to 64x64. Support the Kodak 12-megapixel camera(s).
14 lines
311 B
Makefile
14 lines
311 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/01/27 20:25:17 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.dcraw
|
|
PKG_SUPPORTED_OPTIONS= lcms
|
|
PKG_SUGGESTED_OPTIONS= lcms
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mlcms)
|
|
LIBS+= -llcms2
|
|
.include "../../graphics/lcms2/buildlink3.mk"
|
|
.else
|
|
CFLAGS+= -DNO_LCMS
|
|
.endif
|