| From: | PG Doc comments form <noreply(at)postgresql(dot)org> |
|---|---|
| To: | pgsql-docs(at)lists(dot)postgresql(dot)org |
| Cc: | brian(dot)y(dot)ye(at)gmail(dot)com |
| Subject: | Error building for 64-bit Windows (10) |
| Date: | 2021-05-17 20:07:02 |
| Message-ID: | 162128202219.27274.12616756784952017465@wrigleys.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-docs |
The following documentation comment has been logged on the website:
Page: https://www.postgresql.org/docs/13/install-windows-full.html
Description:
The Solution.pm file has the following lines:
if ($self->{options}->{gss})
{
$proj->AddIncludeDir($self->{options}->{gss} . '\inc\krb5');
$proj->AddLibrary($self->{options}->{gss} . '\lib\i386\krb5_32.lib');
$proj->AddLibrary($self->{options}->{gss} .
'\lib\i386\comerr32.lib');
$proj->AddLibrary($self->{options}->{gss} .
'\lib\i386\gssapi32.lib');
}
I had to change them to the following or the compiling failed:
if ($self->{options}->{gss})
{
$proj->AddIncludeDir($self->{options}->{gss} . '\include');
$proj->AddIncludeDir($self->{options}->{gss} . '\include\krb5');
$proj->AddLibrary($self->{options}->{gss} . '\lib\amd64\krb5_64.lib');
$proj->AddLibrary($self->{options}->{gss} . '\lib\amd64\comerr64.lib');
$proj->AddLibrary($self->{options}->{gss} . '\lib\amd64\gssapi64.lib');
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Magnus Hagander | 2021-05-17 20:46:21 | Re: [PATCH] fix ICU explorer link in locale documentation |
| Previous Message | Bryn Llewellyn | 2021-05-17 19:10:53 | Re: Where are the legal values for LC_TIME listed? |