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
01ff8dd7
Commit
01ff8dd7
authored
14 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Fix MSVC build scripts for recent extension-related changes.
Untested, but we'll soon see if the buildfarm likes this.
parent
555353c0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tools/msvc/Install.pm
+31
-6
31 additions, 6 deletions
src/tools/msvc/Install.pm
with
31 additions
and
6 deletions
src/tools/msvc/Install.pm
+
31
−
6
View file @
01ff8dd7
...
...
@@ -56,8 +56,10 @@ sub Install
my
$majorver
=
DetermineMajorVersion
();
print
"
Installing version
$majorver
for
$conf
in
$target
\n
";
EnsureDirectories
(
$target
,
'
bin
','
lib
','
share
','
share/timezonesets
','
share/contrib
','
doc
',
'
doc/contrib
',
'
symbols
',
'
share/tsearch_data
');
EnsureDirectories
(
$target
,
'
bin
',
'
lib
',
'
share
',
'
share/timezonesets
',
'
share/extension
',
'
share/contrib
',
'
doc
',
'
doc/extension
',
'
doc/contrib
',
'
symbols
',
'
share/tsearch_data
');
CopySolutionOutput
(
$conf
,
$target
);
lcopy
(
$target
.
'
/lib/libpq.dll
',
$target
.
'
/bin/libpq.dll
');
...
...
@@ -316,7 +318,27 @@ sub CopyContribFiles
my
$mf
= read_file(
"
contrib
/$d/
Makefile
"
);
$mf
=~ s{
\\
s*[
\r\n
]+}{}mg;
# Note: we currently don't support setting MODULEDIR in the makefile
my
$moduledir
= 'contrib';
my
$flist
= '';
if (
$mf
=~ /^EXTENSION
\
s*=
\
s*(.*)$/m) {
$flist
.= $1}
if (
$flist
ne '')
{
$moduledir
= 'extension';
$flist
= ParseAndCleanRule(
$flist
,
$mf
);
foreach my
$f
(split /
\
s+/,
$flist
)
{
lcopy('contrib/' .
$d
. '/' .
$f
. '.control',
$target
. '/share/extension/' .
$f
. '.control')
|| croak(
"
Could
not
copy
file
$f
.
control
in
contrib
$d
"
);
print '.';
}
}
$flist
= '';
if (
$mf
=~ /^DATA_built
\
s*=
\
s*(.*)$/m) {
$flist
.= $1}
if (
$mf
=~ /^DATA
\
s*=
\
s*(.*)$/m) {
$flist
.=
"
$
1
"
}
$flist
=~ s/^
\
s*//; # Remove leading spaces if we had only DATA_built
...
...
@@ -327,7 +349,8 @@ sub CopyContribFiles
foreach my
$f
(split /
\
s+/,
$flist
)
{
lcopy('contrib/' .
$d
. '/' .
$f
,
$target
. '/share/contrib/' . basename(
$f
))
lcopy('contrib/' .
$d
. '/' .
$f
,
$target
. '/share/' .
$moduledir
. '/' . basename(
$f
))
|| croak(
"
Could
not
copy
file
$f
in
contrib
$d
"
);
print '.';
}
...
...
@@ -341,7 +364,8 @@ sub CopyContribFiles
foreach my
$f
(split /
\
s+/,
$flist
)
{
lcopy('contrib/' .
$d
. '/' .
$f
,
$target
. '/share/tsearch_data/' . basename(
$f
))
lcopy('contrib/' .
$d
. '/' .
$f
,
$target
. '/share/tsearch_data/' . basename(
$f
))
|| croak(
"
Could
not
copy
file
$f
in
contrib
$d
"
);
print '.';
}
...
...
@@ -359,7 +383,8 @@ sub CopyContribFiles
if (
$d
eq 'spi');
foreach my
$f
(split /
\
s+/,
$flist
)
{
lcopy('contrib/' .
$d
. '/' .
$f
,
$target
. '/doc/contrib/' .
$f
)
lcopy('contrib/' .
$d
. '/' .
$f
,
$target
. '/doc/' .
$moduledir
. '/' .
$f
)
|| croak(
"
Could
not
copy
file
$f
in
contrib
$d
"
);
print '.';
}
...
...
@@ -430,7 +455,7 @@ sub CopyIncludeFiles
'src/include/', 'pg_config.h', 'pg_config_os.h'
);
CopyFiles('Grammar header',
$target
. '/include/server/parser/',
'src/backend/parser/', 'gram.h');
'src/backend/parser/', 'gram.h');
CopySetOfFiles('',[ glob(
"
src
\\
include
\\*.
h
"
) ],
$target
. '/include/server/');
my
$D
;
opendir(
$D
, 'src/include') || croak
"
Could
not
opendir
on
src
/
include
!\
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