Re: Vista/IPv6

From: Magnus Hagander <magnus(at)hagander(dot)net>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: Peter Eisentraut <peter_e(at)gmx(dot)net>, Dave Page <dpage(at)postgresql(dot)org>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: Vista/IPv6
Date: 2007-04-11 18:30:11
Message-ID: 20070411183011.GD7401@svr2.hagander.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Wed, Apr 11, 2007 at 02:24:08PM -0400, Andrew Dunstan wrote:
> Magnus Hagander wrote:
> >On Wed, Apr 11, 2007 at 02:03:11PM -0400, Andrew Dunstan wrote:
> >
> >>Peter Eisentraut wrote:
> >>
> >>>Am Mittwoch, 11. April 2007 17:06 schrieb Andrew Dunstan:
> >>>
> >>>
> >>>>There is a configure time and a runtime check. The code is below - note
> >>>>the first #ifdef.
> >>>>
> >>>>
> >>>Yeah, the problem is that the msvc build has no intelligence to detect
> >>>the IPv6 APIs to define HAVE_IPV6. So that needs to be developed.
> >>>
> >>>
> >>>
> >>The configure test just looks for a definition of struct sockaddr_in6.
> >>Taking a quick look It seems to me like this is unconditionally there in
> >>the MSVC WS2tcpip.h , so maybe we should just force it for MSVC.
> >>
> >
> >That was my question. I just built with ipv6 enabled using my msvc build on
> >my primary machine which does *not* have ipv6, and it still passes
> >regression tests fine.
> >
> >Given that we have a runtime check, is there any reason at all not to
> >enable ipv6 on all builds on msvc?
> >
> >(FWIW, it's been in the platform SDK at least since Windows 2000)
> >
> >
>
> If we could use configure for MSVC this would have Just Happened (tm). I
> wonder how many other little bits we miss out on?

Well, if you can make that happen, certainly that'd be nice...
(FWIW, I had ipv6 on my list of things to make happen, but I didn't realise
it would cause this issue on a machine with ipv6 on it, since I don't have
one)

> Anyway, the obvious fix seems to be to add a line to
> src/tools/msvc/Solution.pm to #define HAVE_IPV6 1 in pg_config.h

Won't work, that hits both msvc and mingw. (assuming you maen
pg_config.h.win32, since pg_config.h is a generated file)

The proper fix is to put it in the msvc build sys, where it writes
pg_config.h :-) It also needs a new lib for initdb. I have a patch
for it, and it works here, I'm just asking if it's safe to enable it or if
it may cause runtmie problems on platforms without ipv6.

//Magnus

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrew Dunstan 2007-04-11 18:36:25 Re: Vista/IPv6
Previous Message Andrew Dunstan 2007-04-11 18:24:08 Re: Vista/IPv6