pgsql: Fix MinGW build, broken by my previous patch to add a setlocale(

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: Fix MinGW build, broken by my previous patch to add a setlocale(
Дата
Msg-id E1Qz54u-0006ga-My@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix MinGW build, broken by my previous patch to add a setlocale() wrapper
on Windows. ecpglib doesn't link with libpgport, but picks and compiles
the .c files it needs individually. To cope with that, move the setlocale()
wrapper from chklocale.c to a separate setlocale.c file, and include that
in ecpglib.

Branch
------
REL9_1_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/6952071450befb74ee0bc3c76c17de816cddfc43

Modified Files
--------------
configure                            |    6 ++
configure.in                         |    1 +
src/interfaces/ecpg/ecpglib/Makefile |    6 +-
src/port/chklocale.c                 |  106 -------------------------------
src/port/win32setlocale.c            |  115 ++++++++++++++++++++++++++++++++++
src/tools/msvc/Mkvcbuild.pm          |    2 +-
6 files changed, 126 insertions(+), 110 deletions(-)


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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Fix MinGW build, broken by my previous patch to add a setlocale(
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: pgsql: Allow more include files to be compiled in their own by adding m