summaryrefslogtreecommitdiff
path: root/build/ac-macros/aprutil.m4
diff options
context:
space:
mode:
Diffstat (limited to 'build/ac-macros/aprutil.m4')
-rw-r--r--build/ac-macros/aprutil.m430
1 files changed, 6 insertions, 24 deletions
diff --git a/build/ac-macros/aprutil.m4 b/build/ac-macros/aprutil.m4
index 54f5e32..7aace61 100644
--- a/build/ac-macros/aprutil.m4
+++ b/build/ac-macros/aprutil.m4
@@ -38,7 +38,7 @@ AC_DEFUN(SVN_LIB_APRUTIL,
AC_MSG_NOTICE([Apache Portable Runtime Utility (APRUTIL) library configuration])
- APR_FIND_APU("$abs_srcdir/apr-util", "$abs_builddir/apr-util", 1, [1 0])
+ APR_FIND_APU("", "", 1, [1 0])
if test $apu_found = "no"; then
AC_MSG_WARN([APRUTIL not found])
@@ -46,12 +46,12 @@ AC_DEFUN(SVN_LIB_APRUTIL,
fi
if test $apu_found = "reconfig"; then
- SVN_EXTERNAL_PROJECT([apr-util], [--with-apr=../apr])
+ AC_MSG_ERROR([Unexpected APRUTIL reconfig])
fi
dnl check APRUTIL version number against regex
- AC_MSG_CHECKING([APR-UTIL version])
+ AC_MSG_CHECKING([APRUTIL version])
apu_version="`$apu_config --version`"
if test $? -ne 0; then
# This is a hack as suggested by Ben Collins-Sussman. It can be
@@ -76,7 +76,7 @@ AC_DEFUN(SVN_LIB_APRUTIL,
if test $APU_WANTED_REGEX_MATCH -eq 0; then
echo "wanted regexes are $APRUTIL_WANTED_REGEXES"
- AC_MSG_ERROR([invalid apr-util version found])
+ AC_MSG_ERROR([invalid APRUTIL version found])
fi
dnl Get libraries and thread flags from APRUTIL ---------------------
@@ -92,11 +92,6 @@ AC_DEFUN(SVN_LIB_APRUTIL,
AC_MSG_ERROR([apu-config --includes failed])
fi
- SVN_APRUTIL_PREFIX="`$apu_config --prefix`"
- if test $? -ne 0; then
- AC_MSG_ERROR([apu-config --prefix failed])
- fi
-
if test "$enable_all_static" = "yes"; then
SVN_APRUTIL_LIBS="`$apu_config --link-ld --libs`"
if test $? -ne 0; then
@@ -113,7 +108,6 @@ AC_DEFUN(SVN_LIB_APRUTIL,
AC_SUBST(SVN_APRUTIL_INCLUDES)
AC_SUBST(SVN_APRUTIL_CONFIG, ["$apu_config"])
AC_SUBST(SVN_APRUTIL_LIBS)
- AC_SUBST(SVN_APRUTIL_PREFIX)
dnl What version of Expat are we using? -----------------
SVN_HAVE_OLD_EXPAT="`$apu_config --old-expat`"
@@ -127,20 +121,8 @@ dnl no apr-util found, print out a message telling the user what to do
AC_DEFUN(SVN_DOWNLOAD_APRUTIL,
[
echo "The Apache Portable Runtime Utility (APRUTIL) library cannot be found."
- echo "Either install APRUTIL on this system and supply the appropriate"
- echo "--with-apr-util option"
- echo ""
- echo "or"
- echo ""
- echo "get it with SVN and put it in a subdirectory of this source:"
- echo ""
- echo " svn co \\"
- echo " http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x \\"
- echo " apr-util"
- echo ""
- echo "Run that right here in the top level of the Subversion tree."
- echo "Afterwards, run apr-util/buildconf in that subdirectory and"
- echo "then run configure again here."
+ echo "Install APRUTIL on this system and configure Subversion with the"
+ echo " appropriate --with-apr-util option."
echo ""
AC_MSG_ERROR([no suitable APRUTIL found])
])