mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Remove references to foreign data wrapper libraries, since they have
been removed. This should unbreak the msvc build again.
This commit is contained in:
@ -3,7 +3,7 @@ package Mkvcbuild;
|
|||||||
#
|
#
|
||||||
# Package that generates build files for msvc build
|
# 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 Carp;
|
||||||
use Win32;
|
use Win32;
|
||||||
@ -312,15 +312,6 @@ sub mkvcbuild
|
|||||||
$p->AddReference($postgres);
|
$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 = Project::read_file('src\bin\scripts\Makefile');
|
||||||
$mf =~ s{\\s*[\r\n]+}{}mg;
|
$mf =~ s{\\s*[\r\n]+}{}mg;
|
||||||
$mf =~ m{PROGRAMS\s*=\s*(.*)$}m || die 'Could not match in bin\scripts\Makefile' . "\n";
|
$mf =~ m{PROGRAMS\s*=\s*(.*)$}m || die 'Could not match in bin\scripts\Makefile' . "\n";
|
||||||
|
Reference in New Issue
Block a user