You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.3 KiB

  1. diff --git a/configure.in b/configure.in
  2. index 9082c5b..2c04edc 100644
  3. --- a/configure.in
  4. +++ b/configure.in
  5. @@ -2283,36 +2283,6 @@ if test "$with_python" = yes; then
  6. CPPFLAGS=$ac_save_CPPFLAGS
  7. fi
  8. -#
  9. -# Check for DocBook and tools
  10. -#
  11. -PGAC_PATH_XMLLINT
  12. -PGAC_CHECK_DOCBOOK(4.2)
  13. -PGAC_PATH_PROGS(DBTOEPUB, dbtoepub)
  14. -PGAC_PATH_PROGS(XSLTPROC, xsltproc)
  15. -PGAC_PATH_PROGS(FOP, fop)
  16. -
  17. -#
  18. -# Check for test tools
  19. -#
  20. -if test "$enable_tap_tests" = yes; then
  21. - # Check for necessary modules, unless user has specified the "prove" to use;
  22. - # in that case it's her responsibility to have a working configuration.
  23. - # (prove might be part of a different Perl installation than perl, eg on
  24. - # MSys, so the result of AX_PROG_PERL_MODULES could be irrelevant anyway.)
  25. - if test -z "$PROVE"; then
  26. - # Test::More and Time::HiRes are supposed to be part of core Perl,
  27. - # but some distros omit them in a minimal installation.
  28. - AX_PROG_PERL_MODULES([IPC::Run Test::More=0.87 Time::HiRes], ,
  29. - [AC_MSG_ERROR([Additional Perl modules are required to run TAP tests])])
  30. - fi
  31. - # Now make sure we know where prove is
  32. - PGAC_PATH_PROGS(PROVE, prove)
  33. - if test -z "$PROVE"; then
  34. - AC_MSG_ERROR([prove not found])
  35. - fi
  36. -fi
  37. -
  38. # Thread testing
  39. # We have to run the thread test near the end so we have all our symbols