Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit74a72ec

Browse files
committed
Rename msvc build option krb5 to gss
In the MSVC build system we've never separated krb5 from gss,and always built them both. Since the removal of native krb5support, this parameter only controls GSSAPI, so rename itaccordingly.
1 parent98de86e commit74a72ec

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

‎src/tools/msvc/Solution.pm

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
219219
print O"#define HAVE_LIBXSLT\n";
220220
print O"#define USE_LIBXSLT\n";
221221
}
222-
if ($self->{options}->{krb5})
222+
if ($self->{options}->{gss})
223223
{
224224
print O"#define ENABLE_GSS 1\n";
225225
}
@@ -494,14 +494,14 @@ sub AddProject
494494
$proj->AddIncludeDir($self->{options}->{nls} .'\include');
495495
$proj->AddLibrary($self->{options}->{nls} .'\lib\libintl.lib');
496496
}
497-
if ($self->{options}->{krb5})
497+
if ($self->{options}->{gss})
498498
{
499-
$proj->AddIncludeDir($self->{options}->{krb5} .'\inc\krb5');
500-
$proj->AddLibrary($self->{options}->{krb5} .'\lib\i386\krb5_32.lib');
499+
$proj->AddIncludeDir($self->{options}->{gss} .'\inc\krb5');
500+
$proj->AddLibrary($self->{options}->{gss} .'\lib\i386\krb5_32.lib');
501501
$proj->AddLibrary(
502-
$self->{options}->{krb5} .'\lib\i386\comerr32.lib');
502+
$self->{options}->{gss} .'\lib\i386\comerr32.lib');
503503
$proj->AddLibrary(
504-
$self->{options}->{krb5} .'\lib\i386\gssapi32.lib');
504+
$self->{options}->{gss} .'\lib\i386\gssapi32.lib');
505505
}
506506
if ($self->{options}->{iconv})
507507
{
@@ -621,7 +621,7 @@ sub GetFakeConfigure
621621
$cfg .=' --with-ossp-uuid'if ($self->{options}->{uuid});
622622
$cfg .=' --with-libxml'if ($self->{options}->{xml});
623623
$cfg .=' --with-libxslt'if ($self->{options}->{xslt});
624-
$cfg .=' --with-gssapi'if ($self->{options}->{krb5});
624+
$cfg .=' --with-gssapi'if ($self->{options}->{gss});
625625
$cfg .=' --with-tcl'if ($self->{options}->{tcl});
626626
$cfg .=' --with-perl'if ($self->{options}->{perl});
627627
$cfg .=' --with-python'if ($self->{options}->{python});

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp