From: Tom Lane Date: Thu, 26 Feb 2026 17:26:52 +0000 (-0500) Subject: Fix Solution.pm for change in pg_config.h contents. X-Git-Tag: REL_16_14~100 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=99b0786e0747baf3ce0361c9fe7be6d08db13c50;p=thirdparty%2Fpostgresql.git Fix Solution.pm for change in pg_config.h contents. In commits 1d97e4788 et al, I forgot that pre-v17 branches require updating Solution.pm when changing the set of symbols generated in pg_config.h. Per buildfarm. --- diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index f928be02197..c0ba9076b31 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -399,13 +399,14 @@ sub GenerateFiles PACKAGE_TARNAME => lc qq{"$package_name"}, PACKAGE_URL => qq{"$package_url"}, PACKAGE_VERSION => qq{"$package_version"}, + PG_CXX_PRINTF_ATTRIBUTE => undef, + PG_C_PRINTF_ATTRIBUTE => undef, PG_INT128_TYPE => undef, PG_INT64_TYPE => 'long long int', PG_KRB_SRVNAM => qq{"postgres"}, PG_MAJORVERSION => qq{"$majorver"}, PG_MAJORVERSION_NUM => $majorver, PG_MINORVERSION_NUM => $minorver, - PG_PRINTF_ATTRIBUTE => undef, PG_USE_STDBOOL => 1, PG_VERSION => qq{"$package_version$extraver"}, PG_VERSION_NUM => sprintf("%d%04d", $majorver, $minorver),