Exclude sepgsql from MSVC regression testing as well
In passing, change exclusion in the build to follow the same pattern as other always-excluded modules.
This commit is contained in:
parent
56d77c9e56
commit
9752080942
@ -36,7 +36,7 @@ my $contrib_extrasource = {
|
|||||||
'cube' => ['cubescan.l','cubeparse.y'],
|
'cube' => ['cubescan.l','cubeparse.y'],
|
||||||
'seg' => ['segscan.l','segparse.y']
|
'seg' => ['segscan.l','segparse.y']
|
||||||
};
|
};
|
||||||
my @contrib_excludes = ('pgcrypto','intagg');
|
my @contrib_excludes = ('pgcrypto','intagg','sepgsql');
|
||||||
|
|
||||||
sub mkvcbuild
|
sub mkvcbuild
|
||||||
{
|
{
|
||||||
@ -356,9 +356,6 @@ sub mkvcbuild
|
|||||||
push @contrib_excludes,'uuid-ossp';
|
push @contrib_excludes,'uuid-ossp';
|
||||||
}
|
}
|
||||||
|
|
||||||
# No SELinux support for Windows.
|
|
||||||
push @contrib_excludes,'sepgsql';
|
|
||||||
|
|
||||||
# Pgcrypto makefile too complex to parse....
|
# Pgcrypto makefile too complex to parse....
|
||||||
my $pgcrypto = $solution->AddProject('pgcrypto','dll','crypto');
|
my $pgcrypto = $solution->AddProject('pgcrypto','dll','crypto');
|
||||||
$pgcrypto->AddFiles(
|
$pgcrypto->AddFiles(
|
||||||
|
@ -186,6 +186,7 @@ sub contribcheck
|
|||||||
my $mstat = 0;
|
my $mstat = 0;
|
||||||
foreach my $module (glob("*"))
|
foreach my $module (glob("*"))
|
||||||
{
|
{
|
||||||
|
next if ($module eq 'sepgsql');
|
||||||
next if ($module eq 'xml2' && !$config->{xml});
|
next if ($module eq 'xml2' && !$config->{xml});
|
||||||
next
|
next
|
||||||
unless -d "$module/sql"
|
unless -d "$module/sql"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user