diff options
author | mm <mm@FreeBSD.org> | 2010-12-31 17:57:21 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2010-12-31 17:57:21 +0800 |
commit | 6dba3bafe7bbc8ab99d2b6e711ef2217c7b7f6ca (patch) | |
tree | 519f9d51c605f8f94335b8b97d7bbe97904f7d64 /databases/postgresql92-server/files | |
parent | 85608bc50afbd3c31c0785e15350ff6f29add88b (diff) | |
download | freebsd-ports-graphics-6dba3bafe7bbc8ab99d2b6e711ef2217c7b7f6ca.tar.gz freebsd-ports-graphics-6dba3bafe7bbc8ab99d2b6e711ef2217c7b7f6ca.tar.zst freebsd-ports-graphics-6dba3bafe7bbc8ab99d2b6e711ef2217c7b7f6ca.zip |
- Update to 9.0.2
- Unify ICU handling
PR: ports/153245
Approved by: maintainer (timeout)
Diffstat (limited to 'databases/postgresql92-server/files')
-rw-r--r-- | databases/postgresql92-server/files/extra-patch-icu4 | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/databases/postgresql92-server/files/extra-patch-icu4 b/databases/postgresql92-server/files/extra-patch-icu4 new file mode 100644 index 00000000000..bf28a732a2b --- /dev/null +++ b/databases/postgresql92-server/files/extra-patch-icu4 @@ -0,0 +1,46 @@ +--- configure.in.orig 2010-12-17 10:24:25.585364941 +0100 ++++ configure.in 2010-12-17 10:25:08.921592644 +0100 +@@ -947,23 +947,27 @@ + fi + + if test "$with_icu" = yes ; then +- AC_CHECK_LIB(icui18n, ucol_open_44, [], [ +- 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(icui18n, ucol_open_46, [], [ ++ AC_CHECK_LIB(icui18n, ucol_open_44, [], [ ++ 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_44, [], [ +- 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])]) +- ]) +- ]) +- ]) ++ AC_CHECK_LIB(icuuc, ucnv_fromUChars_46, [], [ ++ AC_CHECK_LIB(icuuc, ucnv_fromUChars_44, [], [ ++ 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 + |