summaryrefslogtreecommitdiff
path: root/x11/pixman/Makefile
diff options
context:
space:
mode:
authorbjs <bjs>2008-07-13 23:16:02 +0000
committerbjs <bjs>2008-07-13 23:16:02 +0000
commit1954d177e1c1b3e0929fd02bc6dbc817170ffac8 (patch)
treed0ecaccf9272a0a0b199e725afebfd864c8c5e54 /x11/pixman/Makefile
parent5a7037ff659238ad9dd02b8c7e8ea5b3d9f9e62e (diff)
downloadpkgsrc-1954d177e1c1b3e0929fd02bc6dbc817170ffac8.tar.gz
Update to pixman-0.11.6. ChangeLog:
commit a766b62880108f278478888f5167a5fbf2819a97 Add configure time options to disable mmx/sse2/vmx commit 02268903e4311709744c11e495f9b17f171ec5e9 pixman-sse.c: silence pointer-cast compiler warnings. Cast pointers to words of the same size, not 32-bits. commit eb2d95de98683a387153f010077ad9c3c3b1b01d Fix implicit declaration of function 'free'. Otherwise pointer will be truncated on 64bit arch and your programs will crash. commit 29d144712e558aaeb49f4384028dd669d76a410b Fix memory leak by freeing boxes{16,32}. After calling pixman_region_init_rects() or pixman_region32_init_rects(), boxes{16,32} were not freed before returning. Fixes bug 16312. commit 5d32519316b40b35113c6df9e15d955a16709ba2 Use pixman_malloc_ab instead of plain malloc for the fbStore64_generic scratch buffer. commit b1c70c4e6435d7f15751111828c381feb1d139cf Move PIXMAN_FORMAT_16BPC to pixman-private.h commit 7fa966df0ee781fa486715710f389b148c11d36e Decide based on the image formats whether we need wide compositing. commit 7cb735c9c0fa55ae1f4d8d13da9f33e3da2ae8fe Take the source format into account in pixman_expand. Extract the original bits of the source image for each component and then replicate up to 16 bits to fill the wide components. Make sure to hard-code the alpha value to 1 if the source format didn't have alpha. commit c0d98e96605c6d03f4b02f337f2f5827165bb092 Make expansion and contraction loops clearer. commit fc0b28bf6af81428b7ac045614eea97fbf9c4a70 Add wide source picture, external alpha, and transformed image routines. The wide external alpha path should work correctly with wide formats. The wide transformed fetch code for now just does a 32-bit fetch and then expands, which will lose precision. Source pictures, for now, are evaluated at depth 32 and then are expanded to depth 64. We could get higher precision by evaluating them directly at depth 64, but this should be good enough for now. commit 42a3a2d6fc8d3e521c6914ff8fb89f1fbc673e28 Add wide fetch/store functions. Use the narrow ones and expand/contract where necessary. Still need wide paths for fancy pictures, but this gets the basic stuff working. commit 7591d3f1d7e0884f9362018edf720724095cf380 Add expand and contract functions to convert between ARGB8 and ARGB16. The expansion function isn't quite correct, but gives reasonable results.
Diffstat (limited to 'x11/pixman/Makefile')
-rw-r--r--x11/pixman/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/x11/pixman/Makefile b/x11/pixman/Makefile
index f3e94e41fd1..e49ad50e627 100644
--- a/x11/pixman/Makefile
+++ b/x11/pixman/Makefile
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile,v 1.13 2008/06/19 17:59:52 bjs Exp $
+# $NetBSD: Makefile,v 1.14 2008/07/13 23:16:02 bjs Exp $
#
-DISTNAME= pixman-0.11.4
-PKGNAME= ${DISTNAME:C/pl[0-9]*//}
+DISTNAME= pixman-0.11.6
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_XORG:=lib/}
EXTRACT_SUFX= .tar.bz2
+
MAINTAINER= bjs@NetBSD.org
HOMEPAGE= http://xorg.freedesktop.org/
COMMENT= Library of low-level pixel manipulation routines
@@ -27,8 +27,8 @@ PKGCONFIG_OVERRIDE+= pixman-1.pc.in
### I have verified the list of visible symbols is unchanged from
### the "factory" build.
###
+MAKE_ENV+= PIXMAN_SYMFILE=${PIXMAN_SYMFILE:Q}
PIXMAN_SYMFILE= ${WRKDIR}/pixman.sym
-MAKE_ENV+= PIXMAN_SYMFILE=${PIXMAN_SYMFILE:Q}
post-extract:
${CP} ${FILESDIR}/pixman.sym ${WRKDIR}