[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
php-4.3.3, please test
- To: ports@openbsd.org
- Subject: php-4.3.3, please test
- From: Anil Madhavapeddy <anil@recoil.org>
- Date: Tue, 26 Aug 2003 16:39:25 +0100
- Content-Disposition: inline
- User-Agent: Mutt/1.4.1i
this will break the pear dependencies in-tree (it needs a trivial plist
update for those ports), but please test the main packages and extensions.
domxml still broken until threading is disabled in domxml.
Index: Makefile.inc
===================================================================
RCS file: /cvs/ports/www/php4/Makefile.inc,v
retrieving revision 1.14
diff -u -r1.14 Makefile.inc
--- Makefile.inc 28 May 2003 19:29:14 -0000 1.14
+++ Makefile.inc 26 Aug 2003 04:07:25 -0000
@@ -4,14 +4,14 @@
# and has Apache that supports DSO's.
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
-V= 4.3.2
+V= 4.3.3
DISTNAME= php-${V}
CATEGORIES= www lang
MAINTAINER= Anil Madhavapeddy <avsm@openbsd.org>
HOMEPAGE= http://www.php.net/
-MASTER_SITES= http://www.php.net/distributions/ \
+MASTER_SITES= http://us2.php.net/distributions/ \
http://se.php.net/distributions/ \
http://no.php.net/distributions/ \
http://uk.php.net/distributions/
Index: core/Makefile
===================================================================
RCS file: /cvs/ports/www/php4/core/Makefile,v
retrieving revision 1.15
diff -u -r1.15 Makefile
--- core/Makefile 21 Aug 2003 15:05:21 -0000 1.15
+++ core/Makefile 26 Aug 2003 04:07:25 -0000
@@ -2,7 +2,6 @@
MULTI_PACKAGES= -pear
SUBPACKAGE?=
-#BROKEN= 'writes all over /var/www'
COMMENT= "server-side HTML-embedded scripting language"
COMMENT-pear= "base classes for common PHP tasks"
Index: core/distinfo
===================================================================
RCS file: /cvs/ports/www/php4/core/distinfo,v
retrieving revision 1.6
diff -u -r1.6 distinfo
--- core/distinfo 28 May 2003 19:29:14 -0000 1.6
+++ core/distinfo 26 Aug 2003 04:07:25 -0000
@@ -1,3 +1,3 @@
-MD5 (php-4.3.2.tar.gz) = 8433a1d0ce679780990d4813ae094590
-RMD160 (php-4.3.2.tar.gz) = f3eab29e46809bbda23a7d55ec812e094ff76a2f
-SHA1 (php-4.3.2.tar.gz) = 44a38c97a0650106644b4553845941f4e86147c9
+MD5 (php-4.3.3.tar.gz) = fe3fede4115354155fc6185522f7c6b2
+RMD160 (php-4.3.3.tar.gz) = 03ac1565271284c2f6a862e220b9f6487e1d8813
+SHA1 (php-4.3.3.tar.gz) = 6aa670995119a34c408fd362d6c2f57329a1cd3d
Index: core/patches/patch-pear_PEAR_Config_php
===================================================================
RCS file: /cvs/ports/www/php4/core/patches/patch-pear_PEAR_Config_php,v
retrieving revision 1.1
diff -u -r1.1 patch-pear_PEAR_Config_php
--- core/patches/patch-pear_PEAR_Config_php 23 May 2003 20:06:22 -0000 1.1
+++ core/patches/patch-pear_PEAR_Config_php 26 Aug 2003 04:07:25 -0000
@@ -1,59 +1,67 @@
-$OpenBSD: patch-pear_PEAR_Config_php,v 1.1 2003/05/23 20:06:22 avsm Exp $
---- pear/PEAR/Config.php.orig Sat Apr 12 00:48:38 2003
-+++ pear/PEAR/Config.php Fri May 23 19:35:12 2003
-@@ -65,7 +65,7 @@ if (getenv('PHP_PEAR_INSTALL_DIR')) {
- define('PEAR_CONFIG_DEFAULT_PHP_DIR',
- PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'lib');
- } else {
-- define('PEAR_CONFIG_DEFAULT_PHP_DIR', PEAR_INSTALL_DIR);
-+ define('PEAR_CONFIG_DEFAULT_PHP_DIR', OPENBSD_PEAR_ROOT.'/lib');
- }
+$OpenBSD$
+--- pear/PEAR/Config.php.orig 2003-08-14 13:12:51.000000000 -0700
++++ pear/PEAR/Config.php 2003-08-25 19:17:56.000000000 -0700
+@@ -66,12 +66,7 @@ if (getenv('PHP_PEAR_HTTP_PROXY')) {
+ if (getenv('PHP_PEAR_INSTALL_DIR')) {
+ define('PEAR_CONFIG_DEFAULT_PHP_DIR', getenv('PHP_PEAR_INSTALL_DIR'));
+ } else {
+- if (@is_dir($PEAR_INSTALL_DIR)) {
+- define('PEAR_CONFIG_DEFAULT_PHP_DIR',
+- $PEAR_INSTALL_DIR);
+- } else {
+- define('PEAR_CONFIG_DEFAULT_PHP_DIR', $PEAR_INSTALL_DIR);
+- }
++ define('PEAR_CONFIG_DEFAULT_PHP_DIR', OPENBSD_PEAR_ROOT.'/lib');
}
-@@ -81,7 +81,7 @@ if (getenv('PHP_PEAR_DOC_DIR')) {
+ // Default for ext_dir
+@@ -93,8 +88,7 @@ if (getenv('PHP_PEAR_EXTENSION_DIR')) {
+ if (getenv('PHP_PEAR_DOC_DIR')) {
define('PEAR_CONFIG_DEFAULT_DOC_DIR', getenv('PHP_PEAR_DOC_DIR'));
} else {
- define('PEAR_CONFIG_DEFAULT_DOC_DIR',
-- PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'docs');
-+ OPENBSD_PEAR_ROOT.'/doc');
+- define('PEAR_CONFIG_DEFAULT_DOC_DIR',
+- $PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'docs');
++ define('PEAR_CONFIG_DEFAULT_DOC_DIR', OPENBSD_PEAR_ROOT.'/doc');
}
// Default for bin_dir
-@@ -96,7 +96,7 @@ if (getenv('PHP_PEAR_DATA_DIR')) {
+@@ -108,25 +102,21 @@ if (getenv('PHP_PEAR_BIN_DIR')) {
+ if (getenv('PHP_PEAR_DATA_DIR')) {
define('PEAR_CONFIG_DEFAULT_DATA_DIR', getenv('PHP_PEAR_DATA_DIR'));
} else {
- define('PEAR_CONFIG_DEFAULT_DATA_DIR',
-- PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'data');
-+ OPENBSD_PEAR_ROOT.'/data');
+- define('PEAR_CONFIG_DEFAULT_DATA_DIR',
+- $PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'data');
++ define('PEAR_CONFIG_DEFAULT_DATA_DIR', OPENBSD_PEAR_ROOT.'/data');
}
// Default for test_dir
-@@ -104,7 +104,7 @@ if (getenv('PHP_PEAR_TEST_DIR')) {
+ if (getenv('PHP_PEAR_TEST_DIR')) {
define('PEAR_CONFIG_DEFAULT_TEST_DIR', getenv('PHP_PEAR_TEST_DIR'));
} else {
- define('PEAR_CONFIG_DEFAULT_TEST_DIR',
-- PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'tests');
-+ OPENBSD_PEAR_ROOT.'/tests');
+- define('PEAR_CONFIG_DEFAULT_TEST_DIR',
+- $PEAR_INSTALL_DIR.DIRECTORY_SEPARATOR.'tests');
++ define('PEAR_CONFIG_DEFAULT_TEST_DIR', OPENBSD_PEAR_ROOT.'/test');
}
// Default for cache_dir
-@@ -112,8 +112,7 @@ if (getenv('PHP_PEAR_CACHE_DIR')) {
+ if (getenv('PHP_PEAR_CACHE_DIR')) {
define('PEAR_CONFIG_DEFAULT_CACHE_DIR', getenv('PHP_PEAR_CACHE_DIR'));
} else {
- define('PEAR_CONFIG_DEFAULT_CACHE_DIR',
+- define('PEAR_CONFIG_DEFAULT_CACHE_DIR',
- System::tmpdir() . DIRECTORY_SEPARATOR . 'pear' .
- DIRECTORY_SEPARATOR . 'cache');
-+ OPENBSD_PEAR_ROOT.'/cache');
++ define('PEAR_CONFIG_DEFAULT_CACHE_DIR', OPENBSD_PEAR_ROOT.'/cache');
}
// Default for php_bin
-@@ -164,8 +163,7 @@ if (getenv('PHP_PEAR_SIG_BIN')) {
+@@ -176,9 +166,7 @@ if (getenv('PHP_PEAR_SIG_TYPE')) {
+ if (getenv('PHP_PEAR_SIG_BIN')) {
define('PEAR_CONFIG_DEFAULT_SIG_BIN', getenv('PHP_PEAR_SIG_BIN'));
} else {
- define('PEAR_CONFIG_DEFAULT_SIG_BIN',
+- define('PEAR_CONFIG_DEFAULT_SIG_BIN',
- System::which(
- 'gpg', OS_WINDOWS ? 'c:\gnupg\gpg.exe' : '/usr/local/bin/gpg'));
-+ PHP_PREFIX . '/bin/gpg');
++ define('PEAR_CONFIG_DEFAULT_SIG_BIN', PHP_PREFIX . '/bin/gpg');
}
// Default for sig_keydir
Index: core/patches/patch-pear_PEAR_Installer_php
===================================================================
RCS file: core/patches/patch-pear_PEAR_Installer_php
diff -N core/patches/patch-pear_PEAR_Installer_php
--- core/patches/patch-pear_PEAR_Installer_php 21 Aug 2003 15:05:21 -0000 1.1
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,22 +0,0 @@
-$OpenBSD: patch-pear_PEAR_Installer_php,v 1.1 2003/08/21 15:05:21 espie Exp $
---- pear/PEAR/Installer.php.orig 2003-08-21 16:57:40.000000000 +0200
-+++ pear/PEAR/Installer.php 2003-08-21 16:58:58.000000000 +0200
-@@ -110,12 +110,16 @@ class PEAR_Installer extends PEAR_Common
- *
- * @access public
- */
-- function PEAR_Installer(&$ui)
-+ function PEAR_Installer(&$ui, $options = array())
- {
- parent::PEAR_Common();
- $this->setFrontendObject($ui);
- $this->debug = $this->config->get('verbose');
-- $this->registry = &new PEAR_Registry($this->config->get('php_dir'));
-+ $v = $this->config->get('php_dir');
-+ if (isset($options['installroot'])) {
-+ $v = $this->_prependPath($v, $options['installroot']);
-+ }
-+ $this->registry = &new PEAR_Registry($v);
- }
-
- // }}}
Index: core/patches/patch-pear_install-pear_php
===================================================================
RCS file: /cvs/ports/www/php4/core/patches/patch-pear_install-pear_php,v
retrieving revision 1.1
diff -u -r1.1 patch-pear_install-pear_php
--- core/patches/patch-pear_install-pear_php 21 Aug 2003 15:05:21 -0000 1.1
+++ core/patches/patch-pear_install-pear_php 26 Aug 2003 04:07:25 -0000
@@ -1,12 +1,16 @@
-$OpenBSD: patch-pear_install-pear_php,v 1.1 2003/08/21 15:05:21 espie Exp $
---- pear/install-pear.php.orig 2003-08-21 16:59:24.000000000 +0200
-+++ pear/install-pear.php 2003-08-21 16:59:41.000000000 +0200
-@@ -61,7 +61,7 @@ if (!empty($install_root)) {
-
- $reg = &new PEAR_Registry($reg_dir);
- $ui = &new PEAR_Frontend_CLI();
--$installer = &new PEAR_Installer($ui);
-+$installer = &new PEAR_Installer($ui, $options);
- $installer->registry = &$reg;
-
- foreach ($install_files as $package => $instfile) {
+$OpenBSD$
+--- pear/install-pear.php.orig 2003-08-14 13:12:51.000000000 -0700
++++ pear/install-pear.php 2003-08-25 22:33:58.000000000 -0700
+@@ -46,10 +46,10 @@ if (!empty($bin_dir)) {
+ // User supplied a dir prefix
+ if (!empty($with_dir)) {
+ $ds = DIRECTORY_SEPARATOR;
+- $config->set('php_dir', $with_dir, 'default');
++ $config->set('php_dir', $with_dir . $ds . 'lib', 'default');
+ $config->set('doc_dir', $with_dir . $ds . 'doc', 'default');
+ $config->set('data_dir', $with_dir . $ds . 'data', 'default');
+- $config->set('test_dir', $with_dir . $ds . 'test', 'default');
++ $config->set('test_dir', $with_dir . $ds . 'tests', 'default');
+ }
+ /* Print PEAR Conf (useful for debuging do NOT REMOVE)
+ sort($keys);
Index: core/pkg/PLIST-pear
===================================================================
RCS file: /cvs/ports/www/php4/core/pkg/PLIST-pear,v
retrieving revision 1.1
diff -u -r1.1 PLIST-pear
--- core/pkg/PLIST-pear 23 May 2003 20:06:22 -0000 1.1
+++ core/pkg/PLIST-pear 26 Aug 2003 04:07:25 -0000
@@ -1,13 +1,13 @@
-pear/lib/.registry/Archive_Tar.reg
-pear/lib/.registry/Console_Getopt.reg
-pear/lib/.registry/PEAR.reg
-pear/lib/.registry/DB.reg
-pear/lib/.registry/HTTP.reg
-pear/lib/.registry/Mail.reg
-pear/lib/.registry/Net_SMTP.reg
-pear/lib/.registry/Net_Socket.reg
-pear/lib/.registry/XML_Parser.reg
-pear/lib/.registry/XML_RPC.reg
+pear/lib/.registry/archive_tar.reg
+pear/lib/.registry/console_getopt.reg
+pear/lib/.registry/pear.reg
+pear/lib/.registry/db.reg
+pear/lib/.registry/http.reg
+pear/lib/.registry/mail.reg
+pear/lib/.registry/net_smtp.reg
+pear/lib/.registry/net_socket.reg
+pear/lib/.registry/xml_parser.reg
+pear/lib/.registry/xml_rpc.reg
pear/lib/.lock
pear/lib/.filemap
pear/lib/Archive/Tar.php
@@ -23,6 +23,7 @@
pear/lib/PEAR/Command/Package.php
pear/lib/PEAR/Command/Registry.php
pear/lib/PEAR/Command/Remote.php
+pear/lib/PEAR/Command/Mirror.php
pear/lib/PEAR/Command/Auth.php
pear/lib/PEAR/Config.php
pear/lib/PEAR/Dependency.php
@@ -52,6 +53,7 @@
pear/lib/DB/pgsql.php
pear/lib/DB/sybase.php
pear/lib/DB/storage.php
+pear/lib/DB/sqlite.php
pear/lib/DB/common.php
pear/lib/DB.php
pear/lib/HTTP.php
@@ -61,80 +63,46 @@
pear/lib/Mail/mail.php
pear/lib/Mail.php
pear/doc/Archive_Tar/docs/Archive_Tar.txt
-pear/doc/DB/DB/MAINTAINERS
-pear/doc/DB/DB/STATUS
-pear/doc/DB/DB/TESTERS
-pear/doc/DB/DB/IDEAS
+pear/doc/DB/doc/MAINTAINERS
+pear/doc/DB/doc/STATUS
+pear/doc/DB/doc/TESTERS
+pear/doc/DB/doc/IDEAS
pear/data/PEAR/template.spec
pear/data/PEAR/package.dtd
pear/tests/DB/tests/db_parsedsn.phpt
pear/tests/DB/tests/db_factory.phpt
pear/tests/DB/tests/db_ismanip.phpt
pear/tests/DB/tests/db_error2.phpt
-pear/tests/DB/tests/oci8/08affectedrows.phpt
-pear/tests/DB/tests/oci8/09numrows.phpt
-pear/tests/DB/tests/oci8/13limit.phpt
-pear/tests/DB/tests/oci8/05sequences.phpt
-pear/tests/DB/tests/oci8/07errornative.phpt
-pear/tests/DB/tests/oci8/01connect.phpt
-pear/tests/DB/tests/oci8/10errormap.phpt
-pear/tests/DB/tests/oci8/04numcols.phpt
-pear/tests/DB/tests/oci8/03simplequery.phpt
-pear/tests/DB/tests/oci8/02fetch.phpt
-pear/tests/DB/tests/oci8/06prepexec.phpt
-pear/tests/DB/tests/odbc/09numrows.phpt
-pear/tests/DB/tests/odbc/07errornative.phpt
-pear/tests/DB/tests/odbc/01connect.phpt
-pear/tests/DB/tests/odbc/10errormap.phpt
-pear/tests/DB/tests/odbc/04numcols.phpt
-pear/tests/DB/tests/odbc/03simplequery.phpt
-pear/tests/DB/tests/odbc/02fetch.phpt
-pear/tests/DB/tests/odbc/06prepexec.phpt
-pear/tests/DB/tests/ibase/05sequences.phpt
-pear/tests/DB/tests/ibase/01connect.phpt
-pear/tests/DB/tests/ibase/10errormap.phpt
-pear/tests/DB/tests/ibase/04numcols.phpt
-pear/tests/DB/tests/ibase/03simplequery.phpt
-pear/tests/DB/tests/ibase/02fetch.phpt
-pear/tests/DB/tests/ibase/06prepexec.phpt
-pear/tests/DB/tests/mysql/08affectedrows.phpt
-pear/tests/DB/tests/mysql/09numrows.phpt
-pear/tests/DB/tests/mysql/13limit.phpt
-pear/tests/DB/tests/mysql/05sequences.phpt
-pear/tests/DB/tests/mysql/07errornative.phpt
-pear/tests/DB/tests/mysql/12tableinfo.phpt
-pear/tests/DB/tests/mysql/01connect.phpt
-pear/tests/DB/tests/mysql/10errormap.phpt
-pear/tests/DB/tests/mysql/04numcols.phpt
-pear/tests/DB/tests/mysql/03simplequery.phpt
-pear/tests/DB/tests/mysql/14fetchmode_object.phpt
-pear/tests/DB/tests/mysql/02fetch.phpt
-pear/tests/DB/tests/mysql/06prepexec.phpt
-pear/tests/DB/tests/pgsql/11transact.phpt
-pear/tests/DB/tests/pgsql/08affectedrows.phpt
-pear/tests/DB/tests/pgsql/09numrows.phpt
-pear/tests/DB/tests/pgsql/13limit.phpt
-pear/tests/DB/tests/pgsql/05sequences.phpt
-pear/tests/DB/tests/pgsql/07errornative.phpt
-pear/tests/DB/tests/pgsql/01connect.phpt
-pear/tests/DB/tests/pgsql/10errormap.phpt
-pear/tests/DB/tests/pgsql/04numcols.phpt
-pear/tests/DB/tests/pgsql/03simplequery.phpt
-pear/tests/DB/tests/pgsql/14fetchmode_object.phpt
-pear/tests/DB/tests/pgsql/02fetch.phpt
-pear/tests/DB/tests/pgsql/06prepexec.phpt
+pear/tests/DB/tests/errors.inc
+pear/tests/DB/tests/fetchmode_object.inc
+pear/tests/DB/tests/fetchmodes.inc
+pear/tests/DB/tests/fetchrow.inc
+pear/tests/DB/tests/include.inc
+pear/tests/DB/tests/limit.inc
+pear/tests/DB/tests/numcols.inc
+pear/tests/DB/tests/numrows.inc
+pear/tests/DB/tests/prepexe.inc
+pear/tests/DB/tests/sequences.inc
+pear/tests/DB/tests/simplequery.inc
+pear/tests/DB/tests/tableinfo.inc
+pear/tests/DB/tests/transactions.inc
+pear/tests/DB/tests/driver/02fetch.phpt
+pear/tests/DB/tests/driver/03simplequery.phpt
+pear/tests/DB/tests/driver/04numcols.phpt
+pear/tests/DB/tests/driver/05sequences.phpt
+pear/tests/DB/tests/driver/06prepexec.phpt
pear/tests/DB/tests/driver/08affectedrows.phpt
pear/tests/DB/tests/driver/09numrows.phpt
+pear/tests/DB/tests/driver/10errormap.phpt
pear/tests/DB/tests/driver/13limit.phpt
-pear/tests/DB/tests/driver/05sequences.phpt
+pear/tests/DB/tests/driver/14fetchmode_object.phpt
pear/tests/DB/tests/driver/15quote.phpt
+pear/tests/DB/tests/driver/bug22328.phpt
+pear/tests/DB/tests/driver/connect.inc
+pear/tests/DB/tests/driver/mktable.inc
+pear/tests/DB/tests/driver/setup.inc
+pear/tests/DB/tests/driver/skipif.inc
pear/tests/DB/tests/driver/01connect.phpt
-pear/tests/DB/tests/driver/10errormap.phpt
-pear/tests/DB/tests/driver/04numcols.phpt
-pear/tests/DB/tests/driver/03simplequery.phpt
-pear/tests/DB/tests/driver/14fetchmode_object.phpt
-pear/tests/DB/tests/driver/02fetch.phpt
-pear/tests/DB/tests/driver/06prepexec.phpt
pear/tests/DB/tests/db_error.phpt
pear/tests/XML_Parser/tests/002.phpt
pear/tests/XML_Parser/tests/003.phpt
@@ -263,6 +231,7 @@
pear/include/ext/xml/expat/utf8tab.h
pear/include/ext/xml/expat/nametab.h
pear/include/ext/xml/expat/latin1tab.h
+pear/include/ext/xml/expat/internal.h
pear/include/ext/xml/expat/iasciitab.h
pear/include/ext/xml/expat/expat.h
pear/include/ext/xml/expat/asciitab.h
@@ -334,38 +303,43 @@
pear/build/shtool
pear/build/mkdep.awk
pear/build/phpize.m4
-@dirrm pear/lib/.registry
-@dirrm pear/lib/PEAR/Command
-@dirrm pear/lib/PEAR/Frontend
-@dirrm pear/lib/PEAR
-@dirrm pear/doc/Archive_Tar/docs
-@dirrm pear/doc/Archive_Tar
-@dirrm pear/doc/DB/DB
-@dirrm pear/doc/DB
-@dirrm pear/doc
-@dirrm pear/data/PEAR
-@dirrm pear/data
-@dirrm pear/tests/DB/tests/oci8
-@dirrm pear/tests/DB/tests/odbc
-@dirrm pear/tests/DB/tests/ibase
-@dirrm pear/tests/DB/tests/mysql
-@dirrm pear/tests/DB/tests/pgsql
-@dirrm pear/tests/DB/tests/driver
-@dirrm pear/tests/DB/tests
-@dirrm pear/tests/DB
-@dirrm pear/tests/XML_Parser/tests
-@dirrm pear/tests/XML_Parser
-@dirrm pear/tests
-@dirrm pear/include/Zend
-@dirrm pear/include/TSRM
-@dirrm pear/include/ext/standard
-@dirrm pear/include/ext/session
+@dirrm pear/build
+@dirrm pear/include/regex
+@dirrm pear/include/main
+@dirrm pear/include/ext/pgsql
+@dirrm pear/include/ext/mbstring
@dirrm pear/include/ext/xml/expat
@dirrm pear/include/ext/xml
-@dirrm pear/include/ext/mbstring
-@dirrm pear/include/ext/pgsql
+@dirrm pear/include/ext/session
+@dirrm pear/include/ext/standard
@dirrm pear/include/ext
-@dirrm pear/include/main
-@dirrm pear/include/regex
+@dirrm pear/include/TSRM
+@dirrm pear/include/Zend
@dirrm pear/include
-@dirrm pear/build
+@dirrm pear/tests/XML_Parser/tests
+@dirrm pear/tests/XML_Parser
+@dirrm pear/tests/DB/tests/driver
+@dirrm pear/tests/DB/tests
+@dirrm pear/tests/DB
+@dirrm pear/tests
+@dirrm pear/data/PEAR
+@dirrm pear/data
+@dirrm pear/doc/DB/doc
+@dirrm pear/doc/DB
+@dirrm pear/doc/Archive_Tar/docs
+@dirrm pear/doc/Archive_Tar
+@dirrm pear/doc
+@dirrm pear/lib/Mail
+@dirrm pear/lib/DB
+@dirrm pear/lib/XML/RPC
+@dirrm pear/lib/XML
+@dirrm pear/lib/Net
+@dirrm pear/lib/OS
+@dirrm pear/lib/PEAR/Frontend
+@dirrm pear/lib/PEAR/Command
+@dirrm pear/lib/PEAR
+@dirrm pear/lib/Console
+@dirrm pear/lib/Archive
+@dirrm pear/lib/.registry
+@dirrm pear/lib
+@dirrm pear
Index: extensions/distinfo
===================================================================
RCS file: /cvs/ports/www/php4/extensions/distinfo,v
retrieving revision 1.6
diff -u -r1.6 distinfo
--- extensions/distinfo 28 May 2003 19:29:14 -0000 1.6
+++ extensions/distinfo 26 Aug 2003 04:07:25 -0000
@@ -1,3 +1,3 @@
-MD5 (php-4.3.2.tar.gz) = 8433a1d0ce679780990d4813ae094590
-RMD160 (php-4.3.2.tar.gz) = f3eab29e46809bbda23a7d55ec812e094ff76a2f
-SHA1 (php-4.3.2.tar.gz) = 44a38c97a0650106644b4553845941f4e86147c9
+MD5 (php-4.3.3.tar.gz) = fe3fede4115354155fc6185522f7c6b2
+RMD160 (php-4.3.3.tar.gz) = 03ac1565271284c2f6a862e220b9f6487e1d8813
+SHA1 (php-4.3.3.tar.gz) = 6aa670995119a34c408fd362d6c2f57329a1cd3d