Fix macro-redefinition warning on MSVC.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 3 Sep 2017 15:01:08 +0000 (11:01 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 3 Sep 2017 15:01:08 +0000 (11:01 -0400)
commita64a0bfaae0c003f09b7338766fd0b5e21b247b0
tree3d66f0de696bd2a93f2c364c066a179176351b02
parentc109785e385b670302513b1aea062f89f4252d38
Fix macro-redefinition warning on MSVC.

In commit 9d6b160d7, I tweaked pg_config.h.win32 to use
"#define HAVE_LONG_LONG_INT_64 1" rather than defining it as empty,
for consistency with what happens in an autoconf'd build.
But Solution.pm injects another definition of that macro into
ecpg_config.h, leading to justifiable (though harmless) compiler whining.
Make that one consistent too.  Back-patch, like the previous patch.

Discussion: https://postgr.es/m/CAEepm=1dWsXROuSbRg8PbKLh0S=8Ou-V8sr05DxmJOF5chBxqQ@mail.gmail.com
src/tools/msvc/Solution.pm