Advertisement
Guest User

configure.in.patch

a guest
Nov 3rd, 2011
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. --- configure.in-old 2010-11-04 10:01:19.000000000 -0700
  2. +++ configure.in 2011-11-03 14:16:00.000000000 -0700
  3. @@ -1327,11 +1327,13 @@
  4. if test "$with_icu" != "yes" ; then
  5. echo Disabling ICU support
  6. else
  7. - ICU_CONFIG=icu-config
  8. + ICU_CONFIG=$prefix/bin/icu-config
  9. if ${ICU_CONFIG} --cflags >/dev/null 2>&1
  10. then
  11. - ICU_LIBS=`icu-config --ldflags`
  12. + ICU_LIBS=`$ICU_CONFIG --ldflags`
  13. LDFLAGS="$LDFLAGS $ICU_LIBS"
  14. + ICU_CPPFLAGS=`$ICU_CONFIG --cppflags`
  15. + CPPFLAGS="$CPPFLAGS $ICU_CPPFLAGS"
  16. WITH_ICU=1
  17. echo Enabling ICU support
  18. else
  19.  
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement