Re: Compile failure on nl_langinfo

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Compile failure on nl_langinfo
Дата
Msg-id 20407.1091287458@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Compile failure on nl_langinfo  (Euler Taveira de Oliveira <euler@ufgnet.ufg.br>)
Ответы Re: Compile failure on nl_langinfo
Список pgsql-hackers
Euler Taveira de Oliveira <euler@ufgnet.ufg.br> writes:
> I am using an OpenBSD 3.5. OpenBSD doesn't have 'CODESET' symbol.
> How can we fix it?

> 1) just define it on configure.in when we don't have it. Like this:

You've got to be kidding.  That will cause get_encoding_from_locale to
return some random bit of information (whatever is mapped to zero),
with who-knows-what result.

A configure-time probe seems unnecessary anyway, since we can just do
"#ifdef CODESET" in initdb.c.  The real question is what we should do
if it isn't defined.  We can certainly make get_encoding_from_locale
return NULL, but it looks like initdb will behave moderately
unpleasantly if we do that (ie, force you to specify -E in most cases).
Is there any reasonable fallback behavior?
        regards, tom lane


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: Compile failure on nl_langinfo
Следующее
От: Tom Lane
Дата:
Сообщение: Trapping QUERY_CANCELED: yes, no, maybe?