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
a37d8897
Commit
a37d8897
authored
Mar 13, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make_makefiles: Automatically disable 16-bit modules if enable_win16 isn't set.
parent
c4c2d980
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
configure
configure
+0
-0
configure.ac
configure.ac
+0
-0
make_makefiles
tools/make_makefiles
+6
-1
No files found.
configure
View file @
a37d8897
This diff is collapsed.
Click to expand it.
configure.ac
View file @
a37d8897
This diff is collapsed.
Click to expand it.
tools/make_makefiles
View file @
a37d8897
...
...
@@ -236,7 +236,11 @@ sub update_makefiles(@)
my
%
make
=
%
{
$makefiles
{
$file
}};
my
$rules
=
$make
{
"=rules"
};
my
$args
=
""
;
if
(
$rules
eq
$makerules
{
"MAKE_DLL_RULES"
})
{
$args
=
",[dlls],[ALL_DLL_DIRS]"
;
}
if
(
$rules
eq
$makerules
{
"MAKE_DLL_RULES"
})
{
$args
=
",[dlls],[ALL_DLL_DIRS]"
;
$args
.=
",[enable_win16]"
if
$make
{
"MODULE"
}
=~
/(16|\.vxd)$/
;
}
elsif
(
$rules
eq
$makerules
{
"MAKE_IMPLIB_RULES"
})
{
$args
=
",[dlls],[ALL_IMPLIB_DIRS]"
;
}
elsif
(
$rules
eq
$makerules
{
"MAKE_TEST_RULES"
})
{
$args
=
",[dlls],[ALL_TEST_DIRS],[enable_tests]"
;
}
elsif
(
$rules
eq
$makerules
{
"MAKE_PROG_RULES"
})
...
...
@@ -246,6 +250,7 @@ sub update_makefiles(@)
$args
.=
",ALL_PROGRAM_INSTALL_DIRS"
unless
$dont_install
{
$name
};
$args
.=
",ALL_PROGRAM_BIN_INSTALL_DIRS"
if
$bin_install
{
$name
};
$args
.=
"]"
;
$args
.=
",[enable_win16]"
if
$make
{
"MODULE"
}
=~
/16$/
;
}
elsif
(
$file
=~
/^[^\/]*\/Makefile$/
)
{
$args
=
",[],[ALL_TOP_DIRS]"
;
}
push
@lines
,
"WINE_CONFIG_MAKEFILE([$file],[$rules]$args)\n"
;
...
...
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