config9.m4 485 B

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