aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/xml.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2007-04-05 01:46:27 +0000
committerBruce Momjian <bruce@momjian.us>2007-04-05 01:46:27 +0000
commit43666e8216b5314184db1405dec6a5d52072f911 (patch)
tree66a0b00722bf7f0cdaa79e0fbab0e1f4c794093c /src/backend/utils/adt/xml.c
parent618aec735c90d812443400901fbc2eb0607cf4e1 (diff)
downloadpostgresql-43666e8216b5314184db1405dec6a5d52072f911.tar.gz
postgresql-43666e8216b5314184db1405dec6a5d52072f911.zip
Improve documentation/warning when --with-libxml is not used in the
installation.
Diffstat (limited to 'src/backend/utils/adt/xml.c')
-rw-r--r--src/backend/utils/adt/xml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/xml.c b/src/backend/utils/adt/xml.c
index 4fea9912834..b0a75a14780 100644
--- a/src/backend/utils/adt/xml.c
+++ b/src/backend/utils/adt/xml.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.39 2007/04/02 03:49:39 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.40 2007/04/05 01:46:27 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -112,7 +112,7 @@ XmlOptionType xmloption;
#define NO_XML_SUPPORT() \
ereport(ERROR, \
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED), \
- errmsg("no XML support in this installation")))
+ errmsg("feature not supported; no libxml support in this installation")))
#define _textin(str) DirectFunctionCall1(textin, CStringGetDatum(str))