[PHP-DEV] CVS Account Request: bossio

2002-04-01 Thread Juan Domingo Bossio
I am a cheef of very small, very high technology company boss i-o. We are commited to expand the open source marketplace. We operate in Europe (Italy, Spain, French and Germany) and Argentina. We have traduced interelly manual (not only index or many parts) of PHP 4 to Italian and Spanish

[PHP-DEV] OpenSSL support broken in current CVS ?

2002-04-01 Thread Magnus Määttä
From CVS 30 minutes ago, OpenSSL support doesn't build: /bin/sh libtool --silent --mode=compile gcc -I/root/PHP4/php4/ext/bcmath/libbcmath/src -I/root/PHP4/php4/ext/openssl -I/root/PHP4/php4/ext/openssl -DPHP_ATOM_INC -I/root/PHP4/php4/include -I/root/PHP4/php4/main -I/root/PHP4/php4

Re: [PHP-DEV] OpenSSL support broken in current CVS ?

2002-04-01 Thread Markus Fischer
Hmm .. can't reproduce this .. compiles and runs just fine (though I don't use any openssl functions). On Mon, Apr 01, 2002 at 10:54:36AM +0100, Magnus Määttä wrote : From CVS 30 minutes ago, OpenSSL support doesn't build: /bin/sh libtool --silent --mode=compile gcc

Re: [PHP-DEV] OpenSSL support broken in current CVS ?

2002-04-01 Thread Magnus Määttä
Seems like it have something to do with ZendEngine 2.. I switched back to v1 and it worked.. On Monday 01 April 2002 12:17, you wrote: Hmm .. can't reproduce this .. compiles and runs just fine (though I don't use any openssl functions). On Mon, Apr 01, 2002 at 10:54:36AM +0100,

Re: [PHP-DEV] OpenSSL support broken in current CVS ?

2002-04-01 Thread Markus Fischer
Ah sorry .. I overlooked that you mentioned ZE2. You should really write that in the Subject too ;-) On Mon, Apr 01, 2002 at 11:25:32AM +0100, Magnus Määttä wrote : Seems like it have something to do with ZendEngine 2.. I switched back to v1 and it worked.. On Monday 01 April 2002

Re: [PHP-DEV] CLI and -f

2002-04-01 Thread Andrei Zmievski
I agree. On Fri, 29 Mar 2002, Markus Fischer wrote: On Fri, Mar 29, 2002 at 01:00:47AM +0100, Marcus Börger wrote : The difference to many other programs is that we came from CGI. This is a (rather) bad excuse. It doesn't matter where we came from. What we all want is a

Re: [PHP-DEV] ZendEngine 2

2002-04-01 Thread l0t3k
Andi Stas, since were on the subject, will the preview release have the code for the rewritten Java extension. i'd like to use it as a guide for some code im working on -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] [Darwin] NSLinkModule and Apache modules

2002-04-01 Thread Marko Karppinen
We're running into problems with loading PHP extensions as MH_BUNDLEs when PHP itself is an MH_BUNDLE. Here's an ASCII depiction of what happens: ++ | Apache (the host application) | | defines: ap_func_1, ap_func_2 etc. |

[PHP-DEV] webserver in PHP

2002-04-01 Thread Daniel Lorch
Hi, I know this mailinglist is not exactly the right place to ask user questions (development WITH PHP etc..), but I am looking for some skilled people (UNIX gurus?) as I am stuck with a problem and I couldn't find the answer anywhere. And this is the place where the most skilled people are,

[PHP-DEV] API number

2002-04-01 Thread Andrei Zmievski
Since Wez put in streams implementation, I must adjust PHP-GTK to conform to it and that means distinguishing between old and new way according to something like an API number. Do we have an API_NO define in PHP somewhere? -Andrei It is commonly the case with technologies that you can get the

Re: [PHP-DEV] API number

2002-04-01 Thread Jani Taskinen
main/php.h: #define PHP_API_VERSION 20010901 --Jani On Mon, 1 Apr 2002, Andrei Zmievski wrote: Since Wez put in streams implementation, I must adjust PHP-GTK to conform to it and that means distinguishing between old and new way according to something like an API number. Do we

[PHP-DEV] Weird configure problem

2002-04-01 Thread Jon Parise
Am I the only one seeing this: checking size of char... configure: error: cannot compute sizeof (char), 77 This is with the latest PHP cvs, autoconf-2.53, and automake-1.5 under FreeBSD. I last built PHP successfully on March 26. I'll investigate this further myself in a few days when I

[PHP-DEV] Build system problem

2002-04-01 Thread Andrei Zmievski
I think the new build system macro PHP_NEW_EXTENSION() has a problem. It calls these two macros as follows: PHP_ADD_SOURCES($ext_builddir,$2,$ac_extra,) PHP_ADD_SOURCES_X($ext_builddir,$2,$ac_extra,shared_objects_$1,yes) Shouldn't it be $ext_srcdir instead of $ext_builddir? The

Re: [PHP-DEV] webserver in PHP

2002-04-01 Thread Jason Greene
On Mon, 2002-04-01 at 10:58, Daniel Lorch wrote: I am writing a server/daemon framework which should eventually allow PHP developers to quickly create a server. You should look at the quoted.php to see how easy this actually is. The framework does all the dirty work in the background

[PHP-DEV] Re: Bug #16265 Updated: Multiply-defined functions in classes not reported

2002-04-01 Thread brad lafountain
This bug is eaisly fixable. This is also something that i have been trying to push on a couple of threads now. You would need to do 3 things. 1) change the compiler so that inherited objects don't copy the opcodes of the functions. it will just store the parent's ce. 2) change the executor