From test-dev-return-571-apmail-httpd-test-dev-archive=httpd.apache.org@httpd.apache.org Tue Nov 20 06:28:47 2001 Return-Path: Delivered-To: apmail-httpd-test-dev-archive@httpd.apache.org Received: (qmail 29812 invoked by uid 500); 20 Nov 2001 06:28:46 -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 Received: (qmail 29799 invoked from network); 20 Nov 2001 06:28:46 -0000 Date: Mon, 19 Nov 2001 22:28:57 -0800 From: Aaron Bannert To: test-dev@httpd.apache.org Subject: Re: compiling http 2.0 / flood on Redhat 6.2 Message-ID: <20011119222857.J18738@clove.org> References: <9DFB35E4-DD4D-11D5-AF20-000393464EDC@neonova.net> <5DF3A584-DD60-11D5-AF20-000393464EDC@neonova.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5DF3A584-DD60-11D5-AF20-000393464EDC@neonova.net> User-Agent: Mutt/1.3.23i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Mon, Nov 19, 2001 at 09:43:23PM -0500, Mark Evans wrote: > I found another problem! I followed the directions again, after > resolving my previous PATH_MAX problem, I can now build httpd-2.0, > however, when I tried to build flood, > > Sorry if I'm being a bother... > > this is what I got: > [snip] I have also had this problem, and I suspect it is because you are either building shared versions of httpd (ie --with-mods-shared=...) or there is something broken. The problem is that there are three libs that are for some reason not being linked against your flood executable: libcrypt, libpthread, and libdl. The workaround is to manually specify these in the param list to the link command, as "-lcrypt -lpthread -ldl". If I get some more time I'll try to look into this some more. -aaron