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
dd2f2e4e
Commit
dd2f2e4e
authored
Dec 20, 2012
by
Ken Thomases
Committed by
Alexandre Julliard
Dec 26, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makedep: Add support for Objective-C .m files and #import directive.
parent
ce0f9b31
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
makedep.c
tools/makedep.c
+4
-2
No files found.
tools/makedep.c
View file @
dd2f2e4e
...
...
@@ -653,8 +653,9 @@ static void parse_c_file( INCL_FILE *pFile, FILE *file )
while
(
*
p
&&
isspace
(
*
p
))
p
++
;
if
(
*
p
++
!=
'#'
)
continue
;
while
(
*
p
&&
isspace
(
*
p
))
p
++
;
if
(
strncmp
(
p
,
"include"
,
7
))
continue
;
p
+=
7
;
if
(
!
strncmp
(
p
,
"include"
,
7
))
p
+=
7
;
else
if
(
!
strncmp
(
p
,
"import"
,
6
))
p
+=
6
;
else
continue
;
while
(
*
p
&&
isspace
(
*
p
))
p
++
;
if
(
*
p
!=
'\"'
&&
*
p
!=
'<'
)
continue
;
quote
=
*
p
++
;
...
...
@@ -805,6 +806,7 @@ static void parse_file( INCL_FILE *pFile, int src )
else
if
(
strendswith
(
pFile
->
filename
,
".idl"
))
parse_idl_file
(
pFile
,
file
,
0
);
else
if
(
strendswith
(
pFile
->
filename
,
".c"
)
||
strendswith
(
pFile
->
filename
,
".m"
)
||
strendswith
(
pFile
->
filename
,
".h"
)
||
strendswith
(
pFile
->
filename
,
".l"
)
||
strendswith
(
pFile
->
filename
,
".y"
))
...
...
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