From: Marcus Boerger Date: Sat, 14 Jun 2003 16:54:18 +0000 (+0000) Subject: Update before moving to PECL X-Git-Tag: RELEASE_1_0_2~260 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3861a10c076113d84d15e49675bc74703982890d;p=php Update before moving to PECL --- diff --git a/ext/db/CREDITS b/ext/db/CREDITS index 9efbe3fe52..d1c3dc80d1 100644 --- a/ext/db/CREDITS +++ b/ext/db/CREDITS @@ -1,2 +1,2 @@ DBM -Rasmus Lerdorf, Jim Winstead +Rasmus Lerdorf, Jim Winstead, Marcus Boerger diff --git a/ext/db/db.c b/ext/db/db.c index 50c14f1c0c..530f2994e0 100644 --- a/ext/db/db.c +++ b/ext/db/db.c @@ -4,16 +4,17 @@ +----------------------------------------------------------------------+ | Copyright (c) 1997-2003 The PHP Group | +----------------------------------------------------------------------+ - | This source file is subject to version 3.0 of the PHP license, | + | This source file is subject to version 2.02 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | - | available through the world-wide-web at the following url: | - | http://www.php.net/license/3_0.txt. | + | available at through the world-wide-web at | + | http://www.php.net/license/2_02.txt. | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Rasmus Lerdorf | | Jim Winstead | + | Marcus Boerger | +----------------------------------------------------------------------+ */ @@ -185,8 +186,6 @@ dbm_info *php_find_dbm(pval *id TSRMLS_DC) /* {{{ proto array db_id_list(void) Return an associative array id->filename */ -#if HELLY_0 -/* New function not needed yet */ PHP_FUNCTION(db_id_list) { ulong numitems, i; @@ -212,7 +211,6 @@ PHP_FUNCTION(db_id_list) } } /* }}} */ -#endif /* {{{ php_get_info_db */ @@ -1096,7 +1094,7 @@ datum flatfile_firstkey(FILE *dbf) { } /* }}} */ -/* {{{ latfile_nextkey +/* {{{ flatfile_nextkey */ datum flatfile_nextkey(FILE *dbf) { datum buf; @@ -1170,9 +1168,7 @@ function_entry dbm_functions[] = { PHP_FE(dbmdelete, NULL) PHP_FE(dbmfirstkey, NULL) PHP_FE(dbmnextkey, NULL) -#if HELLY_0 PHP_FE(db_id_list, NULL) -#endif {NULL, NULL, NULL} }; /* }}} */ diff --git a/ext/db/package.xml b/ext/db/package.xml new file mode 100755 index 0000000000..6917a677e5 --- /dev/null +++ b/ext/db/package.xml @@ -0,0 +1,54 @@ + + + + DBM + DBM database bindings + + + rasmus + Rasmus Lerdorf + rasmus@php.net + lead + + + jimw + Jim Winstead + jimw@php.net + lead + + + helly + Marcus Börger + helly@php.net + developer + + + + This deprecated package is replaced by the standard extenstion dba. + + PHP + + deprecated + 1.0 + 2003-06-14 + + + + + + + + + + + + + + + + + + + + + diff --git a/ext/db/php_db.h b/ext/db/php_db.h index f2ee63b596..9f020acf5e 100644 --- a/ext/db/php_db.h +++ b/ext/db/php_db.h @@ -14,6 +14,7 @@ +----------------------------------------------------------------------+ | Authors: Rasmus Lerdorf | | Jim Winstead | + | Marcus Boerger | +----------------------------------------------------------------------+ */ @@ -76,5 +77,6 @@ PHP_FUNCTION(dbmexists); PHP_FUNCTION(dbmdelete); PHP_FUNCTION(dbmfirstkey); PHP_FUNCTION(dbmnextkey); +PHP_FUNCTION(db_id_list); #endif /* PHP_DB_H */