Release 1.14.8 (2016-12-07 Bryce Harrington <bryce@osg.samsung.com>) ======================================================================== Bugfix release rolling up backported fixes for the past year. For a complete log of changes since 1.14.6, please see: http://cairographics.org/releases/ChangeLog.cairo-1.14.8 Features -------- None API Changes ----------- None Dependency Changes ------------------ None Performance Optimizations ------------------------- None Bug Fixes --------- * Fix "invalidfont" error on some printers when printing PDFs with embedded fonts that have glyphs (such as spaces) with num_contours == 0. (Bug #79897) * Fix deadlock when destruction of a scaled font indirectly triggers destruction of a second scaled font, causing the global cache to be locked twice. (Bug #93891) * Fix X errors reported to applications when shmdt() is called before the Attach request is processed, due to missing xcb and xlib calls. * Fix random failure in record-paint-alpha-clip-mast test case, caused by an incorrect assumption that a deferred clear can be skipped. (Bug #84330) * Fix crash when dealing with an XShmGetImage() failure, caused by a double free in _get_image_surface(). (Bug #91967) * Fix build issue when using non-GNU strings utility. (Bug #88639) * Cleanup debugging text sent to stdout instead of log. (Bug #95227)
42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
# $NetBSD: Makefile.common,v 1.10 2016/12/12 13:56:07 wiz Exp $
|
|
#
|
|
# used by graphics/cairo/Makefile
|
|
# used by graphics/cairo-gobject/Makefile
|
|
|
|
DISTNAME= cairo-1.14.8
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://cairographics.org/releases/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER?= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://cairographics.org/
|
|
COMMENT= Vector graphics library with cross-device output support
|
|
LICENSE= gnu-lgpl-v2.1 AND mpl-1.1
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../graphics/cairo/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../graphics/cairo/patches
|
|
|
|
USE_LANGUAGES= c99
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
# does not build against NetBSD-5's MesaLib, and is according
|
|
# to upstream, only used by "toy applications"
|
|
CONFIGURE_ARGS+= --disable-gl
|
|
CONFIGURE_ARGS+= --enable-fc
|
|
CONFIGURE_ARGS+= --enable-pdf
|
|
CONFIGURE_ARGS+= --enable-ps
|
|
CONFIGURE_ARGS+= --enable-tee
|
|
|
|
PKGCONFIG_OVERRIDE+= src/cairo.pc.in
|
|
PKGCONFIG_OVERRIDE+= src/cairo-features.pc.in
|
|
|
|
# For snprintf() and ctime_r()
|
|
CPPFLAGS.SunOS+= -D__EXTENSIONS__ -D_POSIX_PTHREAD_SEMANTICS
|
|
|
|
# PR#43928
|
|
.include "../../mk/compiler.mk"
|
|
.if ${MACHINE_PLATFORM:MDragonFly-*-x86_64} && ${CC_VERSION:Mgcc-4.1.*}
|
|
CONFIGURE_ENV+= ac_cv_type___uint128_t=no
|
|
.endif
|