diff options
author | Martin Matuska <mm@FreeBSD.org> | 2010-03-25 22:58:11 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2010-03-25 22:58:11 +0000 |
commit | 12c4a1fce70d7c671e4e8319e6f65c30ec7b842b (patch) | |
tree | 61e547362e24839471a9d6f3f24bf13f674b4c46 /databases/postgresql91-server/files | |
parent | 775e3ee22a3520a527a4e368614bd96421e8ac4c (diff) |
Notes
Diffstat (limited to 'databases/postgresql91-server/files')
-rw-r--r-- | databases/postgresql91-server/files/extra-patch-icu4 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/databases/postgresql91-server/files/extra-patch-icu4 b/databases/postgresql91-server/files/extra-patch-icu4 new file mode 100644 index 000000000000..28c8a8cfff33 --- /dev/null +++ b/databases/postgresql91-server/files/extra-patch-icu4 @@ -0,0 +1,30 @@ +--- configure.in.orig 2010-03-25 22:25:10.655197193 +0100 ++++ configure.in 2010-03-25 22:25:13.611658318 +0100 +@@ -945,15 +945,19 @@ + fi + + if test "$with_icu" = yes ; then +- AC_CHECK_LIB(icui18n, ucol_open_3_8, [], [ +- AC_CHECK_LIB(icui18n, ucol_open_3_6, [], [ +- AC_CHECK_LIB(icui18n, ucol_open_3_4, [], [AC_MSG_ERROR([library 'icui18n' is required for ICU])]) +- ]) ++ AC_CHECK_LIB(icui18n, ucol_open_43, [], [ ++ AC_CHECK_LIB(icui18n, ucol_open_3_8, [], [ ++ AC_CHECK_LIB(icui18n, ucol_open_3_6, [], [ ++ AC_CHECK_LIB(icui18n, ucol_open_3_4, [], [AC_MSG_ERROR([library 'icui18n' is required for ICU])]) ++ ]) ++ ]) + ]) +- AC_CHECK_LIB(icuuc, ucnv_fromUChars_3_8, [], [ +- AC_CHECK_LIB(icuuc, ucnv_fromUChars_3_6, [], [ +- AC_CHECK_LIB(icuuc, ucnv_fromUChars_3_4, [], [AC_MSG_ERROR([library 'icuuc' is required for ICU])]) +- ]) ++ AC_CHECK_LIB(icuuc, ucnv_fromUChars_43, [], [ ++ AC_CHECK_LIB(icuuc, ucnv_fromUChars_3_8, [], [ ++ AC_CHECK_LIB(icuuc, ucnv_fromUChars_3_6, [], [ ++ AC_CHECK_LIB(icuuc, ucnv_fromUChars_3_4, [], [AC_MSG_ERROR([library 'icuuc' is required for ICU])]) ++ ]) ++ ]) + ]) + fi + |