badc12d1e2
Security * Double-free in gdImagePngPtr(). (CVE-2017-6362) * Buffer over-read into uninitialized memory. (CVE-2017-7890) Fixed * Fix 109: XBM reading fails with printed error * Fix 338: Fatal and normal libjpeg/ibpng errors not distinguishable * Fix 357: 2.2.4: Segfault in test suite * Fix 386: gdImageGrayScale() may produce colors * Fix 406: webpng -i removes the transparent color * Fix Coverity 155475: Failure to restore alphaBlendingFlag * Fix Coverity 155476: potential resource leak * Fix several build issues and test failures * Fix and reenable optimized support for reading 1 bps TIFFs Added * The native MSVC buildchain now supports libtiff and most executables
14 lines
362 B
Makefile
14 lines
362 B
Makefile
# $NetBSD: options.mk,v 1.7 2017/09/04 06:20:45 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gd
|
|
PKG_SUPPORTED_OPTIONS= x11
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mx11)
|
|
.include "../../x11/libXpm/buildlink3.mk"
|
|
CONFIGURE_ENV+= X11BASE=${X11BASE}
|
|
CONFIGURE_ARGS+= --with-xpm=${BUILDLINK_PREFIX.libXpm}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-xpm
|
|
.endif
|