Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
59a64e38
Commit
59a64e38
authored
Feb 25, 2009
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove references to foreign data wrapper libraries, since they have
been removed. This should unbreak the msvc build again.
parent
32b02332
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
src/tools/msvc/Mkvcbuild.pm
src/tools/msvc/Mkvcbuild.pm
+1
-10
No files found.
src/tools/msvc/Mkvcbuild.pm
View file @
59a64e38
...
@@ -3,7 +3,7 @@ package Mkvcbuild;
...
@@ -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.3
6 2009/01/21 10:30:02
mha Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.3
7 2009/02/25 17:42:19
mha Exp $
#
#
use
Carp
;
use
Carp
;
use
Win32
;
use
Win32
;
...
@@ -312,15 +312,6 @@ sub mkvcbuild
...
@@ -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";
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment