Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
59a64e38
Commit
59a64e38
authored
16 years ago
by
Magnus Hagander
Browse files
Options
Downloads
Patches
Plain Diff
Remove references to foreign data wrapper libraries, since they have
been removed. This should unbreak the msvc build again.
parent
32b02332
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tools/msvc/Mkvcbuild.pm
+1
-10
1 addition, 10 deletions
src/tools/msvc/Mkvcbuild.pm
with
1 addition
and
10 deletions
src/tools/msvc/Mkvcbuild.pm
+
1
−
10
View file @
59a64e38
...
...
@@ -3,7 +3,7 @@ package Mkvcbuild;
#
# Package that generates build files for msvc build
#
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.3
6
2009/0
1
/2
1
1
0:30:02
mha Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.3
7
2009/0
2
/2
5
1
7: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
";
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment