1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

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

View file

@ -141,6 +141,16 @@ echo "Window Switcher dialog Enabled"
else else
echo "Window Switcher dialog Disabled" echo "Window Switcher dialog Disabled"
fi 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 "-------------------------------------"
echo "Now type 'make' to build" echo "Now type 'make' to build"
echo "" echo ""