Skip to content

Commit 83999a0

Browse files
author
Justin Erenkrantz
committed
Stop copying APR's libtool. And pass enough parameters to apr's subconfig
so that it can figure out where we would like libtool to be installed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93816 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4c60a91 commit 83999a0

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Changes with Apache 2.0.34-dev
22

3+
*) Stop installing libtool for APR and tell APR where it should place
4+
its copy of libtool (via our installbuildpath layout variable).
5+
[Justin Erenkrantz]
6+
37
*) New directive ProxyIOBufferSize. Sets the size of the buffer used
48
when reading from a remote HTTP server in proxy. [Graham Leggett]
59

Makefile.in

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,7 @@ install-build:
8989
@sed 's#LIBTOOL = \(.*\)#LIBTOOL = $(SHELL) $(installbuilddir)/libtool $(LTFLAGS)#' \
9090
config_vars.mk > $(installbuilddir)/config_vars.mk; \
9191
cp build/*.mk $(installbuilddir); \
92-
cp $(top_srcdir)/build/instdso.sh $(installbuilddir); \
93-
cp srclib/apr/libtool $(installbuilddir); \
94-
if test -f srclib/apr/shlibtool; then \
95-
cp srclib/apr/shlibtool $(installbuilddir); \
96-
fi
92+
cp $(top_srcdir)/build/instdso.sh $(installbuilddir);
9793

9894
htdocs-srcdir = $(top_srcdir)/docs/docroot
9995

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ orig_prefix="$prefix"
5656

5757
echo $ac_n "${nl}Configuring Apache Portable Runtime library ...${nl}"
5858

59-
APR_SUBDIR_CONFIG(srclib/apr, "$apache_apr_flags --prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --bindir=$bindir")
59+
APR_SUBDIR_CONFIG(srclib/apr, "$apache_apr_flags --prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --bindir=$bindir --datadir=$datadir --with-installbuilddir=$installbuilddir")
6060

6161
echo $ac_n "${nl}Configuring Apache Portable Runtime Utility library...${nl}"
6262

0 commit comments

Comments
 (0)