Changeset 99c61f9 in mod_gnutls for configure.ac
- Timestamp:
- Jan 28, 2020, 3:37:37 AM (12 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- e46d203
- Parents:
- c5f8e85
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
rc5f8e85 r99c61f9 87 87 AM_PATH_PYTHON([3]) 88 88 AX_PYTHON_MODULE([yaml], [fatal]) 89 90 dnl Enable testing with Valgrind? Default is "no". 91 AC_ARG_ENABLE([valgrind-test], 92 AS_HELP_STRING([--enable-valgrind-test], [Enable running \ 93 tests with Valgrind (slow)]), 94 [use_valgrind=$enableval], [use_valgrind=no]) 95 AC_MSG_CHECKING([whether to run tests with Valgrind]) 96 AC_MSG_RESULT([$use_valgrind]) 97 AC_PATH_PROG([VALGRIND], [valgrind], [no]) 98 AS_IF([test "${use_valgrind}" != "no" -a "${VALGRIND}" = "no"], 99 [AC_MSG_ERROR([Valgrind test are enabled, but "valgrind" not \ 100 found in PATH!])]) 101 AM_CONDITIONAL([ENABLE_VALGRIND], [test "${use_valgrind}" != "no"]) 89 102 90 103 dnl Optionally disable flock
Note: See TracChangeset
for help on using the changeset viewer.