Add more debug to configure.ac

This commit is contained in:
Dave Davenport 2017-03-28 20:12:22 +02:00
parent 8c345273ff
commit 3fab20b45e
1 changed files with 10 additions and 0 deletions

View File

@ -141,6 +141,16 @@ echo "Window Switcher dialog Enabled"
else
echo "Window Switcher dialog Disabled"
fi
if test x$enable_asan = xyes; then
echo "Asan address sanitize Enabled"
else
echo "Asan address sanitize Disabled"
fi
if test x$enable_gcov = xyes; then
echo "Code Coverage Enabled"
else
echo "Code Coverage Disabled"
fi
echo "-------------------------------------"
echo "Now type 'make' to build"
echo ""