Commit 07661f58 authored by Pavel Vainerman's avatar Pavel Vainerman

Попытка решить проблеммы с SIGSEGV при выходе из программы.

В дополнение отключил по умолчанию включение поддержки "покрытия кода".
parent 28d21b50
......@@ -203,7 +203,7 @@ COV_LIBS=
COV_CFLAGS=
AC_MSG_CHECKING([tests support])
buildtests=true
buildgcov=true
buildgcov=false
AC_ARG_ENABLE(tests, AC_HELP_STRING([--disable-tests], [disable tests build]),
[ if test $enableval = yes; then buildtests=true; else buildtests=false; fi],[ buildtests=true; ])
......@@ -227,8 +227,8 @@ if test ${buildtests} = true; then
#check gcov
AC_MSG_CHECKING([test coverage])
AC_ARG_ENABLE(coverage, AC_HELP_STRING([--disable-coverage], [disable gcov support]),
[ if test $enableval = yes; then buildgcov=true; else buildgcov=false; fi],[ buildgcov=true; ])
AC_ARG_ENABLE(coverage, AC_HELP_STRING([--enable-coverage], [enable gcov support]),
[ if test $enableval = yes; then buildgcov=true; else buildgcov=false; fi],[])
if test ${buildgcov} = true; then
AC_MSG_RESULT([yes])
COV_LIBS="-lgcov"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment