summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2007-01-07 18:13:55 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2007-01-07 18:13:55 +0000
commit54901909d5448b2ebb7f7b4fc20267609a6d3075 (patch)
treed415bdfabf7970acfd122db8667f82df1b2a3c03 /CHANGES
parentd8d292120ec0ede69d877ba5282957f02add4214 (diff)
downloadlibapr-util-54901909d5448b2ebb7f7b4fc20267609a6d3075.tar.gz
Rewrite expat detection to test for the presence of expat using the
compiler and linker rather than "test -r": * build/apu-conf.m4 (APU_TRY_EXPAT_LINK, APU_SYSTEM_EXPAT): New macros. (APU_TEST_EXPAT): Remove macro. (APU_FIND_EXPAT): Rewrite to use APU_SYSTEM_EXPAT; should retain working builds in all useful cases which worked previously. Drops export of "APR_XML_SUBDIRS", which was unused since the conversion to gen-build.py. * xml/apr_xml.c: Include expat header using name and path determined by configure. Notable deliberate changes: 1. drops support for building a bundled expat in a "xml/expat-cvs" directory (rather than the normal still-supported "xml/expat") 2. does not attempt to fail gracefully at configure-time if you "rm -rf xml/expat" then attempt to use the bundled expat build PR: 28205 git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@493791 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 216efbfe..3aebe317 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
Changes with APR-util 1.3.0
+ *) Rewrite detection of expat in configure to fix build on e.g. biarch
+ Linux platforms. PR 28205. [Joe Orton]
+
*) Add apr_thread_pool implementation. [Henry Jen <henryjen ztune.net>]
*) Add support for Berkeley DB 4.5 to the configure scripts.