summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2002-09-04 17:41:51 +0000
committerfoobar <sniper@php.net>2002-09-04 17:41:51 +0000
commitdcf995c648aced2fc1f6801bd8dee1145823325f (patch)
treeb83d0d83c6d8c337ce98e748b9a34fb5dfc983d6
parent25e91506cb16c117e9afd5391a58c3ffc8cbb641 (diff)
downloadphp-git-dcf995c648aced2fc1f6801bd8dee1145823325f.tar.gz
ws fix
-rw-r--r--ext/cyrus/config.m479
1 files changed, 41 insertions, 38 deletions
diff --git a/ext/cyrus/config.m4 b/ext/cyrus/config.m4
index 7ba80610a1..776e7c39f5 100644
--- a/ext/cyrus/config.m4
+++ b/ext/cyrus/config.m4
@@ -6,42 +6,45 @@ PHP_ARG_WITH(cyrus, for cyrus imap support,
[ --with-cyrus Include cyrus imap support])
if test "$PHP_CYRUS" != "no"; then
- found_cyrus=no
- found_sasl=no
- found_openssl=no
- for i in /usr /usr/local $PHP_CYRUS; do
- if test -r $i/include/cyrus/imclient.h && test "$found_cyrus" = "no"; then
- PHP_ADD_INCLUDE($i/include)
- PHP_ADD_LIBRARY_WITH_PATH(cyrus, $i/lib, CYRUS_SHARED_LIBADD)
- found_cyrus=yes
- fi
- if test -r $i/include/sasl.h && test "$found_sasl" = "no"; then
- PHP_ADD_INCLUDE($i/include)
- PHP_ADD_LIBRARY_WITH_PATH(sasl, $i/lib, CYRUS_SHARED_LIBADD)
- found_sasl=yes
- elif test -r $i/include/sasl/sasl.h && test "$found_sasl" = "no"; then
- PHP_ADD_INCLUDE($i/include/sasl)
- PHP_ADD_LIBRARY_WITH_PATH(sasl, $i/lib, CYRUS_SHARED_LIBADD)
- found_sasl=yes
- fi
- if test -r $i/include/openssl/ssl.h && test "$found_openssl" = "no" && test "$PHP_OPENSSL" = "no"; then
- PHP_ADD_LIBRARY_WITH_PATH(ssl, $i/lib, CYRUS_SHARED_LIBADD)
- PHP_ADD_LIBRARY_WITH_PATH(crypto, $i/lib, CYRUS_SHARED_LIBADD)
- found_openssl=yes
- fi
- done
-
- if test "$found_cyrus" = "no"; then
- AC_MSG_RESULT(not found)
- AC_MSG_ERROR(Please Re-install the cyrus distribution)
- fi
-
- if test "$found_sasl" = "no"; then
- AC_MSG_RESULT(sasl not found)
- AC_MSG_ERROR(Please Re-install the cyrus distribution)
- fi
-
- PHP_NEW_EXTENSION(cyrus, cyrus.c, $ext_shared)
- PHP_SUBST(CYRUS_SHARED_LIBADD)
- AC_DEFINE(HAVE_CYRUS,1,[ ])
+ found_cyrus=no
+ found_sasl=no
+ found_openssl=no
+
+ for i in /usr /usr/local $PHP_CYRUS; do
+ if test -r $i/include/cyrus/imclient.h && test "$found_cyrus" = "no"; then
+ PHP_ADD_INCLUDE($i/include)
+ PHP_ADD_LIBRARY_WITH_PATH(cyrus, $i/lib, CYRUS_SHARED_LIBADD)
+ found_cyrus=yes
+ fi
+
+ if test -r $i/include/sasl.h && test "$found_sasl" = "no"; then
+ PHP_ADD_INCLUDE($i/include)
+ PHP_ADD_LIBRARY_WITH_PATH(sasl, $i/lib, CYRUS_SHARED_LIBADD)
+ found_sasl=yes
+ elif test -r $i/include/sasl/sasl.h && test "$found_sasl" = "no"; then
+ PHP_ADD_INCLUDE($i/include/sasl)
+ PHP_ADD_LIBRARY_WITH_PATH(sasl, $i/lib, CYRUS_SHARED_LIBADD)
+ found_sasl=yes
+ fi
+
+ if test -r $i/include/openssl/ssl.h && test "$found_openssl" = "no" && test "$PHP_OPENSSL" = "no"; then
+ PHP_ADD_LIBRARY_WITH_PATH(ssl, $i/lib, CYRUS_SHARED_LIBADD)
+ PHP_ADD_LIBRARY_WITH_PATH(crypto, $i/lib, CYRUS_SHARED_LIBADD)
+ found_openssl=yes
+ fi
+ done
+
+ if test "$found_cyrus" = "no"; then
+ AC_MSG_RESULT(not found)
+ AC_MSG_ERROR(Please Re-install the cyrus distribution)
+ fi
+
+ if test "$found_sasl" = "no"; then
+ AC_MSG_RESULT(sasl not found)
+ AC_MSG_ERROR(Please Re-install the cyrus distribution)
+ fi
+
+ PHP_NEW_EXTENSION(cyrus, cyrus.c, $ext_shared)
+ PHP_SUBST(CYRUS_SHARED_LIBADD)
+ AC_DEFINE(HAVE_CYRUS,1,[ ])
fi