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.

39 lines
1.2 KiB

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