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(-) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
