config9.m4 467 B

123456789101112131415161718
  1. dnl
  2. dnl $Id$
  3. dnl
  4. dnl Check for extensions with which Recode can not work
  5. if test "$PHP_RECODE" != "no"; then
  6. test "$PHP_IMAP" != "no" && recode_conflict="$recode_conflict imap"
  7. if test -n "$MYSQL_LIBNAME"; then
  8. PHP_CHECK_LIBRARY($MYSQL_LIBNAME, hash_insert, [
  9. recode_conflict="$recode_conflict mysql"
  10. ])
  11. fi
  12. if test -n "$recode_conflict"; then
  13. AC_MSG_ERROR([recode extension can not be configured together with:$recode_conflict])
  14. fi
  15. fi