At 21:16 24.02.2001 +0100, Sebastian Bergmann wrote:
>Daniel Beulshausen wrote:
> > it means nearly no changes, one or two. i'll have to look at it again
> > before i can tell you which one.

okay, here we go, one patch is already done (quite a while ago), it was the 
add_property_unset thing in zend.
the other tiny patch is for zend too, and is attachet.

there are no further patches need in order to get it to compile here.
(if you're not going to start a gtk port, becasue that one from 
http://www.gimp.org/~tml/gimp/win32/ is alread great)

so as far i can see, there are no patches for php-gtk needed.

daniel

/*--
daniel beulshausen - [EMAIL PROTECTED]
using php on windows? http://www.php4win.de
Index: modules.h
===================================================================
RCS file: /repository/Zend/modules.h,v
retrieving revision 1.32
diff -u -u -r1.32 modules.h
--- modules.h   2000/12/22 21:11:34     1.32
+++ modules.h   2001/02/24 20:43:04
@@ -30,10 +30,10 @@
 #define GINIT_FUNC_ARGS                void
 #define GINIT_FUNC_ARGS_PASSTHRU
 
-extern unsigned char first_arg_force_ref[];
-extern unsigned char first_arg_allow_ref[];
-extern unsigned char second_arg_force_ref[];
-extern unsigned char second_arg_allow_ref[];
+ZEND_API extern unsigned char first_arg_force_ref[];
+ZEND_API extern unsigned char first_arg_allow_ref[];
+ZEND_API extern unsigned char second_arg_force_ref[];
+ZEND_API extern unsigned char second_arg_allow_ref[];
 
 #include "zend.h"
 
Index: zend_builtin_functions.c
===================================================================
RCS file: /repository/Zend/zend_builtin_functions.c,v
retrieving revision 1.81
diff -u -u -r1.81 zend_builtin_functions.c
--- zend_builtin_functions.c    2000/12/22 12:49:51     1.81
+++ zend_builtin_functions.c    2001/02/24 20:43:10
@@ -64,10 +64,10 @@
 static ZEND_FUNCTION(zend_test_func);
 #endif
 
-unsigned char first_arg_force_ref[] = { 1, BYREF_FORCE };
-unsigned char first_arg_allow_ref[] = { 1, BYREF_ALLOW };
-unsigned char second_arg_force_ref[] = { 2, BYREF_NONE, BYREF_FORCE };
-unsigned char second_arg_allow_ref[] = { 2, BYREF_NONE, BYREF_ALLOW };
+ZEND_API unsigned char first_arg_force_ref[] = { 1, BYREF_FORCE };
+ZEND_API unsigned char first_arg_allow_ref[] = { 1, BYREF_ALLOW };
+ZEND_API unsigned char second_arg_force_ref[] = { 2, BYREF_NONE, BYREF_FORCE };
+ZEND_API unsigned char second_arg_allow_ref[] = { 2, BYREF_NONE, BYREF_ALLOW };
 
 static zend_function_entry builtin_functions[] = {
        ZEND_FE(zend_version,           NULL)

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to