Remove references to foreign data wrapper libraries, since they have
been removed. This should unbreak the msvc build again.
This commit is contained in:
parent
32b02332e1
commit
59a64e381c
@ -3,7 +3,7 @@ package Mkvcbuild;
|
||||
#
|
||||
# Package that generates build files for msvc build
|
||||
#
|
||||
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.36 2009/01/21 10:30:02 mha Exp $
|
||||
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.37 2009/02/25 17:42:19 mha Exp $
|
||||
#
|
||||
use Carp;
|
||||
use Win32;
|
||||
@ -312,15 +312,6 @@ sub mkvcbuild
|
||||
$p->AddReference($postgres);
|
||||
}
|
||||
|
||||
$mf = Project::read_file('src\backend\foreign\Makefile');
|
||||
$mf =~ s{\\s*[\r\n]+}{}mg;
|
||||
$mf =~ m{FDW\s*=\s*(.*)$}m || die 'Could not match in foreign makefile' . "\n";
|
||||
foreach my $foreign (split /\s+/,$1)
|
||||
{
|
||||
my $proj = $solution->AddProject($foreign . '_fdw', 'dll', 'foreign', 'src\backend\foreign\\' . $foreign);
|
||||
$proj->AddReference($postgres);
|
||||
}
|
||||
|
||||
$mf = Project::read_file('src\bin\scripts\Makefile');
|
||||
$mf =~ s{\\s*[\r\n]+}{}mg;
|
||||
$mf =~ m{PROGRAMS\s*=\s*(.*)$}m || die 'Could not match in bin\scripts\Makefile' . "\n";
|
||||
|
Loading…
Reference in New Issue
Block a user