diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-08-17 00:05:33 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-08-17 00:05:33 -0400 |
commit | 33f40976a716287ecddfb01f446797d8df215125 (patch) | |
tree | bd91603a51ad92145a9fac10341f9b10d9c8f8c0 /src/include | |
parent | 26893906896d25b0119c57c90474c153bb8083c9 (diff) | |
download | postgresql-33f40976a716287ecddfb01f446797d8df215125.tar.gz postgresql-33f40976a716287ecddfb01f446797d8df215125.zip |
Check LIBXML_VERSION instead of testing in configure script.
We had put a test for libxml2's xmlStructuredErrorContext variable in
configure, but of course that doesn't work on Windows builds. The next
best alternative seems to be to test the LIBXML_VERSION symbol provided
by xmlversion.h.
Per report from Talha Bin Rizwan, though this fixes it in a different way
than his proposed patch.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/pg_config.h.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 5454efdcbe6..8430608bfc8 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -632,9 +632,6 @@ /* Define to 1 if you have the <winldap.h> header file. */ #undef HAVE_WINLDAP_H -/* Define to 1 if your libxml has xmlStructuredErrorContext. */ -#undef HAVE_XMLSTRUCTUREDERRORCONTEXT - /* Define to the appropriate snprintf format for 64-bit ints. */ #undef INT64_FORMAT |