Re: Duplicate Symbols - Compiler Warnings

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Duplicate Symbols - Compiler Warnings
Дата
Msg-id 342.1208475176@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Duplicate Symbols - Compiler Warnings  (Terry Lee Tucker <terry@chosen-ones.org>)
Ответы Re: Duplicate Symbols - Compiler Warnings
Список pgsql-general
Terry Lee Tucker <terry@chosen-ones.org> writes:
> Didn't get any nibbles on this one. Can anybody provide any insight on this?

You're complaining in the wrong place ... I dunno what perlAPI.c is, but
it's not part of Postgres.

FWIW, plperl.c seems to work around the issue this way:

#include "postgres.h"
/* Defined by Perl */
#undef _

// include Perl headers here

I'm not sure that's entirely the right solution, because Perl's _ macro
is 100% useless in any project that considers ANSI C a prerequisite,
whereas ours could be useful ... but right now plperl doesn't have any
localization so it doesn't need the _ macro anyway.

            regards, tom lane

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

Предыдущее
От: "Aaron Glenn"
Дата:
Сообщение: Re: In the belly of the beast (MySQLCon)
Следующее
От: Terry Lee Tucker
Дата:
Сообщение: Re: Duplicate Symbols - Compiler Warnings