mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 06:08:26 -04:00
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.
This commit is contained in:
parent
b9f7ceabd8
commit
99b0786e07
1 changed files with 2 additions and 1 deletions
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Reference in a new issue