diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2012-08-27 13:26:27 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-27 13:33:44 +0200 |
commit | c4ab4d3b2aa01f37bc38485fdee9ed59c68cb770 (patch) | |
tree | 2e3553d656b77956178fefda79ce361b3bb91dd0 | |
parent | c89dab21ea72cf6ce9f831678da251fd6e24341c (diff) |
fdo#53894: Fix ICU version check
Change-Id: I980401f886a6f95d35744b059706aca932af28a7
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 43de70b6a4f6..db2850415d09 100644 --- a/configure.in +++ b/configure.in @@ -8234,12 +8234,12 @@ You can use --with-system-icu-for-build=force to use it anyway.]) if test -z "$SYSTEM_GENCMN"; then AC_MSG_ERROR([\'gencmn\' not found in \$PATH, install the icu development tool \'gencmn\']) fi - if test "$ICU_MAJOR" -ge "5" -o "$ICU_MAJOR" = "4" -a "$ICU_MINOR" -ge "4"; then + if test "$ICU_MAJOR" -ge "49" -o \( "$ICU_MAJOR" = "4" -a "$ICU_MINOR" -ge "4" \); then ICU_RECLASSIFIED_CLOSE_PARENTHESIS="YES" else ICU_RECLASSIFIED_CLOSE_PARENTHESIS="NO" fi - if test "$ICU_MAJOR" -ge "5" -o "$ICU_MAJOR" = "4" -a "$ICU_MINOR" -ge "9"; then + if test "$ICU_MAJOR" -ge "49"; then ICU_RECLASSIFIED_PREPEND_SET_EMPTY="YES" else ICU_RECLASSIFIED_PREPEND_SET_EMPTY="NO" |