Re: APR 1.0 released - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: APR 1.0 released
Date
Msg-id 200409101524.i8AFO7C18879@candle.pha.pa.us
Whole thread Raw
In response to Re: APR 1.0 released  (Reini Urban <rurban@x-ray.at>)
List pgsql-hackers
OK, change made.  Thanks.

---------------------------------------------------------------------------

> Most of the ~300 cases are ok for CYGWIN. And probably for MINGW also.
> But I don't do MINGW countertests. I assume you do :)
> 
> Just palloc misses some pending fixes for CYGWIN. cvs head didn't has 
> this fixed.
> I'll come with a new patch to cvs HEAD soon.
> I'm quite busy with apache and php porting also.
> And I want to be careful not to break the FRONTEND section.
> 
> At least beta2 needed this patch:
> --- postgresql-8.0.0beta2/src/include/utils/palloc.h.orig    2004-08-29 
> 05:13:11.000000000 +0100
> +++ postgresql-8.0.0beta2/src/include/utils/palloc.h    2004-09-03 
> 14:03:50.279562100 +0100
> @@ -80,7 +80,7 @@
> 
>   #define pstrdup(str)  MemoryContextStrdup(CurrentMemoryContext, (str))
> 
> -#ifdef WIN32
> +#if defined(WIN32) || defined(__CYGWIN__)
>   extern void *pgport_palloc(Size sz);
>   extern char *pgport_pstrdup(const char *str);
>   extern void pgport_pfree(void *pointer);
> 
> 
> -- 
> Reini Urban
> http://xarch.tu-graz.ac.at/home/rurban/
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
> 
>                http://www.postgresql.org/docs/faqs/FAQ.html
> 

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
359-1001+  If your life is a hard drive,     |  13 Roberts Road +  Christ can be your backup.        |  Newtown Square,
Pennsylvania19073
 


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Failed assertion, CVS head
Next
From: Tom Lane
Date:
Subject: Re: row wise comparison broken