Return-Path: Delivered-To: apmail-httpd-test-dev-archive@httpd.apache.org Received: (qmail 71548 invoked by uid 500); 1 Aug 2002 21:12:03 -0000 Mailing-List: contact test-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-dev@httpd.apache.org Delivered-To: moderator for test-dev@httpd.apache.org Received: (qmail 90473 invoked from network); 30 Jul 2002 11:05:45 -0000 Message-ID: <3D467308.70501@inode.at> Date: Tue, 30 Jul 2002 12:05:44 +0100 From: Reini Urban Organization: inode.at User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; de-AT; rv:1.0.0) Gecko/20020530 X-Accept-Language: de-at, de, en-us, en MIME-Version: 1.0 To: test-dev@httpd.apache.org Subject: cygwin notes: needs symlinks Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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 all works 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