Re: pgsql: New versions of mingw have gettimeofday(), so add an autoconf

Lists: pgsql-committerspgsql-hackers
From: mha(at)postgresql(dot)org (Magnus Hagander)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: New versions of mingw have gettimeofday(), so add an autoconf
Date: 2007-10-29 11:25:42
Message-ID: 20071029112542.9E1DF754229@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-committers pgsql-hackers

Log Message:
-----------
New versions of mingw have gettimeofday(), so add an autoconf test
for this.

Modified Files:
--------------
pgsql:
configure (r1.565 -> r1.566)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/configure?r1=1.565&r2=1.566)
configure.in (r1.531 -> r1.532)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.in?r1=1.531&r2=1.532)
pgsql/src/include:
pg_config.h.in (r1.124 -> r1.125)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/pg_config.h.in?r1=1.124&r2=1.125)
port.h (r1.113 -> r1.114)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/port.h?r1=1.113&r2=1.114)
pgsql/src/include/port:
win32.h (r1.77 -> r1.78)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/port/win32.h?r1=1.77&r2=1.78)


From: Kris Jurka <books(at)ejurka(dot)com>
To: Magnus Hagander <mha(at)postgresql(dot)org>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: pgsql: New versions of mingw have gettimeofday(), so add an autoconf
Date: 2007-11-19 09:50:19
Message-ID: 47415C5B.6050207@ejurka.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-committers pgsql-hackers

Magnus Hagander wrote:
> Log Message:
> -----------
> New versions of mingw have gettimeofday(), so add an autoconf test
> for this.
>

Can we backport this fix? I'm trying to setup a new windows build
environment and this is currently halting my progress for back branches.

Kris Jurka


From: Magnus Hagander <magnus(at)hagander(dot)net>
To: Kris Jurka <books(at)ejurka(dot)com>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: pgsql: New versions of mingw have gettimeofday(), so add an autoconf
Date: 2007-11-21 18:37:25
Message-ID: 1195670245.7256.5.camel@mha-laptop.clients.sollentuna.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-committers pgsql-hackers


On Mon, 2007-11-19 at 02:50 -0700, Kris Jurka wrote:
> Magnus Hagander wrote:
> > Log Message:
> > -----------
> > New versions of mingw have gettimeofday(), so add an autoconf test
> > for this.
> >
>
> Can we backport this fix? I'm trying to setup a new windows build
> environment and this is currently halting my progress for back branches.

Technically, it's fairly easy. And given that it's been working for a
couple of betas of 8.3, it seems it should be safe. OTOH, the official
build for 8.3 doesn't use it, so binary testers haven't seen it. But any
issues should've been build issues rather than runtime ones, I think.

So yeah, it would be reasonably easy to do, and probably a good idea.
Anybody think we shouldn't?

//Magnus


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Magnus Hagander <magnus(at)hagander(dot)net>
Cc: Kris Jurka <books(at)ejurka(dot)com>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: Re: pgsql: New versions of mingw have gettimeofday(), so add an autoconf
Date: 2007-11-21 20:33:53
Message-ID: 17470.1195677233@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-committers pgsql-hackers

Magnus Hagander <magnus(at)hagander(dot)net> writes:
> On Mon, 2007-11-19 at 02:50 -0700, Kris Jurka wrote:
>> Can we backport this fix? I'm trying to setup a new windows build
>> environment and this is currently halting my progress for back branches.

> Technically, it's fairly easy. And given that it's been working for a
> couple of betas of 8.3, it seems it should be safe. OTOH, the official
> build for 8.3 doesn't use it, so binary testers haven't seen it. But any
> issues should've been build issues rather than runtime ones, I think.

> So yeah, it would be reasonably easy to do, and probably a good idea.
> Anybody think we shouldn't?

Given that we're abandoning support for 8.0 and 8.1 on Windows,
I'd say +1 for fixing 8.2, but not for any older branches.

regards, tom lane


From: Magnus Hagander <magnus(at)hagander(dot)net>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Kris Jurka <books(at)ejurka(dot)com>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: Re: pgsql: New versions of mingw have gettimeofday(), so add an autoconf
Date: 2007-11-29 16:44:37
Message-ID: 20071129164437.GC11857@svr2.hagander.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-committers pgsql-hackers

On Wed, Nov 21, 2007 at 03:33:53PM -0500, Tom Lane wrote:
> Magnus Hagander <magnus(at)hagander(dot)net> writes:
> > On Mon, 2007-11-19 at 02:50 -0700, Kris Jurka wrote:
> >> Can we backport this fix? I'm trying to setup a new windows build
> >> environment and this is currently halting my progress for back branches.
>
> > Technically, it's fairly easy. And given that it's been working for a
> > couple of betas of 8.3, it seems it should be safe. OTOH, the official
> > build for 8.3 doesn't use it, so binary testers haven't seen it. But any
> > issues should've been build issues rather than runtime ones, I think.
>
> > So yeah, it would be reasonably easy to do, and probably a good idea.
> > Anybody think we shouldn't?
>
> Given that we're abandoning support for 8.0 and 8.1 on Windows,
> I'd say +1 for fixing 8.2, but not for any older branches.

Done.

//Magnus