Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 22744 invoked by uid 500); 30 Aug 2001 06:27:22 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 22723 invoked from network); 30 Aug 2001 06:27:21 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Ryan Bloom Reply-To: rbb@covalent.net Organization: Covalent Technologies To: dev@httpd.apache.org, "William A. Rowe, Jr." Subject: Re: cvs commit: httpd-2.0/os/unix unixd.h Date: Wed, 29 Aug 2001 23:28:08 -0700 X-Mailer: KMail [version 1.3] References: <20010830051142.52772.qmail@icarus.apache.org> <0d6a01c1311b$952df6a0$94c0b0d0@roweclan.net> In-Reply-To: <0d6a01c1311b$952df6a0$94c0b0d0@roweclan.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20010830062809.2010846993@koj.rkbloom.net> X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Status: O X-Status: X-Keywords: X-UID: 1599 On Wednesday 29 August 2001 23:18, William A. Rowe, Jr. wrote: > Two general unix problems to fix before tommorows tag. > > From: > Sent: Thursday, August 30, 2001 12:11 AM > > > wrowe 01/08/29 22:11:42 > > > > Modified: os/unix unixd.h > > Log: > > No under cygwin. > > > > Revision Changes Path > > 1.26 +4 -0 httpd-2.0/os/unix/unixd.h > > > > Index: unixd.h > > =================================================================== > > +#ifdef HAVE_SYS_TYPES_H > > #include > > +#endif > > +#ifdef HAVE_SYS_IPC_H > > #include > > +#endif > > I know HAVE_SYS_TYPES_H is lying around, dunno if we need a new > HAVE_SYS_IPC_H test. Actually, we don't have either. I'm fixing in the next few minutes. > Also, please review and commit (or reject) the following patch; > > From: "Stipe Tolj" > Sent: Saturday, August 11, 2001 6:35 AM > > > * srclib/apr/file_io/unix/dir.c: changed a suspicious #ifdef > > statement. Is this a missconfiguration of thread vs. non-thread #ifdef > > exclusion?!?! > > --- httpd-2_0_22/srclib/apr/file_io/unix/dir.c Fri Jun 15 20:04:43 2001 > +++ httpd-2_0_22-cygwin/srclib/apr/file_io/unix/dir.c Thu Aug 9 10:00:09 > 2001 @@ -112,7 +112,7 @@ > { > apr_status_t ret = 0; > #if APR_HAS_THREADS && defined(_POSIX_THREAD_SAFE_FUNCTIONS) \ > - && !defined(READDIR_IS_THREAD_SAFE) > + && defined(READDIR_IS_THREAD_SAFE) > struct dirent *retent; > > ret = readdir_r(thedir->dirstruct, thedir->entry, &retent); > > > I'm not exactly certain _what_ READDIR_IS_THREAD_SAFE means, that we have a > readdir_r that's useless, or that we have one we aught to use. I already explained this in a previous e-mail. :-) Ryan ______________________________________________________________ Ryan Bloom rbb@apache.org Covalent Technologies rbb@covalent.net --------------------------------------------------------------