mirror of
https://github.com/php/pecl-mail-mailparse.git
synced 2026-03-23 22:52:14 +01:00
19 lines
451 B
Plaintext
19 lines
451 B
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
PHP_ARG_ENABLE(mailparse, whether to enable mailparse support,
|
|
[ --enable-mailparse Enable mailparse support.])
|
|
|
|
if test "$PHP_MAILPARSE" != "no"; then
|
|
if test "$ext_shared" != "yes" && test "$enable_mbstring" != "yes"; then
|
|
AC_MSG_WARN(Activating mbstring)
|
|
enable_mbstring=yes
|
|
fi
|
|
PHP_NEW_EXTENSION(mailparse, mailparse.c php_mailparse_mime.c php_mailparse_rfc822.c, $ext_shared)
|
|
|
|
PHP_ADD_MAKEFILE_FRAGMENT
|
|
|
|
fi
|
|
|