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
89773807
Commit
89773807
authored
Sep 13, 2019
by
Huw Davies
Committed by
Alexandre Julliard
Sep 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Fix argument type of unw_step().
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
85d8d139
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
configure
configure
+2
-2
configure.ac
configure.ac
+2
-2
No files found.
configure
View file @
89773807
...
...
@@ -14905,7 +14905,7 @@ else
int
main ()
{
unw_c
ontext_t context; unw_step( &context
);
unw_c
ursor_t cursor; unw_step( &cursor
);
;
return 0;
}
...
...
@@ -14936,7 +14936,7 @@ else
int
main ()
{
unw_c
ontext_t context; unw_step( &context
);
unw_c
ursor_t cursor; unw_step( &cursor
);
;
return 0;
}
...
...
configure.ac
View file @
89773807
...
...
@@ -1697,7 +1697,7 @@ then
[AC_CACHE_CHECK([for unw_step],wine_cv_have_unw_step,
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define UNW_LOCAL_ONLY
#include <libunwind.h>]],
[[unw_c
ontext_t context; unw_step( &context
);]])],
[[unw_c
ursor_t cursor; unw_step( &cursor
);]])],
[wine_cv_have_unw_step="yes"],[wine_cv_have_unw_step="no"])])
if test "$wine_cv_have_unw_step" = no -a -n "$UNWIND_LIBS"
then
...
...
@@ -1706,7 +1706,7 @@ then
AC_CACHE_CHECK([for unw_step in libunwind],wine_cv_have_libunwind_unw_step,
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define UNW_LOCAL_ONLY
#include <libunwind.h>]],
[[unw_c
ontext_t context; unw_step( &context
);]])],
[[unw_c
ursor_t cursor; unw_step( &cursor
);]])],
[wine_cv_have_libunwind_unw_step="yes"],
[wine_cv_have_libunwind_unw_step="no"])])
LIBS=$save_libs
...
...
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