summaryrefslogtreecommitdiff
path: root/package/pixman
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-05-23 18:28:03 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-05-23 18:28:24 +0200
commit72b4ecd972cbade303cf7cf69986183a10feb118 (patch)
tree5bd4eec4af600aa631b0f523b9067855c8e60a4b /package/pixman
parent4340ac5371121ab2adb2dc53414c2348506cac73 (diff)
fix host compile of librsvg, required for midori
Diffstat (limited to 'package/pixman')
-rw-r--r--package/pixman/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/package/pixman/Makefile b/package/pixman/Makefile
index 1068ac2e8..97c397b0f 100644
--- a/package/pixman/Makefile
+++ b/package/pixman/Makefile
@@ -10,6 +10,7 @@ PKG_MD5SUM:= eba449138b972fbf4547a8c152fea162
PKG_DESCR:= pixel manipulation library
PKG_SECTION:= x11/libs
PKG_BUILDDEP:= libpng
+HOST_BUILDDEP:= libpng-host
PKG_SITES:= http://www.cairographics.org/releases/
PKG_OPTS:= dev
@@ -19,11 +20,13 @@ ifeq ($(ADK_STATIC),y)
PKG_OPTS+= libonly
endif
+include $(TOPDIR)/mk/host.mk
include $(TOPDIR)/mk/package.mk
+$(eval $(call HOST_template,PIXMAN,pixman,$(PKG_VERSION)-${PKG_RELEASE}))
$(eval $(call PKG_template,PIXMAN,pixman,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
-TARGET_CFLAGS:= $(filter-out -flto,$(TARGET_CFLAGS))
+HOST_STYLE:= auto
CONFIGURE_ARGS+= --disable-gtk \
--disable-arm-iwmmxt
@@ -31,4 +34,5 @@ pixman-install:
${INSTALL_DIR} ${IDIR_PIXMAN}/usr/lib
${CP} ${WRKINST}/usr/lib/libpixman-1.so* ${IDIR_PIXMAN}/usr/lib
+include ${TOPDIR}/mk/host-bottom.mk
include ${TOPDIR}/mk/pkg-bottom.mk