blob: a0aedfe0510522419381a41d9596946513c69911 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--- yaz-3.0.47/configure.ac.orig 2009-07-08 04:58:43.000000000 -0700
+++ yaz-3.0.47/configure.ac 2009-07-31 01:46:21.764545198 -0700
@@ -367,14 +367,14 @@
dnl
dnl
-AC_CHECK_ICU([3.4],[
- if test "$xml_enabled" = "true"; then
- ICU_CPPFLAGS="$ICU_CPPFLAGS -D YAZ_HAVE_ICU=1"
- else
- ICU_CPPFLAGS=""
- AC_MSG_WARN([ICU support disabled because XML support is unavailable])
- fi
-])
+dnl ------ ICU
+AC_ARG_ENABLE(icu, [ --enable-icu enable ICU support],[enable_icu=$enableval],[enable_icu=no])
+if test "$enable_icu" = "yes"; then
+ AC_CHECK_ICU([3.4],[
+ ICU_CPPFLAGS="$ICU_CPPFLAGS -D YAZ_HAVE_ICU=1"],[
+ AC_MSG_ERROR([For ICU support please install libicu34-dev or similar])
+ ])
+fi
dnl
dnl ------ Memory debugging
AC_ARG_ENABLE([memdebug],[ --enable-memdebug enable memory debugging],[enable_memdebug=$enableval],[enable_memdebug=none])
|