Commit 3854c29d 3854c29d5687a5ed7cd325f25ebdc25187e67651 by Sergey Poznyakoff

Require gettext 0.15

 (check_bdb): Bugfix
1 parent 1c9a8e22
...@@ -75,7 +75,7 @@ status_pgsql=no ...@@ -75,7 +75,7 @@ status_pgsql=no
75 75
76 dnl Internationalization macros. 76 dnl Internationalization macros.
77 AM_GNU_GETTEXT([external], [need-ngettext]) 77 AM_GNU_GETTEXT([external], [need-ngettext])
78 AM_GNU_GETTEXT_VERSION(0.14.1) 78 AM_GNU_GETTEXT_VERSION(0.15)
79 AM_ICONV 79 AM_ICONV
80 AC_CHECK_HEADERS(iconv.h) 80 AC_CHECK_HEADERS(iconv.h)
81 AC_CHECK_TYPE(iconv_t,:, 81 AC_CHECK_TYPE(iconv_t,:,
...@@ -916,6 +916,9 @@ check_bdb() { ...@@ -916,6 +916,9 @@ check_bdb() {
916 [], 916 [],
917 [AC_MSG_ERROR([DB Library and header versions don't match]) 917 [AC_MSG_ERROR([DB Library and header versions don't match])
918 status_bdb=no]) 918 status_bdb=no])
919 if test $status_bdb != no; then
920 AC_DEFINE_UNQUOTED(WITH_BDB,$ver)
921 fi
919 fi 922 fi
920 } 923 }
921 924
......