fixed a fault in libunwind support

This commit is contained in:
hyung-hwan 2018-04-26 06:00:11 +00:00
parent a07f943dbc
commit 21ff19ed40
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -21214,7 +21214,7 @@ fi
if test "x${enable_libunwind_is}" = "xyes"
then
if test "x${ac_cv_header_unwind_h}" = "xyes" -a "${UNWIND_LIBS}" != ""
if test "x${ac_cv_header_libunwind_h}" = "xyes" -a "${UNWIND_LIBS}" != ""
then
$as_echo "#define HCL_ENABLE_LIBUNWIND /**/" >>confdefs.h

View File

@ -663,7 +663,7 @@ AC_ARG_ENABLE([libunwind],
)
if test "x${enable_libunwind_is}" = "xyes"
then
if test "x${ac_cv_header_unwind_h}" = "xyes" -a "${UNWIND_LIBS}" != ""
if test "x${ac_cv_header_libunwind_h}" = "xyes" -a "${UNWIND_LIBS}" != ""
then
AC_DEFINE([HCL_ENABLE_LIBUNWIND],[],[use libunwind for backtracing stack frames])
else