Re: multi-install PostgresNode

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: multi-install PostgresNode
Дата
Msg-id 20210128142444.GA31513@alvherre.pgsql
обсуждение исходный текст
Ответ на Re: multi-install PostgresNode  (Andrew Dunstan <andrew@dunslane.net>)
Ответы Re: multi-install PostgresNode  (Andrew Dunstan <andrew@dunslane.net>)
Список pgsql-hackers
On 2021-Jan-28, Andrew Dunstan wrote:

... neat stuff, thanks.

> +            # Windows picks up DLLs from the PATH rather than *LD_LIBRARY_PATH
> +            # choose the right path separator
> +            if ($Config{osname} eq 'MSWin32')
> +            {
> +               $ENV{PATH} = "$inst/bin;$inst/lib;$ENV{PATH}";
> +            }
> +            else
> +            {
> +               $ENV{PATH} = "$inst/bin:$inst/lib:$ENV{PATH}";
> +            }

Hmm, if only Windows needs lib/ in PATH, then we do we add $inst/lib to
PATH even when not Windows?

> +            if (exists $ENV{DYLIB})
> +            {
> +                $ENV{DYLIB} = "$inst/lib:$ENV{DYLIB}";
> +            }
> +            else
> +            {
> +                $ENV{DYLIB} = "$inst/lib}";

Note extra closing } in the string here.

-- 
Álvaro Herrera                            39°49'30"S 73°17'W



В списке pgsql-hackers по дате отправления:

Предыдущее
От: 'Alvaro Herrera'
Дата:
Сообщение: Re: libpq debug log
Следующее
От: Justin Pryzby
Дата:
Сообщение: Re: CREATE INDEX CONCURRENTLY on partitioned index