diff options
author | wiz <wiz@pkgsrc.org> | 2013-11-13 19:41:44 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2013-11-13 19:41:44 +0000 |
commit | cbaab9731a6f8a5e3519254ba081cd0af2d11af7 (patch) | |
tree | a43673a77b4935a3623430762105db2a1c12511c /x11/pixman | |
parent | ee50aaf8a2e1d8d70237762590a397e1284b9423 (diff) | |
download | pkgsrc-cbaab9731a6f8a5e3519254ba081cd0af2d11af7.tar.gz |
Update to 0.32.2:
0.32.2:
A new pixman release 0.32.2 is now available. This is a stable release
in the 0.32 series.
This release corrects the problem that the 0.32.0 tarball was missing
some files required to build the GTK+ based demo programs. Also included
is a fix for a build problem with MSVC.
0.32.0:
A new pixman release 0.32.0 is now available. This is new major release
with performance improvements for image scaling, and a large number of
bug fixes.
Diffstat (limited to 'x11/pixman')
-rw-r--r-- | x11/pixman/Makefile | 4 | ||||
-rw-r--r-- | x11/pixman/distinfo | 9 | ||||
-rw-r--r-- | x11/pixman/patches/patch-af | 16 |
3 files changed, 6 insertions, 23 deletions
diff --git a/x11/pixman/Makefile b/x11/pixman/Makefile index 0a14e1ce19f..2166d3cc892 100644 --- a/x11/pixman/Makefile +++ b/x11/pixman/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.55 2013/08/15 10:46:56 wiz Exp $ +# $NetBSD: Makefile,v 1.56 2013/11/13 19:41:44 wiz Exp $ -DISTNAME= pixman-0.30.2 +DISTNAME= pixman-0.32.2 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XORG:=lib/} EXTRACT_SUFX= .tar.bz2 diff --git a/x11/pixman/distinfo b/x11/pixman/distinfo index 3d139eb3168..62b0de04ad0 100644 --- a/x11/pixman/distinfo +++ b/x11/pixman/distinfo @@ -1,9 +1,8 @@ -$NetBSD: distinfo,v 1.50 2013/08/15 10:46:56 wiz Exp $ +$NetBSD: distinfo,v 1.51 2013/11/13 19:41:44 wiz Exp $ -SHA1 (pixman-0.30.2.tar.bz2) = 4ea0832932fd5447a1d5768e0d5403b6c7c4dbaf -RMD160 (pixman-0.30.2.tar.bz2) = 1664bc0598861e38d446fa2ed9440759d5104fb3 -Size (pixman-0.30.2.tar.bz2) = 666281 bytes -SHA1 (patch-af) = 660feebae10eccebc62cde85b05ae0042834d398 +SHA1 (pixman-0.32.2.tar.bz2) = f1490e3fbe3012ea1ca1b45d0a4af23fdaba70e7 +RMD160 (pixman-0.32.2.tar.bz2) = 1cabcc381a397972f116b342b85decea6f5f8196 +Size (pixman-0.32.2.tar.bz2) = 658948 bytes SHA1 (patch-ba) = 9bd8a7fd0cfbd280df06d69838d3d10ab1b51e23 SHA1 (patch-bb) = d47b1857771b8addb6897d45782ba2735a7aacbd SHA1 (patch-bc) = 3e23e6c482ea193885f3f762af355ef2f692132b diff --git a/x11/pixman/patches/patch-af b/x11/pixman/patches/patch-af deleted file mode 100644 index d887174244c..00000000000 --- a/x11/pixman/patches/patch-af +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-af,v 1.12 2012/07/14 20:57:59 wiz Exp $ - -Use correct pthread options on NetBSD and MirBSD. -https://bugs.freedesktop.org/show_bug.cgi?id=52101 - ---- pixman/pixman-compiler.h.orig 2012-06-29 18:25:17.000000000 +0000 -+++ pixman/pixman-compiler.h -@@ -164,7 +164,7 @@ - # define PIXMAN_GET_THREAD_LOCAL(name) \ - (&name) - --#elif defined(HAVE_PTHREAD_SETSPECIFIC) -+#elif defined(HAVE_PTHREAD_SETSPECIFIC) || defined(__NetBSD__) || defined(__MirBSD__) - - #include <pthread.h> - |