On Sat, 24 Feb 2001 22:33:31 -0800 (PST), [EMAIL PROTECTED] wrote:

>> 2.0.12 is broken on OS/2, caused by gsteins's inline handling patch. It's
>> pretty obscure though so I can't really blame Greg. The changes he made
>> stopped apr_general.h being included from util_uri.c which is where
>> strcasecmp() gets #defined as stricmp() so now I've got a link error on
>> strcasecmp.
>>
>> So Greg, why was the #include <apr_general.h> removed from os/os2/os.h ?
>
>I am about to commit a fix for BeOS.  Justin, thanks for the account.  It
>made this easy to find, and fix.  Patch to be committed as soon as the
>diff is done.  Brian, can you let me know when OS/2 is fixed?  I'll tag
>and roll once we know it is working.  Of course, I'm heading to bed as
>soon as I commit, so the earliest t&r is tomorrow sometime.

Well, I was hoping to get some feedback from Greg but the trivial patch
below will fix it (tested). Feel free to commit if there are no objections,
I'm going to bed (it's 1am here).



Index: include/httpd.h
===================================================================
RCS file: /home/cvs/httpd-2.0/include/httpd.h,v
retrieving revision 1.139
diff -u -r1.139 httpd.h
--- include/httpd.h     2001/02/23 00:50:23     1.139
+++ include/httpd.h     2001/02/25 13:58:41
@@ -78,6 +78,7 @@
 #include "ap_release.h"
 #include "os.h"
 
+#include "apr_general.h"
 #include "apr_tables.h"
 #include "apr_pools.h"
 #include "apr_time.h"

-- 
 ______________________________________________________________________________
 |  Brian Havard                 |  "He is not the messiah!                   |
 |  [EMAIL PROTECTED]  |  He's a very naughty boy!" - Life of Brian |
 ------------------------------------------------------------------------------

Reply via email to