We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 194c8f7 commit c26ac22Copy full SHA for c26ac22
src/tools/msvc/Install.pm
@@ -312,6 +312,7 @@ sub CopyContribFiles
312
next if ($d eq "uuid-ossp"&& !defined($config->{uuid}));
313
next if ($d eq "sslinfo" && !defined($config->{openssl}));
314
next if ($d eq "xml2" && !defined($config->{xml}));
315
+ next if ($d eq "sepgsql");
316
317
my $mf = read_file("contrib/$d/Makefile");
318
$mf =~ s{\\s*[\r\n]+}{}mg;
src/tools/msvc/Mkvcbuild.pm
@@ -356,6 +356,9 @@ sub mkvcbuild
356
push @contrib_excludes,'uuid-ossp';
357
}
358
359
+ # No SELinux support for Windows.
360
+ push @contrib_excludes,'sepgsql';
361
+
362
# Pgcrypto makefile too complex to parse....
363
my $pgcrypto = $solution->AddProject('pgcrypto','dll','crypto');
364
$pgcrypto->AddFiles(
0 commit comments