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
210af2e3
Commit
210af2e3
authored
Nov 25, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Only output tools directory dependencies when tools are enabled.
parent
6ff553d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
4 deletions
+18
-4
aclocal.m4
aclocal.m4
+5
-2
configure
configure
+13
-2
No files found.
aclocal.m4
View file @
210af2e3
...
...
@@ -343,7 +343,9 @@ wine_fn_config_lib ()
ac_name=$[1]
ac_flags=$[2]
ac_dir=dlls/$ac_name
ac_deps="include"
AS_VAR_IF([enable_tools],[no],,[ac_deps="tools/widl tools/winebuild tools/winegcc $ac_deps"])
wine_fn_all_rules Make.rules.in
wine_fn_clean_rules
...
...
@@ -356,7 +358,7 @@ $ac_dir/uninstall::
install install-dev:: $ac_dir/install
__uninstall__: $ac_dir/uninstall
__builddeps__: $ac_dir
$ac_dir:
tools/widl tools/winebuild tools/winegcc include
"
$ac_dir:
$ac_deps
"
}
wine_fn_config_dll ()
...
...
@@ -368,9 +370,10 @@ wine_fn_config_dll ()
ac_implib=${4:-$ac_name}
ac_file=$ac_dir/lib$ac_implib
ac_dll=$ac_name
ac_deps="
tools/widl tools/winebuild tools/winegcc
include"
ac_deps="include"
ac_implibflags=""
AS_VAR_IF([enable_tools],[no],,[ac_deps="tools/widl tools/winebuild tools/winegcc $ac_deps"])
case $ac_name in
*16) ac_implibflags=" -m16" ;;
*.*) ;;
...
...
configure
View file @
210af2e3
...
...
@@ -16338,7 +16338,13 @@ wine_fn_config_lib ()
ac_name
=
$1
ac_flags
=
$2
ac_dir
=
dlls/
$ac_name
ac_deps
=
"include"
if
test
"x
$enable_tools
"
=
xno
;
then
:
else
ac_deps
=
"tools/widl tools/winebuild tools/winegcc
$ac_deps
"
fi
wine_fn_all_rules Make.rules.in
wine_fn_clean_rules
...
...
@@ -16351,7 +16357,7 @@ $ac_dir/uninstall::
install install-dev::
$ac_dir
/install
__uninstall__:
$ac_dir
/uninstall
__builddeps__:
$ac_dir
$ac_dir
:
tools/widl tools/winebuild tools/winegcc include
"
$ac_dir
:
$ac_deps
"
}
wine_fn_config_dll
()
...
...
@@ -16363,9 +16369,14 @@ wine_fn_config_dll ()
ac_implib
=
${
4
:-
$ac_name
}
ac_file
=
$ac_dir
/lib
$ac_implib
ac_dll
=
$ac_name
ac_deps
=
"
tools/widl tools/winebuild tools/winegcc
include"
ac_deps
=
"include"
ac_implibflags
=
""
if
test
"x
$enable_tools
"
=
xno
;
then
:
else
ac_deps
=
"tools/widl tools/winebuild tools/winegcc
$ac_deps
"
fi
case
$ac_name
in
*
16
)
ac_implibflags
=
" -m16"
;;
*
.
*
)
;;
...
...
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