diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2007-01-07 21:10:41 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2007-01-07 21:10:41 +0000 |
| commit | de9aa5a7b4d9696b1daceba01d155cbd783bc883 (patch) | |
| tree | dbd802eea7fb3837798c4f3854097d12599100b3 /configure.in | |
| parent | fe733968eabdabffa0ba4965263a49640575f741 (diff) | |
| download | postgresql-de9aa5a7b4d9696b1daceba01d155cbd783bc883.tar.gz | |
Check and document minimum required version of libxml.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index f50976aaf4..893722fbf6 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $PostgreSQL: pgsql/configure.in,v 1.495 2007/01/05 22:19:17 momjian Exp $ +dnl $PostgreSQL: pgsql/configure.in,v 1.496 2007/01/07 21:10:40 petere Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -724,7 +724,7 @@ if test "$with_pam" = yes ; then fi if test "$with_libxml" = yes ; then - AC_CHECK_LIB(xml2, xmlInitParser, [], [AC_MSG_ERROR([library 'xml2' is required for XML support])]) + AC_CHECK_LIB(xml2, xmlSaveToBuffer, [], [AC_MSG_ERROR([library 'xml2' (version >= 2.6.23) is required for XML support])]) fi |
