From: | PG Bug reporting form <noreply(at)postgresql(dot)org> |
---|---|
To: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Cc: | robionekenobi(at)bluewin(dot)ch |
Subject: | BUG #16896: pg_standby: Missing reference when building on Windows |
Date: | 2021-02-24 21:38:53 |
Message-ID: | 16896-e3b10845948ea52d@postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
The following bug has been logged on the website:
Bug reference: 16896
Logged by: RobiOne (Robert Grange)
Email address: robionekenobi(at)bluewin(dot)ch
PostgreSQL version: 13.2
Operating system: Windows 10
Description:
Hi,
after building on windows (cleant.bat then build.bat Debug', the pg_standby
project is missing references to libpgport and libpgcommon
The error is probalby in src/tools/msvc/Mkvcbuild.pm, as the lines
my @contrib_uselibpgport = ('oid2name', 'vacuumlo');
my @contrib_uselibpgcommon = ('oid2name', 'vacuumlo');
must be
my @contrib_uselibpgport = ('oid2name', 'pg_standby', 'vacuumlo');
my @contrib_uselibpgcommon = ('oid2name', 'pg_standby', 'vacuumlo');
After having added this locally, all worked fine
Robert
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2021-02-24 22:05:29 | Re: Bug: Cannot insert multiple records using DEFAULT keyword for generated column |
Previous Message | Ryan Vinzent | 2021-02-24 20:18:26 | Bug: Cannot insert multiple records using DEFAULT keyword for generated column |