Re: Remove MSVC scripts from the tree

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема Re: Remove MSVC scripts from the tree
Дата
Msg-id ZYJADzR_80Dy7I9-@paquier.xyz
обсуждение исходный текст
Ответ на Re: Remove MSVC scripts from the tree  (Peter Eisentraut <peter@eisentraut.org>)
Ответы Re: Remove MSVC scripts from the tree  (Peter Eisentraut <peter@eisentraut.org>)
Список pgsql-hackers
On Tue, Dec 19, 2023 at 04:24:02PM +0100, Peter Eisentraut wrote:
> Here are patches for these two issues.  More testing would be appreciated.
>
> --- a/contrib/basebackup_to_shell/meson.build
> +++ b/contrib/basebackup_to_shell/meson.build
> @@ -24,7 +24,7 @@ tests += {
>      'tests': [
>        't/001_basic.pl',
>      ],
> -    'env': {'GZIP_PROGRAM': gzip.path(),
> -            'TAR': tar.path()},
> +    'env': {'GZIP_PROGRAM': gzip.found() ? gzip.path() : '',
> +            'TAR': tar.found() ? tar.path() : '' },
>    },

Hmm.  Interesting.  So this basically comes down to the fact that GZIP
and TAR are required in ./configure because distcheck has a hard
dependency on both, but we don't support this target in meson.  Is
that right?
--
Michael

Вложения

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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: Re: Remove MSVC scripts from the tree
Следующее
От: Masahiko Sawada
Дата:
Сообщение: Re: Improve eviction algorithm in ReorderBuffer