Commit 59a64e38 authored by Magnus Hagander's avatar Magnus Hagander

Remove references to foreign data wrapper libraries, since they have

been removed. This should unbreak the msvc build again.
parent 32b02332
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment