Skip to content

Commit 825d95e

Browse files
committed
Skip install/test of pgcrypto on MSVC when not built with openssl
Commit db7d1a7 missed a couple of places that needed adjustment now we are not building pgcrypto when openssl is not configured, causing contrib installcheck to fail in such a case.
1 parent fb0745f commit 825d95e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/tools/msvc/Install.pm

+1
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ sub CopyContribFiles
441441
# These configuration-based exclusions must match vcregress.pl
442442
next if ($d eq "uuid-ossp" && !defined($config->{uuid}));
443443
next if ($d eq "sslinfo" && !defined($config->{openssl}));
444+
next if ($d eq "pgcrypto" && !defined($config->{openssl}));
444445
next if ($d eq "xml2" && !defined($config->{xml}));
445446
next if ($d =~ /_plperl$/ && !defined($config->{perl}));
446447
next if ($d =~ /_plpython$/ && !defined($config->{python}));

src/tools/msvc/vcregress.pl

+1
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,7 @@ sub contribcheck
506506
# these configuration-based exclusions must match Install.pm
507507
next if ($module eq "uuid-ossp" && !defined($config->{uuid}));
508508
next if ($module eq "sslinfo" && !defined($config->{openssl}));
509+
next if ($module eq "pgcrypto" && !defined($config->{openssl}));
509510
next if ($module eq "xml2" && !defined($config->{xml}));
510511
next if ($module =~ /_plperl$/ && !defined($config->{perl}));
511512
next if ($module =~ /_plpython$/ && !defined($config->{python}));

0 commit comments

Comments
 (0)