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
6f264583
Commit
6f264583
authored
Dec 11, 2002
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Dec 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wrc should be aware of the location of the system headers.
parent
4d9e7036
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
Makefile.in
tools/wrc/Makefile.in
+1
-1
wrc.c
tools/wrc/wrc.c
+20
-2
No files found.
tools/wrc/Makefile.in
View file @
6f264583
DEFS
=
-D__WINE__
DEFS
=
-D__WINE__
-DINCLUDEDIR
=
"
\"
$(includedir)
\"
"
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
tools/wrc/wrc.c
View file @
6f264583
...
...
@@ -73,6 +73,10 @@
#include "parser.h"
#include "../wpp/wpp.h"
#ifndef INCLUDEDIR
#define INCLUDEDIR "/usr/local/include/wine"
#endif
static
char
usage
[]
=
"Usage: wrc [options...] [infile[.rc|.res]] [outfile]
\n
"
" -a n Alignment of resource (win16 only, default is 4)
\n
"
...
...
@@ -98,6 +102,7 @@ static char usage[] =
" -H file Same as -h but written to file
\n
"
" -i file The name of the input file.
\n
"
" -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
"
...
...
@@ -119,6 +124,7 @@ static char usage[] =
" --target Synonym for -F.
\n
"
" --format Synonym for -O.
\n
"
" --include-dir Synonym for -I.
\n
"
" --nostdinc Synonym for -J.
\n
"
" --define Synonym for -D.
\n
"
" --language Synonym for -l.
\n
"
" --preprocessor Specify the preprocessor to use, including arguments.
\n
"
...
...
@@ -293,6 +299,7 @@ static struct option long_options[] = {
{
"target"
,
1
,
0
,
'F'
},
{
"format"
,
1
,
0
,
'O'
},
{
"include-dir"
,
1
,
0
,
'I'
},
{
"nostdinc"
,
0
,
0
,
'J'
},
{
"define"
,
1
,
0
,
'D'
},
{
"language"
,
1
,
0
,
'l'
},
{
"preprocessor"
,
1
,
0
,
1
},
...
...
@@ -307,6 +314,7 @@ int main(int argc,char *argv[])
extern
char
*
optarg
;
extern
int
optind
;
int
optc
,
opti
=
0
;
int
stdinc
=
1
;
int
lose
=
0
;
int
ret
;
int
a
;
...
...
@@ -332,9 +340,9 @@ int main(int argc,char *argv[])
}
#ifdef HAVE_GETOPT_LONG
while
((
optc
=
getopt_long
(
argc
,
argv
,
"a:AbB:cC:d:D:eEF:ghH:i:I:l:LmnNo:O:p:rstTVw:W"
,
long_options
,
&
opti
))
!=
EOF
)
while
((
optc
=
getopt_long
(
argc
,
argv
,
"a:AbB:cC:d:D:eEF:ghH:i:I:
J
l:LmnNo:O:p:rstTVw:W"
,
long_options
,
&
opti
))
!=
EOF
)
#else
while
((
optc
=
getopt
(
argc
,
argv
,
"a:AbB:cC:d:D:eEF:ghH:i:I:l:LmnNo:O:p:rstTVw:W"
))
!=
EOF
)
while
((
optc
=
getopt
(
argc
,
argv
,
"a:AbB:cC:d:D:eEF:ghH:i:I:
J
l:LmnNo:O:p:rstTVw:W"
))
!=
EOF
)
#endif
{
switch
(
optc
)
...
...
@@ -414,6 +422,9 @@ int main(int argc,char *argv[])
case
'I'
:
wpp_add_include_path
(
optarg
);
break
;
case
'J'
:
stdinc
=
0
;
break
;
case
'l'
:
{
int
lan
;
...
...
@@ -486,6 +497,13 @@ int main(int argc,char *argv[])
return
1
;
}
/* If we do need to search standard includes, add them to the path */
if
(
stdinc
)
{
wpp_add_include_path
(
INCLUDEDIR
"/msvcrt"
);
wpp_add_include_path
(
INCLUDEDIR
"/windows"
);
}
/* Check for input file on command-line */
if
(
optind
<
argc
)
{
...
...
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