head 1.6; access; symbols pkgsrc-2013Q2:1.6.0.46 pkgsrc-2013Q2-base:1.6 pkgsrc-2012Q4:1.6.0.44 pkgsrc-2012Q4-base:1.6 pkgsrc-2011Q4:1.6.0.42 pkgsrc-2011Q4-base:1.6 pkgsrc-2011Q2:1.6.0.40 pkgsrc-2011Q2-base:1.6 pkgsrc-2009Q4:1.6.0.38 pkgsrc-2009Q4-base:1.6 pkgsrc-2008Q4:1.6.0.36 pkgsrc-2008Q4-base:1.6 pkgsrc-2008Q3:1.6.0.34 pkgsrc-2008Q3-base:1.6 cube-native-xorg:1.6.0.32 cube-native-xorg-base:1.6 pkgsrc-2008Q2:1.6.0.30 pkgsrc-2008Q2-base:1.6 pkgsrc-2008Q1:1.6.0.28 pkgsrc-2008Q1-base:1.6 pkgsrc-2007Q4:1.6.0.26 pkgsrc-2007Q4-base:1.6 pkgsrc-2007Q3:1.6.0.24 pkgsrc-2007Q3-base:1.6 pkgsrc-2007Q2:1.6.0.22 pkgsrc-2007Q2-base:1.6 pkgsrc-2007Q1:1.6.0.20 pkgsrc-2007Q1-base:1.6 pkgsrc-2006Q4:1.6.0.18 pkgsrc-2006Q4-base:1.6 pkgsrc-2006Q3:1.6.0.16 pkgsrc-2006Q3-base:1.6 pkgsrc-2006Q2:1.6.0.14 pkgsrc-2006Q2-base:1.6 pkgsrc-2006Q1:1.6.0.12 pkgsrc-2006Q1-base:1.6 pkgsrc-2005Q4:1.6.0.10 pkgsrc-2005Q4-base:1.6 pkgsrc-2005Q3:1.6.0.8 pkgsrc-2005Q3-base:1.6 pkgsrc-2005Q2:1.6.0.6 pkgsrc-2005Q2-base:1.6 pkgsrc-2005Q1:1.6.0.4 pkgsrc-2005Q1-base:1.6 pkgsrc-2004Q4:1.6.0.2 pkgsrc-2004Q4-base:1.6 pkgsrc-2004Q3:1.5.0.6 pkgsrc-2004Q3-base:1.5 pkgsrc-2004Q2:1.5.0.4 pkgsrc-2004Q2-base:1.5 pkgsrc-2004Q1:1.5.0.2 pkgsrc-2004Q1-base:1.5 pkgsrc-2003Q4:1.4.0.2 pkgsrc-2003Q4-base:1.4 netbsd-1-6-1:1.3.0.2 netbsd-1-6-1-base:1.3 netbsd-1-6:1.2.0.8 netbsd-1-6-RELEASE-base:1.2 pkgviews:1.2.0.4 pkgviews-base:1.2 buildlink2:1.2.0.2 buildlink2-base:1.2 netbsd-1-5-PATCH003:1.2 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.6 date 2004.10.31.18.23.24; author jdolecek; state dead; branches; next 1.5; 1.5 date 2004.01.16.15.04.54; author jdolecek; state Exp; branches; next 1.4; 1.4 date 2003.08.31.19.55.48; author jdolecek; state Exp; branches; next 1.3; 1.3 date 2002.10.14.06.21.12; author martti; state Exp; branches; next 1.2; 1.2 date 2001.12.31.23.57.39; author jlam; state Exp; branches; next 1.1; 1.1 date 2001.10.16.05.39.57; author jlam; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2001.10.16.05.39.57; author jlam; state Exp; branches; next ; desc @@ 1.6 log @move php4-imap patches into php4/patches and use USE_PHP_EXT_PATCHES @ text @$NetBSD: patch-ab,v 1.5 2004/01/16 15:04:54 jdolecek Exp $ --- php_imap.c.orig 2003-09-04 09:48:30.000000000 +0200 +++ php_imap.c @@@@ -408,6 +408,11 @@@@ PHP_MINIT_FUNCTION(imap) ZEND_INIT_MODULE_GLOBALS(imap, php_imap_init_globals, NULL) +/* + * Optionally use the installed c-client linkage.c to determine which drivers + * are authenticators are linked in. Otherwise use this fixed list. + */ +#ifndef HAVE_IMAP_LINKAGE #ifndef PHP_WIN32 mail_link(&unixdriver); /* link in the unix driver */ mail_link(&mhdriver); /* link in the mh driver */ @@@@ -423,6 +428,10 @@@@ PHP_MINIT_FUNCTION(imap) mail_link(&tenexdriver); /* link in the tenex driver */ mail_link(&mtxdriver); /* link in the mtx driver */ mail_link(&dummydriver); /* link in the dummy driver */ +#else /* HAVE_IMAP_LINKAGE */ + /* link in the c-client mail and auth drivers */ +#include "linkage.c" +#endif /* HAVE_IMAP_LINKAGE */ #ifndef PHP_WIN32 auth_link(&auth_log); /* link in the log authenticator */ @ 1.5 log @Adapt the imap-uw c-client linkage file use patches, so that they are more acceptabtable for inclusion in master PHP sources. No externally visible change, so pkg revision not bumped. @ text @d1 1 a1 1 $NetBSD$ @ 1.4 log @Update PHP to final 4.3.3 Some highlights of changes since 4.2.3: * PCRE updated to 4.3, GD to 2.0.15 * improved Apache2 support * much improved stream & URL wrapper support, output compression support * added CLI (Command Line Interface) SAPI * debug_backtrace() backported from ZendEngine2 * faster build system * huge number of other bug fixes and improvements Packaging changes: * 'pcre', 'xml', and 'session' modules folded back into main package - 'pcre' and 'xml' is required by PEAR, and 'session' is just too essential to be separate * 'gd' module now uses bundled PHP GD library, which is better integrated * PHP modules use shared distinfo when possible to ease future PHP updates * ${PREFIX}/bin/php is now CLI version, ${PREFIX}/libexec/cgi-big/php remains CGI version @ text @d3 3 a5 3 --- php_imap.c.orig 2003-06-17 16:13:25.000000000 +0200 +++ php_imap.c 2003-08-31 15:12:30.000000000 +0200 @@@@ -408,6 +408,11 @@@@ d10 2 a11 2 + * Use the installed c-client linkage.c to determine which drivers and + * authenticators are linked in. d13 1 a13 1 +#if 0 d17 1 a17 1 @@@@ -423,6 +428,10 @@@@ d21 1 a21 1 +#else d24 1 a24 1 +#endif @ 1.3 log @Updated php to 4.2.3 * lots of bug fixes * experimental apache2 support * added IPv6 support to gethostbyaddr() ATTENTION!! register_globals defaults to 'off' now @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.2 2001/12/31 23:57:39 jlam Exp $ d3 3 a5 3 --- php_imap.c.orig Mon Aug 26 01:58:31 2002 +++ php_imap.c Sat Oct 12 10:49:37 2002 @@@@ -421,6 +421,11 @@@@ d17 1 a17 1 @@@@ -436,6 +441,10 @@@@ @ 1.2 log @Update math/php4-imap to 4.1.0. No list of changes from version 4.0.6; simply update to version from php-4.1.0 distribution, but add back "--with-imap-ssl" to configure options as the IMAP client library does both TLS _and_ IMAP over SSL, and the functionality isn't enabled in the PHP4 client unless this option is specified. @ text @d1 1 a1 1 $NetBSD$ d3 3 a5 3 --- php_imap.c.orig Fri Dec 7 11:47:59 2001 +++ php_imap.c @@@@ -410,6 +410,11 @@@@ d17 1 a17 1 @@@@ -430,6 +435,10 @@@@ d26 2 a27 2 /* lets allow NIL */ REGISTER_MAIN_LONG_CONSTANT("NIL", NIL, CONST_PERSISTENT | CONST_CS); @ 1.1 log @Initial revision @ text @d3 1 a3 1 --- php_imap.c.orig Wed May 30 13:27:49 2001 d5 2 a6 1 @@@@ -432,7 +432,11 @@@@ a8 2 -#if 1 d16 12 a27 1 #endif @ 1.1.1.1 log @Update php4-imap to the version from the php-4.0.6 distribution. There is no list of changes from version 4.0.5. Also move from the www category. @ text @@