summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartyn Russell <martyn@lanedo.com>2014-03-07 10:56:36 +0000
committerMartyn Russell <martyn@lanedo.com>2014-03-10 10:32:03 +0000
commitbbb4e8e8988069600d492c31da6a5588fd2df9ff (patch)
treefd08541a0768468e06a3c447f75db2e5f00f8224
parent8e980e132e9630191cfb55c6fd9920a760fa1ca4 (diff)
downloadtracker-bbb4e8e8988069600d492c31da6a5588fd2df9ff.tar.gz
build: Add version for libicu in the build requirements
The version we depend on is the first libicu version with pkg-config shipped, but it's important to put this in the build requirements so people know what they need.
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d2941be64..5e0c545fc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -177,6 +177,7 @@ MEEGOTOUCH_REQUIRED=0.20
POPPLER_REQUIRED=0.16.0
CAIRO_REQUIRED=1.0
GDK_REQUIRED=1.0
+LIBICU_REQUIRED=52.1
LIBJPEG_REQUIRED="any version"
LIBGIF_REQUIRED="any version"
LIBTIFF_REQUIRED="any version"
@@ -889,7 +890,7 @@ LIBUNISTRING_LIBS="-lunistring"
# Check for libicu...
PKG_CHECK_MODULES(LIBICU,
- [icu-i18n icu-uc],
+ [icu-i18n >= $LIBICU_REQUIRED icu-uc >= $LIBICU_REQUIRED],
[have_libicu=yes],
[have_libicu=no])