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
50a4054d
Commit
50a4054d
authored
Dec 30, 2009
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Exclude part of the product name string that is localized in Japanese versions
of MSVC when detecting MSVC version. Hiroshi Inoue
parent
ff1e1e45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/tools/msvc/Solution.pm
src/tools/msvc/Solution.pm
+2
-2
No files found.
src/tools/msvc/Solution.pm
View file @
50a4054d
...
@@ -3,7 +3,7 @@ package Solution;
...
@@ -3,7 +3,7 @@ package Solution;
#
#
# Package that encapsulates a Visual C++ solution file generation
# Package that encapsulates a Visual C++ solution file generation
#
#
# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.
49 2009/12/23 13:27:04
mha Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.
50 2009/12/30 12:26:41
mha Exp $
#
#
use
Carp
;
use
Carp
;
use
strict
;
use
strict
;
...
@@ -66,7 +66,7 @@ sub DetermineToolVersions
...
@@ -66,7 +66,7 @@ sub DetermineToolVersions
open
(
P
,"
vcbuild /? |
")
||
die
"
vcbuild command not found
";
open
(
P
,"
vcbuild /? |
")
||
die
"
vcbuild command not found
";
my
$line
=
<
P
>
;
my
$line
=
<
P
>
;
close
(
P
);
close
(
P
);
if
(
$line
!~
/^Microsoft
\(R\) Visual C\+\+ Project Builder - Command Line Version
(\d+)\.00\.\d+/
)
{
if
(
$line
!~
/^Microsoft
\s*\(R\) Visual C\+\+ Project Builder - \D+
(\d+)\.00\.\d+/
)
{
die
"
Unable to determine vcbuild version from first line of output!
";
die
"
Unable to determine vcbuild version from first line of output!
";
}
}
if
(
$1
==
8
)
{
$self
->
{
vcver
}
=
'
8.00
'
}
if
(
$1
==
8
)
{
$self
->
{
vcver
}
=
'
8.00
'
}
...
...
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