Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c26ac22

Browse files
committed
Blind attempt to exclude sepgsql from MSVC build system.
1 parent 194c8f7 commit c26ac22

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/tools/msvc/Install.pm

+1
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ sub CopyContribFiles
312312
next if ($d eq "uuid-ossp"&& !defined($config->{uuid}));
313313
next if ($d eq "sslinfo" && !defined($config->{openssl}));
314314
next if ($d eq "xml2" && !defined($config->{xml}));
315+
next if ($d eq "sepgsql");
315316

316317
my $mf = read_file("contrib/$d/Makefile");
317318
$mf =~ s{\\s*[\r\n]+}{}mg;

src/tools/msvc/Mkvcbuild.pm

+3
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,9 @@ sub mkvcbuild
356356
push @contrib_excludes,'uuid-ossp';
357357
}
358358

359+
# No SELinux support for Windows.
360+
push @contrib_excludes,'sepgsql';
361+
359362
# Pgcrypto makefile too complex to parse....
360363
my $pgcrypto = $solution->AddProject('pgcrypto','dll','crypto');
361364
$pgcrypto->AddFiles(

0 commit comments

Comments
 (0)