diff options
author | Karl Berry <karl@freefriends.org> | 2010-04-08 22:00:33 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-04-08 22:00:33 +0000 |
commit | 04feebd31995270dc7dadba6b82c74abd1ee6ac4 (patch) | |
tree | ed48507cbbac4f86ca0e466f8e90c8a2a74fcf1a /Build/source/libs/icu/configure.ac | |
parent | f94d617d9f7b79ed192f5f109ca2e237ea5afdd7 (diff) |
provide and call new configure option --disable-utf16-string-check, so xetex/bibtexu will compile under gcc 4.4+; tlbuild 7 Apr 2010 15:34:47
git-svn-id: svn://tug.org/texlive/trunk@17756 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu/configure.ac')
-rw-r--r-- | Build/source/libs/icu/configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Build/source/libs/icu/configure.ac b/Build/source/libs/icu/configure.ac index de6c50aa145..fe2f43c93a8 100644 --- a/Build/source/libs/icu/configure.ac +++ b/Build/source/libs/icu/configure.ac @@ -37,6 +37,11 @@ fi # Add '--disable-threads': required for FreeBSD, neither XeTeX nor BibTeXU use threads. # Add '--disable-dyload': neither XeTeX nor BibTeXU use plugins, new in ICU 4.4. icu_config="$icu_config --disable-strict --disable-threads --disable-dyload" + +# Add '--disable-utf16-string-check': gcc 4.4+ supports this, but +# XeTeX/BibTeXU don't need it, and propagating the necessary compiler +# flags as computed by ICU is not easy. +icu_config="$icu_config --disable-utf16-string-check" AC_SUBST([icu_config]) if test "x$cross_compiling" = xyes; then |