Zebra links with ICU enabled YAZ. Requires YAZ 3.0.15 or later.
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 22 Oct 2007 13:05:22 +0000 (13:05 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 22 Oct 2007 13:05:22 +0000 (13:05 +0000)
configure.ac
index/zebraidx.c

index 02f43a9..e9a8a03 100644 (file)
@@ -1,5 +1,5 @@
 dnl Zebra, Index Data ApS, 1995-2007
-dnl $Id: configure.ac,v 1.65 2007-09-19 10:03:44 adam Exp $
+dnl $Id: configure.ac,v 1.66 2007-10-22 13:05:22 adam Exp $
 dnl
 AC_PREREQ(2.59)
 AC_INIT([idzebra],[2.0.18],[zebra-help@indexdata.dk])
@@ -34,7 +34,7 @@ if test "$ac_cv_lib_crypt_crypt" = "yes"; then
 fi
 dnl
 dnl ------ YAZ
-YAZ_INIT([server],[3.0.3])
+YAZ_INIT([server icu],[3.0.15])
 if test "$YAZVERSION" = "NONE"; then
     AC_MSG_ERROR([YAZ development libraries required])
 fi
index 9b2046e..6aa13e0 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: zebraidx.c,v 1.6 2007-08-27 17:22:22 adam Exp $
+/* $Id: zebraidx.c,v 1.7 2007-10-22 13:05:22 adam Exp $
    Copyright (C) 1995-2007
    Index Data ApS
 
@@ -31,6 +31,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #include <unistd.h>
 #endif
 
+#include <yaz/icu_I18N.h>
 #include <yaz/log.h>
 #include <yaz/options.h>
 #include <idzebra/version.h>
@@ -242,6 +243,9 @@ int main (int argc, char **argv)
             printf("Configured as: %s\n", sys_str);
             if (strcmp(version_str, ZEBRAVER))
                 printf("zebraidx compiled version %s\n", ZEBRAVER);
+#if HAVE_ICU
+            printf("Using ICU\n");
+#endif
         }
         else if (ret == 'v')
             yaz_log_init_level (yaz_log_mask_str(arg));