X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=util%2Fyaz-icu.c;h=f41b93c529a91e5bd08b7674763e6694cd1511a1;hp=dd972493866f57b166c76aa57e9e7b2eebc8a5cd;hb=e089d89f38b4fc61fce16eb03150776844b053f8;hpb=fffad7b88b5fcc5ce744151034d1df379919d6d6 diff --git a/util/yaz-icu.c b/util/yaz-icu.c index dd97249..f41b93c 100644 --- a/util/yaz-icu.c +++ b/util/yaz-icu.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: yaz-icu.c,v 1.8 2007-11-07 09:50:24 adam Exp $ + * $Id: yaz-icu.c,v 1.11 2007-11-08 13:35:14 adam Exp $ */ #if HAVE_CONFIG_H @@ -17,19 +17,22 @@ #include -#if HAVE_ICU +#if YAZ_HAVE_ICU #include #include +#include +#include +#include -#include +#include /* commando line and config parameters */ static struct config_t { char conffile[1024]; char print[1024]; int xmloutput; - struct icu_chain * chain; + yaz_icu_chain_t chain; FILE * infile; FILE * outfile; } config; @@ -425,7 +428,6 @@ static void process_text_file(const struct config_t *p_config) xmlDoc *doc = xmlParseFile(config.conffile); xmlNode *xml_node = xmlDocGetRootElement(doc); - xmlChar *xml_locale = xmlGetProp(xml_node, (xmlChar *) "locale"); long unsigned int token_count = 0; long unsigned int line_count = 0; @@ -439,14 +441,7 @@ static void process_text_file(const struct config_t *p_config) exit (1); } - if (!xml_locale || !strlen((const char *) xml_locale)) - return; - - config.chain = icu_chain_xml_config(xml_node, (const char *) xml_locale, 0, - &status); - - xmlFree(xml_locale); - + config.chain = icu_chain_xml_config(xml_node, 0, &status); if (config.chain && U_SUCCESS(status)) success = 1; @@ -505,13 +500,13 @@ static void process_text_file(const struct config_t *p_config) free(line); } -#endif /* HAVE_ICU */ +#endif /* YAZ_HAVE_ICU */ int main(int argc, char **argv) { -#if HAVE_ICU +#if YAZ_HAVE_ICU read_params(argc, argv, &config); @@ -521,14 +516,14 @@ int main(int argc, char **argv) if (config.print && strlen(config.print)) print_info(&config); -#else /* HAVE_ICU */ +#else /* YAZ_HAVE_ICU */ printf("ICU not available on your system.\n" "Please install libicu36-dev and icu-doc or similar, " "re-configure and re-compile\n"); -#endif /* HAVE_ICU */ +#endif /* YAZ_HAVE_ICU */ return(0); }