mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 03:30:32 -04:00
Source general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. Its syntax draws upon C, Java, and Perl, and is easy to learn. The main goal of the language is to allow web developers to write dynamically generated webpages quickly, but you can do much more with PHP. WWW: http://www.php.net/ PR: 145772 Submitted by: Alex Keda
38 lines
843 B
C
38 lines
843 B
C
--- Zend/zend_list.c.orig 2007-01-01 10:35:46.000000000 +0100
|
|
+++ Zend/zend_list.c 2008-01-29 11:05:14.000000000 +0100
|
|
@@ -48,7 +48,7 @@
|
|
return index;
|
|
}
|
|
|
|
-ZEND_API int _zend_list_delete(int id TSRMLS_DC)
|
|
+ZEND_API int _zend_list_delete(ulong id TSRMLS_DC)
|
|
{
|
|
zend_rsrc_list_entry *le;
|
|
|
|
@@ -65,7 +65,7 @@
|
|
}
|
|
|
|
|
|
-ZEND_API void *_zend_list_find(int id, int *type TSRMLS_DC)
|
|
+ZEND_API void *_zend_list_find(ulong id, int *type TSRMLS_DC)
|
|
{
|
|
zend_rsrc_list_entry *le;
|
|
|
|
@@ -78,7 +78,7 @@
|
|
}
|
|
}
|
|
|
|
-ZEND_API int _zend_list_addref(int id TSRMLS_DC)
|
|
+ZEND_API int _zend_list_addref(ulong id TSRMLS_DC)
|
|
{
|
|
zend_rsrc_list_entry *le;
|
|
|
|
@@ -350,7 +350,7 @@
|
|
}
|
|
|
|
|
|
-char *zend_rsrc_list_get_rsrc_type(int resource TSRMLS_DC)
|
|
+char *zend_rsrc_list_get_rsrc_type(ulong resource TSRMLS_DC)
|
|
{
|
|
zend_rsrc_list_dtors_entry *lde;
|
|
int rsrc_type;
|