Return-Path: Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Delivered-To: mailing list dev@apr.apache.org Received: (qmail 21490 invoked from network); 31 Jan 2001 00:04:59 -0000 Received: from glatton.cnchost.com (207.155.248.47) by h31.sny.collab.net with SMTP; 31 Jan 2001 00:04:59 -0000 Received: from wroweviao (www2.rowe-clan.net [208.176.192.147]) by glatton.cnchost.com id TAA08789; Tue, 30 Jan 2001 19:04:55 -0500 (EST) [ConcentricHost SMTP Relay 1.10] Errors-To: Message-ID: <01ef01c08b19$67baea00$93c0b0d0@wroweviao> From: "William A. Rowe, Jr." To: =?ISO-8859-2?Q?Branko_=C8ibej?= , Cc: References: <20010129171024.29232.qmail@apache.org> <84itmyt8ry.fsf@newton.collab.net> <024701c08a31$980d4150$93c0b0d0@wroweviao> <84bssqt5td.fsf@newton.collab.net> <3A774C45.2040704@xbc.nu> Subject: Re: cvs commit: apr/file_io/win32 filestat.c Date: Tue, 30 Jan 2001 18:04:38 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-2" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N From: "Branko �ibej" Sent: Tuesday, January 30, 2001 5:20 PM > > I'll keep researching the issue over here to see if I can come up with > > a solid solution. I would ask that if developers have a patch that > > they think might in some way break the Win98 build they either verify > > the patch themselves under Win98 or send it to me to validate--I'm > > cool with that if others are. I'd just like to enjoy the luxury of a > > buildable APR on a daily basis like others do. > > Is there anything we need from Win32 that we don't get with the following: > > #define WIN32_LEAN_AND_MEAN > #include > > This omits all sors of crud, and gives reasonably fast compiles, and > sould work on all Win32 platforms. You don't get most UI stuff, but we > don't need it anyway. We do that today. And more. The more is what bit us :-( We want to eliminate other gobs of stuff. Consider that we will let the user do whatever they want before we get our hands into the pot (they could include with any set of restrictions or not before including any apr headers.) Yes, LEAN_AND_MEAN is better than nothing. NOGDI, NOUSER and the rest of our list is even better. Compiling many dozens of sources with no precompiled headers means we want to do our best (for our benefit) to strip down what we can. I haven't even found my way back to apr/httpd-2.0 since that patch. I'm not really looking forward to it, but I will probably hack a better quick fix when I finally get there between tommorow and Friday. Bill