config.m4 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. dnl config.m4 for extension tidy
  2. PHP_ARG_WITH(tidy,for TIDY support,
  3. [ --with-tidy[=DIR] Include TIDY support])
  4. if test "$PHP_TIDY" != "no"; then
  5. if test "$PHP_TIDY" != "yes"; then
  6. TIDY_SEARCH_DIRS=$PHP_TIDY
  7. else
  8. TIDY_SEARCH_DIRS="/usr/local /usr"
  9. fi
  10. for i in $TIDY_SEARCH_DIRS; do
  11. for j in tidy tidyp; do
  12. if test -f $i/include/$j/$j.h; then
  13. TIDY_DIR=$i
  14. TIDY_INCDIR=$i/include/$j
  15. TIDY_LIB_NAME=$j
  16. break
  17. elif test -f $i/include/$j.h; then
  18. TIDY_DIR=$i
  19. TIDY_INCDIR=$i/include
  20. TIDY_LIB_NAME=$j
  21. break
  22. fi
  23. done
  24. done
  25. if test -z "$TIDY_DIR"; then
  26. AC_MSG_ERROR(Cannot find libtidy)
  27. else
  28. dnl Check for tidybuffio.h (as opposed to simply buffio.h)
  29. dnl which indicates that we are building against tidy-html5
  30. dnl and not the legacy htmltidy. The two are compatible,
  31. dnl except for with regard to this header file.
  32. if test -f "$TIDY_INCDIR/tidybuffio.h"; then
  33. AC_DEFINE(HAVE_TIDYBUFFIO_H,1,[defined if tidybuffio.h exists])
  34. fi
  35. fi
  36. TIDY_LIBDIR=$TIDY_DIR/$PHP_LIBDIR
  37. if test "$TIDY_LIB_NAME" == 'tidyp'; then
  38. AC_DEFINE(HAVE_TIDYP_H,1,[defined if tidyp.h exists])
  39. else
  40. AC_DEFINE(HAVE_TIDY_H,1,[defined if tidy.h exists])
  41. fi
  42. PHP_CHECK_LIBRARY($TIDY_LIB_NAME,tidyOptGetDoc,
  43. [
  44. AC_DEFINE(HAVE_TIDYOPTGETDOC,1,[ ])
  45. ],[
  46. PHP_CHECK_LIBRARY(tidy5,tidyOptGetDoc,
  47. [
  48. TIDY_LIB_NAME=tidy5
  49. AC_DEFINE(HAVE_TIDYOPTGETDOC,1,[ ])
  50. ], [], [])
  51. ],[])
  52. PHP_CHECK_LIBRARY($TIDY_LIB_NAME,tidyReleaseDate,
  53. [
  54. AC_DEFINE(HAVE_TIDYRELEASEDATE,1,[ ])
  55. ], [], [])
  56. PHP_ADD_LIBRARY_WITH_PATH($TIDY_LIB_NAME, $TIDY_LIBDIR, TIDY_SHARED_LIBADD)
  57. PHP_ADD_INCLUDE($TIDY_INCDIR)
  58. PHP_NEW_EXTENSION(tidy, tidy.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
  59. PHP_SUBST(TIDY_SHARED_LIBADD)
  60. AC_DEFINE(HAVE_TIDY,1,[ ])
  61. fi