Skip to content
Snippets Groups Projects
Commit b0ccb5c7 authored by James David Berry's avatar James David Berry
Browse files

Check for genrb when checking for icu

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@408959 13f79535-47bb-0310-9956-ffa450edef68
parent 4cc07937
No related branches found
No related tags found
No related merge requests found
...@@ -22,8 +22,8 @@ AC_DEFUN([XERCES_ICU_PREFIX], ...@@ -22,8 +22,8 @@ AC_DEFUN([XERCES_ICU_PREFIX],
xerces_cv_icu_prefix= xerces_cv_icu_prefix=
if test x"$with_icu" != x"no"; then if test x"$with_icu" != x"no"; then
search_list="$with_icu /usr/local /usr" search_list="$with_icu /usr/local /usr"
for i in $search_list; do for i in $search_list; do
if test -r "$i/include/unicode/ucnv.h"; then if test -x $i/bin/genrb -a -r $i/include/unicode/ucnv.h; then
xerces_cv_icu_prefix=$i xerces_cv_icu_prefix=$i
break break
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment