Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
689d943d
Commit
689d943d
authored
Sep 09, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Specify the bison name prefix directly in the source file.
parent
65516804
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
Makefile.in
dlls/msi/Makefile.in
+2
-2
cond.y
dlls/msi/cond.y
+1
-0
sql.y
dlls/msi/sql.y
+1
-0
No files found.
dlls/msi/Makefile.in
View file @
689d943d
...
...
@@ -58,10 +58,10 @@ EXTRA_OBJS = sql.tab.o cond.tab.o
@MAKE_DLL_RULES@
sql.tab.c sql.tab.h
:
sql.y
$(BISON)
-
p
SQL_
-
d
$(SRCDIR)
/sql.y
-o
sql.tab.c
$(BISON)
-d
$(SRCDIR)
/sql.y
-o
sql.tab.c
cond.tab.c cond.tab.h
:
cond.y
$(BISON)
-
p
COND_
-
d
$(SRCDIR)
/cond.y
-o
cond.tab.c
$(BISON)
-d
$(SRCDIR)
/cond.y
-o
cond.tab.c
# hack to allow parallel make
sql.tab.h
:
sql.tab.c
...
...
dlls/msi/cond.y
View file @
689d943d
...
...
@@ -102,6 +102,7 @@ static BOOL num_from_prop( LPCWSTR p, INT *val )
%}
%
pure
-
parser
%
name
-
prefix
=
"COND_"
%
union
{
...
...
dlls/msi/sql.y
View file @
689d943d
...
...
@@ -67,6 +67,7 @@ static struct expr * EXPR_wildcard( void *info );
%}
%pure-parser
%name-prefix="SQL_"
%union
{
...
...
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