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
0ae2c69c
Commit
0ae2c69c
authored
Jan 03, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some flex options to avoid compiler warnings.
Moved options from the Makefile into the source.
parent
00a7faa3
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
15 additions
and
11 deletions
+15
-11
Makefile.in
libs/wpp/Makefile.in
+1
-2
ppl.l
libs/wpp/ppl.l
+4
-2
debug.l
programs/winedbg/debug.l
+2
-0
macro.lex.l
programs/winhelp/macro.lex.l
+1
-0
Makefile.in
tools/widl/Makefile.in
+1
-2
parser.l
tools/widl/parser.l
+3
-2
Makefile.in
tools/wrc/Makefile.in
+1
-2
parser.l
tools/wrc/parser.l
+2
-1
No files found.
libs/wpp/Makefile.in
View file @
0ae2c69c
...
...
@@ -2,7 +2,6 @@ TOPSRCDIR = @top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
LEXOPT
=
-Cf
#-w -b
MODULE
=
libwpp.a
C_SRCS
=
\
...
...
@@ -29,7 +28,7 @@ ppy.tab.h: ppy.tab.c
ppy.tab.o
:
ppy.tab.h
@LEX_OUTPUT_ROOT@.c
:
ppl.l
$(LEX)
$(LEXOPT)
-d
-Ppp
-o
$@
-8
$(SRCDIR)
/ppl.l
$(LEX)
-o
$@
$(SRCDIR)
/ppl.l
@LEX_OUTPUT_ROOT@.o
:
ppy.tab.h
...
...
libs/wpp/ppl.l
View file @
0ae2c69c
/*
/*
-*-C-*-
* Wrc preprocessor lexical analysis
*
* Copyright 1999-2000 Bertho A. Stultiens (BS)
...
...
@@ -125,7 +125,9 @@
* Special flex options and exclusive scanner start-conditions
*/
%option stack
%option never-interactive
%option 8bit never-interactive
%option nounput
%option prefix="pp"
%x pp_pp
%x pp_eol
...
...
programs/winedbg/debug.l
View file @
0ae2c69c
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
%option nounput
%{
#include <stdlib.h>
#include <string.h>
...
...
programs/winhelp/macro.lex.l
View file @
0ae2c69c
...
...
@@ -20,6 +20,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
%}
%option nounput
%x quote
%{
#include <assert.h>
...
...
tools/widl/Makefile.in
View file @
0ae2c69c
...
...
@@ -2,7 +2,6 @@ TOPSRCDIR = @top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
LEXOPT
=
-Cf
#-w -b
EXEEXT
=
@EXEEXT@
PROGRAMS
=
widl
$(EXEEXT)
...
...
@@ -39,7 +38,7 @@ parser.tab.h: parser.tab.c
parser.tab.o
:
parser.tab.h
@LEX_OUTPUT_ROOT@.c
:
parser.l
$(LEX)
$(
LEXOPT)
-d
-8
$(
SRCDIR)
/parser.l
$(LEX)
$(SRCDIR)
/parser.l
@LEX_OUTPUT_ROOT@.o
:
parser.tab.h
...
...
tools/widl/parser.l
View file @
0ae2c69c
/*
/*
-*-C-*-
* IDL Compiler
*
* Copyright 2002 Ove Kaaven
...
...
@@ -19,7 +19,8 @@
*/
%option stack
%option never-interactive
%option nounput noyy_top_state
%option 8bit never-interactive
nl \r?\n
ws [ \f\t\r]
...
...
tools/wrc/Makefile.in
View file @
0ae2c69c
...
...
@@ -3,7 +3,6 @@ TOPSRCDIR = @top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
LEXOPT
=
-Cf
#-w -b
EXEEXT
=
@EXEEXT@
PROGRAMS
=
wrc
$(EXEEXT)
...
...
@@ -38,7 +37,7 @@ parser.tab.h: parser.tab.c
parser.tab.o
:
parser.tab.h
@LEX_OUTPUT_ROOT@.c
:
parser.l
$(LEX)
$(
LEXOPT)
-d
-8
$(
SRCDIR)
/parser.l
$(LEX)
$(SRCDIR)
/parser.l
@LEX_OUTPUT_ROOT@.o
:
parser.tab.h
...
...
tools/wrc/parser.l
View file @
0ae2c69c
...
...
@@ -87,7 +87,8 @@
%x pp_code_page
%option stack
%option never-interactive
%option nounput noyy_top_state
%option 8bit never-interactive
/* Some shortcut definitions */
ws [ \f\t\r]
...
...
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