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
1787e8f0
Commit
1787e8f0
authored
Nov 30, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makedep: Add support for dll registration files.
parent
1a2837a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
makedep.c
tools/makedep.c
+9
-3
No files found.
tools/makedep.c
View file @
1787e8f0
...
@@ -761,8 +761,9 @@ static void parse_file( INCL_FILE *pFile, int src )
...
@@ -761,8 +761,9 @@ static void parse_file( INCL_FILE *pFile, int src )
return
;
return
;
}
}
/* don't try to open .tlb files */
/* don't try to open .tlb or .res files */
if
(
strendswith
(
pFile
->
name
,
".tlb"
))
if
(
strendswith
(
pFile
->
name
,
".tlb"
)
||
strendswith
(
pFile
->
name
,
".res"
))
{
{
pFile
->
filename
=
xstrdup
(
pFile
->
name
);
pFile
->
filename
=
xstrdup
(
pFile
->
name
);
return
;
return
;
...
@@ -885,9 +886,14 @@ static int output_src( FILE *file, INCL_FILE *pFile, int *column )
...
@@ -885,9 +886,14 @@ static int output_src( FILE *file, INCL_FILE *pFile, int *column )
free
(
name
);
free
(
name
);
suffix
++
;
suffix
++
;
}
}
name
=
strmake
(
"%s_r.res"
,
obj
);
if
(
find_src_file
(
name
))
*
column
+=
fprintf
(
file
,
" %s"
,
name
);
free
(
name
);
*
column
+=
fprintf
(
file
,
": %s"
,
pFile
->
filename
);
*
column
+=
fprintf
(
file
,
": %s"
,
pFile
->
filename
);
}
}
else
if
(
!
strcmp
(
ext
,
"tlb"
))
else
if
(
!
strcmp
(
ext
,
"tlb"
)
||
!
strcmp
(
ext
,
"res"
)
)
{
{
return
0
;
/* nothing to do for typelib files */
return
0
;
/* nothing to do for typelib files */
}
}
...
...
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