Return-Path: Delivered-To: new-httpd-archive@hyperreal.org Received: (qmail 16831 invoked by uid 6000); 21 Apr 1998 03:07:58 -0000 Received: (qmail 16824 invoked from network); 21 Apr 1998 03:07:57 -0000 Received: from valis.worldgate.com (marcs@198.161.84.2) by taz.hyperreal.org with SMTP; 21 Apr 1998 03:07:57 -0000 Received: from localhost (marcs@localhost) by valis.worldgate.com (8.8.7/8.8.7) with SMTP id VAA29298 for ; Mon, 20 Apr 1998 21:07:55 -0600 (MDT) Date: Mon, 20 Apr 1998 21:07:55 -0600 (MDT) From: Marc Slemko To: new-httpd@apache.org Subject: Re: cvs commit: apache-1.3/src/support ab.c In-Reply-To: <19980421014158.20213.qmail@hyperreal.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org On 21 Apr 1998 jim@hyperreal.org wrote: > jim 98/04/20 18:41:57 > > Modified: src/support ab.c > Log: > PR: 2081 > Obtained from: Jens Schleusener > Submitted by: Jim Jagielski > AIX requires sys/select.h > It isn't just AIX. We really need a better way for related programs to gram system-specific settings. Including conf.h is probably nearly almost kinda sorta safe but it doesn't do us any good because we still need to define the OS type which we can't. > Revision Changes Path > 1.5 +3 -1 apache-1.3/src/support/ab.c > > Index: ab.c > =================================================================== > RCS file: /export/home/cvs/apache-1.3/src/support/ab.c,v > retrieving revision 1.4 > retrieving revision 1.5 > diff -u -r1.4 -r1.5 > --- ab.c 1998/03/31 12:53:45 1.4 > +++ ab.c 1998/04/21 01:41:57 1.5 > @@ -99,8 +99,10 @@ > #include > #include > #include > -#include > #include > +#ifdef AIX > +#include > +#endif > > /* ------------------- DEFINITIONS -------------------------- */ > > > > >