summaryrefslogtreecommitdiffstats
path: root/rules/host-intltool.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-02-18 21:36:08 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-02-18 21:36:08 +0000
commite62fafdddf625be332164b01d8d039fcf45cf9d1 (patch)
tree23e1e9b55f1a7a7bc7ae3c2019bbc61446879ab0 /rules/host-intltool.make
parentb64b80219366a98297ab9374187d6acd78dd4483 (diff)
downloadptxdist-e62fafdddf625be332164b01d8d039fcf45cf9d1.tar.gz
ptxdist-e62fafdddf625be332164b01d8d039fcf45cf9d1.tar.xz
* host-intltool.make:
added check for perl xml parser git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@9794 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/host-intltool.make')
-rw-r--r--rules/host-intltool.make12
1 files changed, 10 insertions, 2 deletions
diff --git a/rules/host-intltool.make b/rules/host-intltool.make
index 5874ef9da..924065444 100644
--- a/rules/host-intltool.make
+++ b/rules/host-intltool.make
@@ -14,13 +14,21 @@
#
HOST_PACKAGES-$(PTXCONF_HOST_INTLTOOL) += host-intltool
+ifdef PTXCONF_HOST_INTLTOOL
+ifeq ($(shell perl -e "require XML::Parser" 2>/dev/null || echo no),no)
+ $(warning *** XML::Parser perl module is required for host-intltool)
+ $(warning *** please install libxml-parser-perl (debian))
+ $(error )
+endif
+endif
+
#
# Paths and names
#
-HOST_INTLTOOL_VERSION := 0.37.0
+HOST_INTLTOOL_VERSION := 0.40.5
HOST_INTLTOOL := intltool-$(HOST_INTLTOOL_VERSION)
HOST_INTLTOOL_SUFFIX := tar.bz2
-HOST_INTLTOOL_URL := http://ftp.gnome.org/pub/gnome/sources/intltool/0.37/$(HOST_INTLTOOL).$(HOST_INTLTOOL_SUFFIX)
+HOST_INTLTOOL_URL := http://ftp.gnome.org/pub/gnome/sources/intltool/0.40/$(HOST_INTLTOOL).$(HOST_INTLTOOL_SUFFIX)
HOST_INTLTOOL_SOURCE := $(SRCDIR)/$(HOST_INTLTOOL).$(HOST_INTLTOOL_SUFFIX)
HOST_INTLTOOL_DIR := $(HOST_BUILDDIR)/$(HOST_INTLTOOL)