Advertisement
Guest User

configure.patch

a guest
Oct 17th, 2010
1,427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. *** ../../icu-clean/source/configure 2010-03-15 23:15:14.000000000 -0600
  2. --- configure 2010-03-18 13:53:38.760939800 -0600
  3. ***************
  4. *** 654,659 ****
  5. --- 654,660 ----
  6. LAYOUT_TRUE
  7. ICUIO_TRUE
  8. EXTRAS_TRUE
  9. + TOOLS_TRUE
  10. U_CHECK_UTF16_STRING
  11. U_CHECK_GNUC_UTF16_STRING
  12. U_SIZEOF_WCHAR_T
  13. ***************
  14. *** 805,810 ****
  15. --- 806,812 ----
  16. enable_weak_threads
  17. with_iostream
  18. enable_extras
  19. + enable_tools
  20. enable_icuio
  21. enable_layout
  22. with_data_packaging
  23. ***************
  24. *** 1463,1468 ****
  25. --- 1465,1471 ----
  26. --enable-threads build ICU with thread safety default=yes
  27. --enable-weak-threads weakly reference the threading library default=no
  28. --enable-extras build ICU extras default=yes
  29. + --enable-tools build ICU tools default = yes
  30. --enable-icuio build ICU's icuio library default=yes
  31. --enable-layout build ICU's layout library default=yes
  32. --enable-tests build ICU tests default=yes
  33. ***************
  34. *** 10969,10975 ****
  35.  
  36.  
  37. U_SIZEOF_WCHAR_T=$ac_cv_sizeof_wchar_t
  38. ! # We do this check to verify that everything is okay.
  39. if test $U_SIZEOF_WCHAR_T = 0; then
  40. if test $U_HAVE_WCHAR_H=1; then
  41. { { $as_echo "$as_me:$LINENO: error: There is wchar.h but the size of wchar_t is 0" >&5
  42. --- 10972,10978 ----
  43.  
  44.  
  45. U_SIZEOF_WCHAR_T=$ac_cv_sizeof_wchar_t
  46. ! #We do this check to verify that everything is okay.
  47. if test $U_SIZEOF_WCHAR_T = 0; then
  48. if test $U_HAVE_WCHAR_H=1; then
  49. { { $as_echo "$as_me:$LINENO: error: There is wchar.h but the size of wchar_t is 0" >&5
  50. ***************
  51. *** 11214,11219 ****
  52. --- 11217,11244 ----
  53. else
  54. EXTRAS_TRUE='#'
  55. fi
  56. +
  57. +
  58. + # Enable/disable tools
  59. + # Check whether --enable-tools was given.
  60. + if test "${enable_tools+set}" = set; then
  61. + enableval=$enable_tools; case "${enableval}" in
  62. + yes) tools=true ;;
  63. + no) tools=false ;;
  64. + *) { { $as_echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-tools" >&5
  65. + $as_echo "$as_me: error: bad value ${enableval} for --enable-tools" >&2;}
  66. + { (exit 1); exit 1; }; } ;;
  67. + esac
  68. + else
  69. + tools=true
  70. + fi
  71. +
  72. +
  73. + if test "$tools" = true; then
  74. + TOOLS_TRUE=
  75. + else
  76. + TOOLS_TRUE=#
  77. + fi
  78. # Check whether --enable-icuio was given.
  79. if test "${enable_icuio+set}" = set; then
  80. enableval=$enable_icuio; case "${enableval}" in
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement