Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
1858f43d
Commit
1858f43d
authored
14 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
configure: Make the import lib name optional in WINE_CONFIG_DLL.
parent
b6acca66
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
aclocal.m4
+1
-1
1 addition, 1 deletion
aclocal.m4
configure
+145
-145
145 additions, 145 deletions
configure
configure.ac
+144
-144
144 additions, 144 deletions
configure.ac
tools/make_makefiles
+1
-1
1 addition, 1 deletion
tools/make_makefiles
with
291 additions
and
291 deletions
aclocal.m4
+
1
−
1
View file @
1858f43d
...
...
@@ -242,7 +242,7 @@ wine_fn_config_dll ()
ac_dir=dlls/$ac_name
ac_enable=$[2]
ac_flags=$[3]
ac_implib=$
[4]
ac_implib=$
{4:-$ac_name}
ac_file=$ac_dir/lib$ac_implib
ac_deps="tools/widl tools/winebuild tools/winegcc include"
ac_implibflags=""
...
...
This diff is collapsed.
Click to expand it.
configure
+
145
−
145
View file @
1858f43d
This diff is collapsed.
Click to expand it.
configure.ac
+
144
−
144
View file @
1858f43d
This diff is collapsed.
Click to expand it.
tools/make_makefiles
+
1
−
1
View file @
1858f43d
...
...
@@ -386,7 +386,7 @@ sub update_makefiles(@)
$args
.=
"
,
"
if
$is_win16
||
@flags
;
$args
.=
"
enable_win16
"
if
$is_win16
;
$args
.=
"
,[
"
.
join
("
,
",
@flags
)
.
"
]
"
if
@flags
;
$args
.=
"
,[
$implib
]
"
if
$implib
;
$args
.=
"
,[
$implib
]
"
if
$implib
&&
$implib
ne
$name
;
push
@lines
,
"
WINE_CONFIG_DLL(
$name$args
)
\n
";
}
elsif
(
$rules
eq
$makerules
{"
MAKE_PROG_RULES
"})
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment