Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
d07e901c
Commit
d07e901c
authored
Dec 19, 2002
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Dec 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove the -L wrc option, as no automatic fudging of filenames can
ever be correct.
parent
221ffc5e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
16 deletions
+0
-16
parser.y
tools/wrc/parser.y
+0
-5
wrc.c
tools/wrc/wrc.c
+0
-10
wrc.h
tools/wrc/wrc.h
+0
-1
No files found.
tools/wrc/parser.y
View file @
d07e901c
...
...
@@ -2694,11 +2694,6 @@ static string_t *make_filename(string_t *str)
*cptr = '/';
}
/* Convert to lower case. Seems to be reasonable to do */
for(cptr = str->str.cstr; !leave_case && *cptr; cptr++)
{
*cptr = tolower(*cptr);
}
return str;
}
...
...
tools/wrc/wrc.c
View file @
d07e901c
...
...
@@ -104,7 +104,6 @@ static char usage[] =
" -I path Set include search dir to path (multiple -I allowed)
\n
"
" -J Do not search the standard include path
\n
"
" -l lan Set default language to lan (default is neutral {0, 0})
\n
"
" -L Leave case of embedded filenames as is
\n
"
" -m Do not remap numerical resource IDs
\n
"
" -n Do not generate .s file
\n
"
" -N Do not preprocess input
\n
"
...
...
@@ -252,12 +251,6 @@ int pedantic = 0;
int
auto_register
=
0
;
/*
* Set when the case of embedded filenames should not be converted
* to lower case (-L option)
*/
int
leave_case
=
0
;
/*
* The output byte-order of resources (set with -B)
*/
int
byteorder
=
WRC_BO_NATIVE
;
...
...
@@ -434,9 +427,6 @@ int main(int argc,char *argv[])
currentlanguage
=
new_language
(
PRIMARYLANGID
(
lan
),
SUBLANGID
(
lan
));
}
break
;
case
'L'
:
leave_case
=
1
;
break
;
case
'm'
:
remap
=
0
;
break
;
...
...
tools/wrc/wrc.h
View file @
d07e901c
...
...
@@ -64,7 +64,6 @@ extern int create_s;
extern
DWORD
codepage
;
extern
int
pedantic
;
extern
int
auto_register
;
extern
int
leave_case
;
extern
int
byteorder
;
extern
int
preprocess_only
;
extern
int
no_preprocess
;
...
...
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