Re: [BUGS] 7.0beta1: bugs appearing on cygwin

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Marko Kreen <marko(at)l-t(dot)ee>, pgsql-bugs(at)postgreSQL(dot)org
Subject: Re: [BUGS] 7.0beta1: bugs appearing on cygwin
Date: 2000-02-28 23:26:54
Message-ID: 200002282326.SAA23969@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

> > OK, I am confused. We have HAVE_SNPRINTF, but I don't see it being used
> > anywhere. Is it still relivant to our code? Does NT not have snprintf?
>
> Probably ecpg needs to import the ports/snprintf module if it exists.
> See psql, which does this already.

Doing that now. Thanks.

>
> >> 2) gcc warns about redefine of CURRENT_TIME. Nothing
> >> serious (I mean the compile does not fail..), I just thought I mention.
> >> defined in backend/parse.h & <sys/ipc.h> (cygwin32_ipc-1.03)
> >
> > Seems this is getting in our way. We could try undefining it before
> > defining it, I guess. I don't think it affects the compile.
>
> I wonder whether it is possible to avoid including <sys/ipc.h> in the
> files that need to include parse.h. Which files show the warning,
> anyway?

Probably possible. Not sure. Perhaps the user can supply a patch.
Even:

#ifndef CURRENT_TIME
#include <ipc.h>
#endif

may work.

--
Bruce Momjian | http://www.op.net/~candle
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Peter Eisentraut 2000-02-29 11:22:31 Re: [BUGS] initdb and version 7
Previous Message Tom Lane 2000-02-28 23:12:18 Re: [BUGS] 7.0beta1: bugs appearing on cygwin