mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 15:20:32 -04:00
53 lines
2.1 KiB
Text
53 lines
2.1 KiB
Text
--- configure.in.orig 2010-12-17 11:17:22.892862951 +0100
|
|
+++ configure.in 2010-12-17 11:17:59.498605923 +0100
|
|
@@ -19,7 +19,7 @@
|
|
|
|
AC_INIT([PostgreSQL], [8.3.13], [pgsql-bugs@postgresql.org])
|
|
|
|
-m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.62], [], [m4_fatal([Autoconf version 2.62 is required.
|
|
+m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.68], [], [m4_fatal([Autoconf version 2.68 is required.
|
|
Untested combinations of 'autoconf' and PostgreSQL versions are not
|
|
recommended. You can remove the check from 'configure.in' but it is then
|
|
your responsibility whether the result works or not.])])
|
|
@@ -795,19 +795,31 @@
|
|
fi
|
|
|
|
if test "$with_icu" = yes ; then
|
|
- 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_50, [], [
|
|
+ AC_CHECK_LIB(icui18n, ucol_open_48, [], [
|
|
+ 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_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_50, [], [
|
|
+ AC_CHECK_LIB(icuuc, ucnv_fromUChars_48, [], [
|
|
+ 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
|
|
|