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
e6e78187
Commit
e6e78187
authored
18 years ago
by
Magnus Hagander
Browse files
Options
Downloads
Patches
Plain Diff
msvc build actually needs Bison 2.2 or later, not 2.1. Or 1.875 as before.
parent
15f4842d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/src/sgml/install-win32.sgml
+3
-3
3 additions, 3 deletions
doc/src/sgml/install-win32.sgml
src/tools/msvc/pgbison.bat
+5
-3
5 additions, 3 deletions
src/tools/msvc/pgbison.bat
with
8 additions
and
6 deletions
doc/src/sgml/install-win32.sgml
+
3
−
3
View file @
e6e78187
<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.3
3
2007/03/17 1
4:30:00
mha Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.3
4
2007/03/17 1
7:11:41
mha Exp $ -->
<chapter id="install-win32">
<chapter id="install-win32">
<title>Installation on <productname>Windows</productname></title>
<title>Installation on <productname>Windows</productname></title>
...
@@ -100,8 +100,8 @@
...
@@ -100,8 +100,8 @@
<productname>Flex</productname></term>
<productname>Flex</productname></term>
<listitem><para>
<listitem><para>
Bison and Flex are required to build from CVS, but not required when
Bison and Flex are required to build from CVS, but not required when
building from a release file. Note that
Bison version 2.0 will not
building from a release file. Note that
only Bison 1.875 or versions
work, but both earlier and later versions do
. Bison and Flex can be
2.2 and later will work
. Bison and Flex can be
downloaded from <ulink url="http://gnuwin32.sourceforge.net"></>.
downloaded from <ulink url="http://gnuwin32.sourceforge.net"></>.
</para></listitem>
</para></listitem>
</varlistentry>
</varlistentry>
...
...
This diff is collapsed.
Click to expand it.
src/tools/msvc/pgbison.bat
+
5
−
3
View file @
e6e78187
@echo
off
@echo
off
REM $PostgreSQL: pgsql/src/tools/msvc/pgbison.bat,v 1.
5
2007/03/17 1
4:0
1:
0
1 mha Exp $
REM $PostgreSQL: pgsql/src/tools/msvc/pgbison.bat,v 1.
6
2007/03/17 1
7:1
1:
4
1 mha Exp $
if
exist
src
\tools\msvc\buildenv.bat
call
src
\tools\msvc\buildenv.bat
if
exist
src
\tools\msvc\buildenv.bat
call
src
\tools\msvc\buildenv.bat
SET
BV
=
SET
BV
=
for
/F
"tokens=4 usebackq"
%%f
in
(
`bison -V`
)
do
if
"
!BV!
"
==
""
SET
BV
=
%%f
for
/F
"tokens=4 usebackq"
%%f
in
(
`bison -V`
)
do
if
"
!BV!
"
==
""
SET
BV
=
%%f
if
"
%BV%
"
==
""
goto
novarexp
if
"
%BV%
"
==
""
goto
novarexp
if
%BV%
LSS
1
.875
goto
nobison
if
%BV%
EQU
1
.875
goto
bisonok
if
%BV%
EQU
2
.1
goto
nobison
if
%BV%
GEQ
2
.2
goto
bisonok
goto
nobison
:bisonok
if
"
%
1"
==
"src\backend\parser\gram.y"
call
:generate
%
1
src
\backend\parser\gram.c
src
\include\parser\parse.h
if
"
%
1"
==
"src\backend\parser\gram.y"
call
:generate
%
1
src
\backend\parser\gram.c
src
\include\parser\parse.h
if
"
%
1"
==
"src\backend\bootstrap\bootparse.y"
call
:generate
%
1
src
\backend\bootstrap\bootparse.c
src
\backend\bootstrap\bootstrap_tokens.h
if
"
%
1"
==
"src\backend\bootstrap\bootparse.y"
call
:generate
%
1
src
\backend\bootstrap\bootparse.c
src
\backend\bootstrap\bootstrap_tokens.h
...
...
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