pgsql: Revert addition of PGDLLEXPORT in PG_FUNCTION_INFO_V1 macro.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Revert addition of PGDLLEXPORT in PG_FUNCTION_INFO_V1 macro.
Дата
Msg-id E1buRbY-0000Bd-6E@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Revert addition of PGDLLEXPORT in PG_FUNCTION_INFO_V1 macro.

This turns out not to be as harmless as I thought: MSVC will complain
if it sees an "extern" declaration without PGDLLEXPORT and then one with.
(Seems fairly silly, given that this can be changed after the fact by the
linker, but there you have it.)  Therefore, contrib modules that have
extern's for V1 functions in header files are falling over in the
buildfarm, since none of those externs are marked PGDLLEXPORT.

We might or might not conclude that we're willing to plaster those
declarations with PGDLLEXPORT in HEAD, but in any case there's no way we're
going to ship this change in the back branches.  Third-party authors would
not thank us for breaking their code in a minor release.  Hence, revert
the addition of PGDLLEXPORT (but let's keep the extra info in the comment).
If we do the other changes we can revert this commit in HEAD.

Per buildfarm.

Branch
------
REL9_5_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/16d41c84f26674ad2fe3cd3f75c83163c91b5619

Modified Files
--------------
src/include/fmgr.h | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: pg_dump's getTypes() needn't retrieve typinput or typoutput anym
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Revert addition of PGDLLEXPORT in PG_FUNCTION_INFO_V1 macro.