diff options
Diffstat (limited to 'Build/source/libs/icu/icu-49.1-PATCHES/patch-05-m4-quoting')
-rw-r--r-- | Build/source/libs/icu/icu-49.1-PATCHES/patch-05-m4-quoting | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Build/source/libs/icu/icu-49.1-PATCHES/patch-05-m4-quoting b/Build/source/libs/icu/icu-49.1-PATCHES/patch-05-m4-quoting deleted file mode 100644 index b9ab520b25d..00000000000 --- a/Build/source/libs/icu/icu-49.1-PATCHES/patch-05-m4-quoting +++ /dev/null @@ -1,19 +0,0 @@ - Correct m4 quoting. - Use AC_LANG_PROGRAM to create a linkable program. - - Without this we get an error msg - sed: can't read conftest.c: No such file or directory - - -diff -ur icu-49.1.orig/source/configure.in icu-49.1/source/configure.in ---- icu-49.1.orig/source/configure.in 2012-03-21 18:38:10.000000000 +0100 -+++ icu-49.1/source/configure.in 2012-03-22 09:54:23.000000000 +0100 -@@ -285,7 +285,7 @@ - ;; - esac - -- AC_LINK_IFELSE(AC_LANG_SOURCE, CHECK_STATIC_OPT_FLAG=yes, CHECK_STATIC_OPT_FLAG=no, ) -+ AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])], [CHECK_STATIC_OPT_FLAG=yes], [CHECK_STATIC_OPT_FLAG=no]) - AC_MSG_RESULT($CHECK_STATIC_OPT_FLAG) - if test "$CHECK_STATIC_OPT_FLAG" = no; then - CPPFLAGS="${OLD_CPPFLAGS}" |