configure: Fix libunwind warning logic.
Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
89773807f2
commit
06754af1e5
|
@ -14967,7 +14967,7 @@ test -z "$UNWIND_LIBS" || UNWIND_LIBS=`echo " $UNWIND_LIBS" | sed 's/ -L\([^/]\)
|
|||
fi
|
||||
case $host in
|
||||
aarch64*|*-darwin*)
|
||||
if test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" != xnono; then :
|
||||
if test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" = xnono; then :
|
||||
case "x$with_unwind" in
|
||||
x) as_fn_append wine_notices "|libunwind ${notice_platform}development files not found, stack unwinding won't work." ;;
|
||||
xno) ;;
|
||||
|
|
|
@ -1719,7 +1719,7 @@ then
|
|||
fi
|
||||
case $host in
|
||||
aarch64*|*-darwin*)
|
||||
WINE_NOTICE_WITH(unwind,[test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" != xnono],
|
||||
WINE_NOTICE_WITH(unwind,[test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" = xnono],
|
||||
[libunwind ${notice_platform}development files not found, stack unwinding won't work.]) ;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in New Issue