a894886201
This package and lang/php5 aren't installed at the same time. Setting PHP_VERSION_DEFAULT as "5" or "53" to select PHP 5.2.x or 5.3.x. PHP is an HTML-embedded scripting language. It is modular, with some object-oriented features. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The language is designed to allow web developers to write dynamically generated pages quickly.
28 lines
993 B
Text
28 lines
993 B
Text
$NetBSD: patch-ad,v 1.1.1.1 2010/03/16 15:31:58 taca Exp $
|
|
|
|
--- ext/imap/config.m4.orig 2010-02-07 13:06:54.000000000 +0000
|
|
+++ ext/imap/config.m4
|
|
@@ -48,6 +48,14 @@ AC_DEFUN([PHP_IMAP_TEST_BUILD], [
|
|
])
|
|
])
|
|
|
|
+dsl Must be before --with-kerberos, affects the check
|
|
+PHP_ARG_WITH(imap-linkage,use IMAP c-client linkage,
|
|
+[ --with-imap-linkage Use IMAP c-client linkage to determine supported items.])
|
|
+
|
|
+if test "$PHP_IMAP_LINKAGE" != "no"; then
|
|
+ AC_DEFINE(HAVE_IMAP_LINKAGE, 1, [ ])
|
|
+fi
|
|
+
|
|
AC_DEFUN([PHP_IMAP_KRB_CHK], [
|
|
if test "$PHP_KERBEROS" != "no"; then
|
|
PHP_SETUP_KERBEROS(IMAP_SHARED_LIBADD,
|
|
@@ -59,7 +67,7 @@ AC_DEFUN([PHP_IMAP_KRB_CHK], [
|
|
Check the path given to --with-kerberos (if no path is given, searches in /usr/kerberos, /usr/local and /usr )
|
|
])
|
|
])
|
|
- else
|
|
+ elif test "$PHP_IMAP_LINKAGE" != "yes"; then
|
|
AC_EGREP_HEADER(auth_gss, $IMAP_INC_DIR/linkage.h, [
|
|
AC_MSG_ERROR([This c-client library is built with Kerberos support.
|
|
|