mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
187 lines
5.0 KiB
Plaintext
187 lines
5.0 KiB
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
AC_DEFUN([IMAP_INC_CHK],[if test -r "$i$1/c-client.h"; then
|
|
AC_DEFINE(HAVE_IMAP2000, 1, [ ])
|
|
IMAP_DIR=$i
|
|
IMAP_INC_DIR=$i$1
|
|
break
|
|
elif test -r "$i$1/rfc822.h"; then
|
|
IMAP_DIR=$i;
|
|
IMAP_INC_DIR=$i$1
|
|
break
|
|
])
|
|
|
|
AC_DEFUN([IMAP_LIB_CHK],[
|
|
str="$IMAP_DIR/$1/lib$lib.*"
|
|
for i in `echo $str`; do
|
|
test -r $i && IMAP_LIBDIR=$IMAP_DIR/$1 && break 2
|
|
done
|
|
])
|
|
|
|
dnl PHP_IMAP_TEST_BUILD(function, action-if-ok, action-if-not-ok, extra-libs)
|
|
AC_DEFUN([PHP_IMAP_TEST_BUILD], [
|
|
PHP_TEST_BUILD([$1], [$2], [$3], [$4],
|
|
[
|
|
void mm_log(void){}
|
|
void mm_dlog(void){}
|
|
void mm_flags(void){}
|
|
void mm_fatal(void){}
|
|
void mm_critical(void){}
|
|
void mm_nocritical(void){}
|
|
void mm_notify(void){}
|
|
void mm_login(void){}
|
|
void mm_diskerror(void){}
|
|
void mm_status(void){}
|
|
void mm_lsub(void){}
|
|
void mm_list(void){}
|
|
void mm_exists(void){}
|
|
void mm_searched(void){}
|
|
void mm_expunged(void){}
|
|
])
|
|
])
|
|
|
|
AC_DEFUN([PHP_IMAP_KRB_CHK], [
|
|
if test "$PHP_KERBEROS" != "no"; then
|
|
PHP_SETUP_KERBEROS(IMAP_SHARED_LIBADD,
|
|
[
|
|
AC_DEFINE(HAVE_IMAP_KRB,1,[ ])
|
|
], [
|
|
AC_MSG_ERROR([Kerberos libraries not found.
|
|
|
|
Check the path given to --with-kerberos (if no path is given, searches in /usr/kerberos, /usr/local and /usr )
|
|
])
|
|
])
|
|
else
|
|
AC_EGREP_HEADER(auth_gss, $IMAP_INC_DIR/linkage.h, [
|
|
AC_MSG_ERROR([This c-client library is built with Kerberos support.
|
|
|
|
Add --with-kerberos to your configure line. Check config.log for details.
|
|
])
|
|
])
|
|
fi
|
|
])
|
|
|
|
AC_DEFUN([PHP_IMAP_SSL_CHK], [
|
|
if test "$PHP_IMAP_SSL" != "no"; then
|
|
PHP_SETUP_OPENSSL(IMAP_SHARED_LIBADD,
|
|
[
|
|
AC_DEFINE(HAVE_IMAP_SSL,1,[ ])
|
|
], [
|
|
AC_MSG_ERROR([OpenSSL libraries not found.
|
|
|
|
Check the path given to --with-openssl-dir and output in config.log)
|
|
])
|
|
])
|
|
elif test -f "$IMAP_INC_DIR/linkage.c"; then
|
|
AC_EGREP_HEADER(ssl_onceonlyinit, $IMAP_INC_DIR/linkage.c, [
|
|
AC_MSG_ERROR([This c-client library is built with SSL support.
|
|
|
|
Add --with-imap-ssl to your configure line. Check config.log for details.
|
|
])
|
|
])
|
|
fi
|
|
])
|
|
|
|
|
|
PHP_ARG_WITH(imap,for IMAP support,
|
|
[ --with-imap[=DIR] Include IMAP support. DIR is the c-client install prefix.])
|
|
|
|
PHP_ARG_WITH(kerberos,for IMAP Kerberos support,
|
|
[ --with-kerberos[=DIR] IMAP: Include Kerberos support. DIR is the Kerberos install prefix.], no, no)
|
|
|
|
PHP_ARG_WITH(imap-ssl,for IMAP SSL support,
|
|
[ --with-imap-ssl[=DIR] IMAP: Include SSL support. DIR is the OpenSSL install prefix.], no, no)
|
|
|
|
|
|
if test "$PHP_IMAP" != "no"; then
|
|
PHP_SUBST(IMAP_SHARED_LIBADD)
|
|
PHP_NEW_EXTENSION(imap, php_imap.c, $ext_shared)
|
|
AC_DEFINE(HAVE_IMAP,1,[ ])
|
|
|
|
for i in $PHP_IMAP /usr/local /usr; do
|
|
IMAP_INC_CHK()
|
|
el[]IMAP_INC_CHK(/include/c-client)
|
|
el[]IMAP_INC_CHK(/include/imap)
|
|
el[]IMAP_INC_CHK(/include)
|
|
el[]IMAP_INC_CHK(/imap)
|
|
el[]IMAP_INC_CHK(/c-client)
|
|
fi
|
|
done
|
|
|
|
dnl Check for c-client version 2004
|
|
AC_EGREP_HEADER(mail_fetch_overview_sequence, $IMAP_INC_DIR/mail.h, [
|
|
AC_DEFINE(HAVE_IMAP2004,1,[ ])
|
|
])
|
|
|
|
dnl Check for c-client version 2001
|
|
old_CPPFLAGS=$CPPFLAGS
|
|
CPPFLAGS=-I$IMAP_INC_DIR
|
|
AC_EGREP_CPP(this_is_true, [
|
|
#include "imap4r1.h"
|
|
#if defined(IMAPSSLPORT)
|
|
this_is_true
|
|
#endif
|
|
],[
|
|
AC_DEFINE(HAVE_IMAP2001, 1, [ ])
|
|
],[])
|
|
CPPFLAGS=$old_CPPFLAGS
|
|
|
|
PHP_CHECK_LIBRARY(pam, pam_start,
|
|
[
|
|
PHP_ADD_LIBRARY(pam,, IMAP_SHARED_LIBADD)
|
|
AC_DEFINE(HAVE_LIBPAM,1,[ ])
|
|
])
|
|
|
|
PHP_CHECK_LIBRARY(crypt, crypt,
|
|
[
|
|
PHP_ADD_LIBRARY(crypt,, IMAP_SHARED_LIBADD)
|
|
AC_DEFINE(HAVE_LIBCRYPT,1,[ ])
|
|
])
|
|
|
|
PHP_EXPAND_PATH($IMAP_DIR, IMAP_DIR)
|
|
|
|
if test -z "$IMAP_DIR"; then
|
|
AC_MSG_ERROR(Cannot find rfc822.h. Please check your c-client installation.)
|
|
fi
|
|
|
|
if test -r "$IMAP_DIR/c-client/c-client.a"; then
|
|
ln -s "$IMAP_DIR/c-client/c-client.a" "$IMAP_DIR/c-client/libc-client.a" >/dev/null 2>&1
|
|
elif test -r "$IMAP_DIR/$PHP_LIBDIR/c-client.a"; then
|
|
ln -s "$IMAP_DIR/$PHP_LIBDIR/c-client.a" "$IMAP_DIR/$PHP_LIBDIR/libc-client.a" >/dev/null 2>&1
|
|
fi
|
|
|
|
for lib in c-client4 c-client imap; do
|
|
IMAP_LIB=$lib
|
|
IMAP_LIB_CHK($PHP_LIBDIR)
|
|
IMAP_LIB_CHK(c-client)
|
|
done
|
|
|
|
if test -z "$IMAP_LIBDIR"; then
|
|
AC_MSG_ERROR(Cannot find imap library (libc-client.a). Please check your c-client installation.)
|
|
fi
|
|
|
|
PHP_ADD_INCLUDE($IMAP_INC_DIR)
|
|
PHP_ADD_LIBRARY_DEFER($IMAP_LIB,, IMAP_SHARED_LIBADD)
|
|
PHP_ADD_LIBPATH($IMAP_LIBDIR, IMAP_SHARED_LIBADD)
|
|
PHP_IMAP_KRB_CHK
|
|
PHP_IMAP_SSL_CHK
|
|
|
|
dnl Test the build in the end
|
|
TST_LIBS="$DLIBS $IMAP_SHARED_LIBADD"
|
|
|
|
dnl Check if auth_gss exists
|
|
PHP_IMAP_TEST_BUILD(auth_gssapi_valid, [
|
|
AC_DEFINE(HAVE_IMAP_AUTH_GSS, 1, [ ])
|
|
], [], $TST_LIBS)
|
|
|
|
AC_MSG_CHECKING(whether build with IMAP works)
|
|
PHP_IMAP_TEST_BUILD(mail_newbody, [
|
|
AC_MSG_RESULT(yes)
|
|
], [
|
|
AC_MSG_RESULT(no)
|
|
AC_MSG_ERROR([build test failed. Please check the config.log for details.])
|
|
], $TST_LIBS)
|
|
fi
|