From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Reini Urban <rurban(at)x-ray(dot)at> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: APR 1.0 released |
Date: | 2004-09-10 15:24:07 |
Message-ID: | 200409101524.i8AFO7C18879@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2004-09-10 15:35:40 | Re: row wise comparison broken |
Previous Message | Tom Lane | 2004-09-10 15:19:13 | Re: Failed assertion, CVS head |