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
dbbf8f8a
Commit
dbbf8f8a
authored
Feb 05, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Feb 06, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcmaker: "MODULE = none" is obsolete.
parent
c7c8d3cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
12 deletions
+6
-12
msvcmaker
tools/winapi/msvcmaker
+6
-12
No files found.
tools/winapi/msvcmaker
View file @
dbbf8f8a
...
...
@@ -180,16 +180,6 @@ MAKEFILE_IN: foreach my $makefile_in_file (@makefile_in_files) {
if
(
/^MODULE\s*=\s*([\w\.]+)$/
)
{
$module
=
$1
;
if
(
$module
eq
"none"
)
{
if
(
$makefile_in_file
eq
"tools/winebuild/Makefile.in"
)
{
$module
=
"winebuild.exe"
;
}
elsif
(
$makefile_in_file
eq
"include/Makefile.in"
)
{
$module
=
"include.lib"
;
}
else
{
next
MAKEFILE_IN
;
}
}
}
elsif
(
/^\@MAKE_IMPLIB_RULES\@/
)
{
$type
=
"lib"
;
}
elsif
(
/^TOPOBJDIR\s*=\s*(\S+)\s*$/
)
{
...
...
@@ -243,8 +233,12 @@ MAKEFILE_IN: foreach my $makefile_in_file (@makefile_in_files) {
close
(
IN
);
if
(
!
$module
&&
$makefile_in_file
eq
"libs/wine/Makefile.in"
)
{
$module
=
"wine.lib"
;
if
(
!
$module
)
{
if
(
$makefile_in_file
eq
"libs/wine/Makefile.in"
)
{
$module
=
"wine.lib"
;
}
elsif
(
$makefile_in_file
eq
"tools/winebuild/Makefile.in"
)
{
$module
=
"winebuild.exe"
;
}
}
next
if
!
$module
;
...
...
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