just configured the latest CVS flood and arp for the latest cygwin (not from CVS)
using autotool-devel: (there's also a new autotool-stable, which needs similar symlinks)
cd /usr/share/aclocal for s in /usr/autotool/devel/share/aclocal/* ; do ln -s $s; done
cd /usr/src/apache/httpd-test/flood
./buildconf
cd apr
./buildconf
cd ..
./configure --enable-ssl --with-capath=/usr/ssl/certs \
--disable-shared
make allworks okay.
I'm not subscribed to test-dev.
This patch below is a minor aesthetic fix for the cygwin /usr/bin/echo which doesn't print "\t".
$ diff -u examples/analyze-relative~ examples/analyze-relative
--- examples/analyze-relative~ 2001-08-28 00:06:42.000000000 +0000
+++ examples/analyze-relative 2002-07-30 10:57:37.000000000 +0000
@@ -9,7 +9,7 @@
fi
echo "Slowest pages on average (worst 5):"
echo " Average times (sec)"
-echo "connect\twrite\tread\tclose\thits\tURL"
+gawk 'BEGIN{printf("connect\twrite\tread\tclose\thits\tURL\n");}'
tail +1 $1 | gawk '
/OK.*https?/ {
split($8, urlarray, /\?/); url = urlarray[1]; ht[url] = url;-- Reini Urban - Programmer - http://inode.at
