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
4fc6e2fd
Commit
4fc6e2fd
authored
Dec 20, 2008
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Teach MSVC build system about building foreign data wrappers.
Should fix recent buildfarm breakage.
parent
6d798718
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
src/tools/msvc/Mkvcbuild.pm
src/tools/msvc/Mkvcbuild.pm
+10
-1
No files found.
src/tools/msvc/Mkvcbuild.pm
View file @
4fc6e2fd
...
...
@@ -3,7 +3,7 @@ package Mkvcbuild;
#
# Package that generates build files for msvc build
#
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.3
4 2008/12/02 10:39:31
mha Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.3
5 2008/12/20 22:04:02
mha Exp $
#
use
Carp
;
use
Win32
;
...
...
@@ -312,6 +312,15 @@ 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";
...
...
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