Re: Relocatable locale

From: "Magnus Hagander" <mha(at)sollentuna(dot)net>
To: "Peter Eisentraut" <peter_e(at)gmx(dot)net>, "Andrew Dunstan" <andrew(at)dunslane(dot)net>, <pgsql-patches(at)postgresql(dot)org>
Subject: Re: Relocatable locale
Date: 2004-05-27 11:05:38
Message-ID: 6BCB9D8A16AC4241919521715F4D8BCE34BB35@algol.sollentuna.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

> > You wouldn't expect the environment var to be set by an app
> in those
> > cases - it would be set by a sysadmin or an installer on a
> system-wide
> > basis when pg is installed in other than the hardcoded location. At
> > least, that's the way I understood Bruce's suggestion.
>
> Strange. I don't suppose that PostgreSQL is the first
> package using gettext on Windows. How does everyone else handle this?

I don't beleive this is a windows-specific issue. It's a general issue
for all relocateable installs.

As for how to do it - on Windows you *can* get the path of the DLL that
is executing your code, using GetModuleFileName(). Hardly
cross-platform, but can be done.

(The "windows standard" way of doing it is using String Tables as
resources inside the DLL.But that's now what gettext uses, so it's not
relevant unless we'd want to replace gettext (which we don't))

//Magnus

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Peter Eisentraut 2004-05-27 12:04:35 Re: Relocatable locale
Previous Message Magnus Hagander 2004-05-27 10:47:36 Re: pg_ctl.c