diff options
author | fielding <fielding@13f79535-47bb-0310-9956-ffa450edef68> | 2001-02-17 11:15:46 +0000 |
---|---|---|
committer | fielding <fielding@13f79535-47bb-0310-9956-ffa450edef68> | 2001-02-17 11:15:46 +0000 |
commit | 67cc81e13d9670cf3584fe165f5e3654e6d74de7 (patch) | |
tree | 7cf9342afd21bdd554abf65cfe8a02896ea90552 /buildconf | |
parent | 57ab81ab52a5c6cff08a7d5719d6dd2e54f7bcd8 (diff) | |
download | libapr-67cc81e13d9670cf3584fe165f5e3654e6d74de7.tar.gz |
Moved hints.m4, apr_common.m4, and helpers/apr-conf.m4 into the
new build directory as apr_hints.m4, apr_common.m4, apr_network.m4,
and apr_threads.m4. None of the macro code has changed for this
pass -- only the location. More changes to come.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61241 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -7,9 +7,17 @@ libtoolize=`helpers/PrintPath glibtoolize libtoolize` ltpath=`dirname $libtoolize` ltfile=`cd $ltpath/../share/aclocal ; pwd`/libtool.m4 echo "Incorporating $ltfile into aclocal.m4 ..." -echo "dnl THIS FILE IS AUTOMATICALLY GENERATED BY buildconf" > aclocal.m4 -echo "dnl edits here will be lost" >> aclocal.m4 -cat helpers/apr-conf.m4 apr_common.m4 hints.m4 $ltfile >> aclocal.m4 +cat > aclocal.m4 <<EOF +dnl THIS FILE IS AUTOMATICALLY GENERATED BY buildconf +dnl Edits here will be lost + +sinclude(build/apr_common.m4) +sinclude(build/apr_network.m4) +sinclude(build/apr_threads.m4) +sinclude(build/apr_hints.m4) + +EOF +cat $ltfile >> aclocal.m4 # # Create the libtool helper files |