aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index ab6fe98..2391cf9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -380,6 +380,18 @@ AC_CHECK_LIB(tidy, tidyInitSource,
380LIBS=$LIBSOLD 380LIBS=$LIBSOLD
381 381
382 382
383
384# should 'make check' run tests?
385AC_MSG_CHECKING(whether to run tests)
386AC_ARG_ENABLE([testruns],
387 [AS_HELP_STRING([--disable-testruns], [disable running tests on make check (default is YES)])],
388 [enable_tests_run=${enableval}],
389 [enable_tests_run=yes])
390AC_MSG_RESULT($enable_test_run)
391AM_CONDITIONAL([ENABLE_TEST_RUN], [test "x$enable_tests_run" = "xyes"])
392
393
394
383# Checks for header files. 395# Checks for header files.
384AC_HEADER_STDC 396AC_HEADER_STDC
385AC_HEADER_DIRENT 397AC_HEADER_DIRENT