summaryrefslogtreecommitdiffstats
path: root/package/pixman
diff options
context:
space:
mode:
authorYegor Yefremov <yegorslists@googlemail.com>2012-03-12 11:02:09 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2012-03-12 12:17:08 +0100
commit8b51e3cfc8f386d1f59fa8f9447ce90428d2a267 (patch)
treec049428cc3a88282a9045ed1b70daaa8dd073867 /package/pixman
parent0ffcd60a25fa1d93809cdb5ed354a62adae72759 (diff)
downloadbuildroot-novena-8b51e3cfc8f386d1f59fa8f9447ce90428d2a267.tar.gz
buildroot-novena-8b51e3cfc8f386d1f59fa8f9447ce90428d2a267.zip
pixman: bump version and compilation fix
- bump to 2.5 and change download location - disable iwmmxt support for CPU's that don't have this feature Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/pixman')
-rw-r--r--package/pixman/pixman.mk11
1 files changed, 8 insertions, 3 deletions
diff --git a/package/pixman/pixman.mk b/package/pixman/pixman.mk
index a2e183225..3e056d419 100644
--- a/package/pixman/pixman.mk
+++ b/package/pixman/pixman.mk
@@ -3,13 +3,18 @@
# pixman
#
################################################################################
-PIXMAN_VERSION = 0.24.2
-PIXMAN_SOURCE = pixman-$(PIXMAN_VERSION).tar.gz
-PIXMAN_SITE = http://cairographics.org/releases/
+PIXMAN_VERSION = 0.25.2
+PIXMAN_SITE = http://xorg.freedesktop.org/releases/individual/lib
PIXMAN_INSTALL_STAGING = YES
PIXMAN_DEPENDENCIES = host-pkg-config
# don't build gtk based demos
PIXMAN_CONF_OPT = --disable-gtk
+# disable iwmmxt support for CPU's that don't have
+# this feature
+ifneq ($(BR2_iwmmxt),y)
+PIXMAN_CONF_OPT += --disable-arm-iwmmxt
+endif
+
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))