Re: Other Win32 TODO items?

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: pgsql-hackers-win32 <pgsql-hackers-win32(at)postgresql(dot)org>
Subject: Re: Other Win32 TODO items?
Date: 2003-11-03 04:11:00
Message-ID: 3FA5D554.6040807@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers-win32

Claudio Natoli wrote:

>>To the best of my knowledge, only the command processor cares about
>>this, and you can get around it by quoting the command - see
>>my initdb.c for examples. (this is also why I pass PGDATA via the
>>
>>
>environment and
>
>
>>never via the command line - the Windows command processor is
>>quite dumb about multiple quoted strings). AFAIK direct library calls
>>like stat() or fopen() should accept forward slashes. It may be that
>>libraries other than MSVCRT act differently, although that would be very
>>
>>
>odd,
>
>
>>even for M$.
>>
>>
>
>They will, as long as there isn't a mix of forward and backward slashes,
>which is currently the case in the backend code. Either canonicalize on
>forward, or #define out backslashes in Win32. In either case, it is an
>outstanding TODO item for postgres under win32.
>
>
>

Right. FWIW, I found canonicalization by far the simpler approach -
which I adopted after tying myself in knots doing things the other way.

cheers

andrew

In response to

Responses

Browse pgsql-hackers-win32 by date

  From Date Subject
Next Message Joshua D. Drake 2003-11-06 22:54:40 Committing Resources to Win32
Previous Message Claudio Natoli 2003-11-03 03:57:33 Re: Other Win32 TODO items?