Exclude sepgsql from MSVC regression testing as well
authorMagnus Hagander <magnus@hagander.net>
Mon, 24 Jan 2011 07:24:31 +0000 (08:24 +0100)
committerMagnus Hagander <magnus@hagander.net>
Mon, 24 Jan 2011 07:24:31 +0000 (08:24 +0100)
In passing, change exclusion in the build to follow the
same pattern as other always-excluded modules.

src/tools/msvc/Mkvcbuild.pm
src/tools/msvc/vcregress.pl

index 44d11e1fae8147692b0c129a52527ab59d3b6d3e..35b9f86ca990d4ab33aec65c00a279285540ce43 100644 (file)
@@ -36,7 +36,7 @@ my $contrib_extrasource = {
     'cube' => ['cubescan.l','cubeparse.y'],
     'seg' => ['segscan.l','segparse.y']
 };
-my @contrib_excludes = ('pgcrypto','intagg');
+my @contrib_excludes = ('pgcrypto','intagg','sepgsql');
 
 sub mkvcbuild
 {
@@ -356,9 +356,6 @@ sub mkvcbuild
         push @contrib_excludes,'uuid-ossp';
     }
 
-    # No SELinux support for Windows.
-    push @contrib_excludes,'sepgsql';
-
     # Pgcrypto makefile too complex to parse....
     my $pgcrypto = $solution->AddProject('pgcrypto','dll','crypto');
     $pgcrypto->AddFiles(
index deac341ebdceeb264b95d1f02a78440cc5aed3d3..f3024f26ca67ce5597f94bd0dfc6c62ded8c87f6 100644 (file)
@@ -186,6 +186,7 @@ sub contribcheck
     my $mstat = 0;
     foreach my $module (glob("*"))
     {
+        next if ($module eq 'sepgsql');
         next if ($module eq 'xml2' && !$config->{xml});
         next
           unless -d "$module/sql"