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
ccaad191
Commit
ccaad191
authored
Jan 11, 2010
by
Andrew Dunstan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove use of temp file for perlchunks.h, as in recent change to plperl GNUmakefile
parent
6164b4bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
9 deletions
+4
-9
src/tools/msvc/Mkvcbuild.pm
src/tools/msvc/Mkvcbuild.pm
+4
-9
No files found.
src/tools/msvc/Mkvcbuild.pm
View file @
ccaad191
...
@@ -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.4
5 2010/01/09 14:45:47
adunstan Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.4
6 2010/01/11 14:16:18
adunstan Exp $
#
#
use
Carp
;
use
Carp
;
use
Win32
;
use
Win32
;
...
@@ -117,18 +117,13 @@ sub mkvcbuild
...
@@ -117,18 +117,13 @@ sub mkvcbuild
.
'
text2macro.pl
'
.
'
text2macro.pl
'
.
'
--strip="^(
\
#.*|
\
s*)$$"
'
.
'
--strip="^(
\
#.*|
\
s*)$$"
'
.
'
plc_perlboot.pl plc_safe_bad.pl plc_safe_ok.pl
'
.
'
plc_perlboot.pl plc_safe_bad.pl plc_safe_ok.pl
'
.
'
>perlchunks.h
tmp
');
.
'
>perlchunks.h
');
chdir
$basedir
;
chdir
$basedir
;
if
((
!
(
-
f
'
src
\
pl
\
plperl
\
perlchunks.h
tmp
'))
||
-
z
'
src
\
pl
\
plperl
\
perlchunks.htmp
')
if
((
!
(
-
f
'
src
\
pl
\
plperl
\
perlchunks.h
'))
||
-
z
'
src
\
pl
\
plperl
\
perlchunks.h
')
{
{
unlink
('
src
\
pl
\
plperl
\
perlchunks.h
tmp
');
# if zero size
unlink
('
src
\
pl
\
plperl
\
perlchunks.h
');
# if zero size
die
'
Failed to create perlchunks.h
'
.
"
\n
";
die
'
Failed to create perlchunks.h
'
.
"
\n
";
}
}
else
{
move
('
src
\
pl
\
plperl
\
perlchunks.htmp
','
src
\
pl
\
plperl
\
perlchunks.h
');
}
}
}
$plperl
->
AddReference
(
$postgres
);
$plperl
->
AddReference
(
$postgres
);
my
@perl_libs
=
grep
{
/perl\d+.lib$/
}
my
@perl_libs
=
grep
{
/perl\d+.lib$/
}
...
...
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