mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 02:57:40 -04:00
15 lines
311 B
Makefile
15 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
|