summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2002-05-14 00:30:02 +0200
committerJustin Erenkrantz <jerenkrantz@apache.org>2002-05-14 00:30:02 +0200
commit8a83dc69e5204d781b07068abe39c760209a810d (patch)
treec9b96875ce3df3606cd05845fb6a4432cdb0823e /configure.in
parentInstead of hardcoding srclib/apr{-util} in the INCLUDES, get the information (diff)
downloadapache2-8a83dc69e5204d781b07068abe39c760209a810d.tar.xz
apache2-8a83dc69e5204d781b07068abe39c760209a810d.zip
Instead of using the hardcoded libtool path of srclib/apr, use the
output of apr-config --apr-libtool. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95072 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index c83dc1aeae..789ff7e5d7 100644
--- a/configure.in
+++ b/configure.in
@@ -140,8 +140,9 @@ case $host in
if test "x$LTFLAGS" = "x"; then
LTFLAGS='--silent'
fi
- LIBTOOL='$(SHELL) $(top_builddir)/srclib/apr/libtool $(LTFLAGS)'
- libtoolversion=`$abs_builddir/srclib/apr/libtool --version`
+ my_libtool=`$apr_config --apr-libtool`
+ LIBTOOL="$my_libtool \$(LTFLAGS)"
+ libtoolversion=`$my_libtool --version`
case $libtoolversion in
*1.4*)
SH_LIBTOOL='$(LIBTOOL)'