On Tue, Mar 05, 2002 at 04:55:54PM -0500, Bill Perkins wrote: > building on a Slackware 8.0 machine, downloaded all the stuff (flood, apr, > apr-util), can't seem to get it to configure properly- errors out with: > > checking for APR... reconfig > configure: error: flood requires a libtool-enabled APR. > > Any ideas on why it should do this? I've gone into the apr/ and apr-util/ > directories, run buildconf and configure in both of them, all with the > same results. Help!
Oops, yeah, that's a bug in our build system. I do plan on cleaning that up. The issue is that APR doesn't install its libtool. If you are using the ./apr layout (i.e. build apr in place), you can apply the following patch. I hope this helps. -- justin Index: configure.in =================================================================== RCS file: /home/cvs/httpd-test/flood/configure.in,v retrieving revision 1.18 diff -u -r1.18 configure.in --- configure.in 27 Feb 2002 04:44:50 -0000 1.18 +++ configure.in 6 Mar 2002 17:58:05 -0000 @@ -112,6 +112,8 @@ if test -x "`$apr_config --prefix`/build/libtool"; then LIBTOOL_PATH="`$apr_config --prefix`/build/libtool" +elif test -x "$top_builddir/apr/libtool"; then + LIBTOOL_PATH="$top_builddir/apr/libtool" else AC_ERROR([flood requires a libtool-enabled APR.]) fi
