X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=util%2Fyaz-icu.c;h=c6e7a0e2eb11fb0bfebe497194f211737f581391;hb=479969ddd4d243955f2e64ef8571926429ad4f37;hp=dd972493866f57b166c76aa57e9e7b2eebc8a5cd;hpb=def0d51c189bc8a2e9f5f9a67a58833897edecb7;p=yaz-moved-to-github.git diff --git a/util/yaz-icu.c b/util/yaz-icu.c index dd97249..c6e7a0e 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.9 2007-11-08 08:17:18 adam Exp $ */ #if HAVE_CONFIG_H @@ -17,7 +17,7 @@ #include -#if HAVE_ICU +#if YAZ_HAVE_ICU #include #include @@ -505,13 +505,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 +521,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); }