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

Commit 59a64e3

Browse files
committed
Remove references to foreign data wrapper libraries, since they have
been removed. This should unbreak the msvc build again.
1 parent 32b0233 commit 59a64e3

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/tools/msvc/Mkvcbuild.pm

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Mkvcbuild;
33
#
44
# Package that generates build files for msvc build
55
#
6-
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.36 2009/01/21 10:30:02 mha Exp $
6+
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.37 2009/02/25 17:42:19 mha Exp $
77
#
88
use Carp;
99
use Win32;
@@ -312,15 +312,6 @@ sub mkvcbuild
312312
$p->AddReference($postgres);
313313
}
314314

315-
$mf = Project::read_file('src\backend\foreign\Makefile');
316-
$mf =~ s{\\s*[\r\n]+}{}mg;
317-
$mf =~ m{FDW\s*=\s*(.*)$}m || die 'Could not match in foreign makefile' . "\n";
318-
foreach my $foreign (split /\s+/,$1)
319-
{
320-
my $proj = $solution->AddProject($foreign . '_fdw', 'dll', 'foreign', 'src\backend\foreign\\' . $foreign);
321-
$proj->AddReference($postgres);
322-
}
323-
324315
$mf = Project::read_file('src\bin\scripts\Makefile');
325316
$mf =~ s{\\s*[\r\n]+}{}mg;
326317
$mf =~ m{PROGRAMS\s*=\s*(.*)$}m || die 'Could not match in bin\scripts\Makefile' . "\n";

0 commit comments

Comments
 (0)