Re: [PHP-DEV] 4.1.0RC2

2001-11-21 Thread Derick Rethans
On Thu, 22 Nov 2001, Balazs Nagy wrote: I found that these patches are for autoconf-2.52. Sadly _AC_DECL_YYTEXT breaks the compatibility with autoconf-2.13. Okay, the I can't apply it yet, as most people still use autoconf 2.13. Derick

Re: [PHP-DEV] 4.1.0RC2

2001-11-18 Thread Derick Rethans
Hello, can you clarify your patches? I've no idea why they are needed. Derick -- 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]

Re: [PHP-DEV] 4.1.0RC2

2001-11-18 Thread Balazs Nagy
On Sun, Nov 18 2001, Derick Rethans [EMAIL PROTECTED] wrote: I merged those patches. Can you try the latest CVS version? Works well. BTW is this a feature? ?php $a = array('a'='A', 'b'='B'); $b = array('a' = 'newA'); $c = $a + $b; $d = array_merge($a, $b); var_dump($c); var_dump($d); ?

Re: [PHP-DEV] 4.1.0RC2

2001-11-17 Thread Balazs Nagy
On Tue, Nov 13 2001, Derick Rethans [EMAIL PROTECTED] wrote: Forgot to attached it... I have downloaded the latest php4 from PHP_4_0_7 branch, and still I can't complile, but I found some patches against the HEAD branch which should applied to PHP_4_0_7 too:

Re: [PHP-DEV] 4.1.0RC2 (fwd)

2001-11-17 Thread Sascha Schumann
On Sat, 17 Nov 2001, Derick Rethans wrote: Hello Sascha, this user has some troubles, and suggests that this action should be taken in the configure process. Can I safely merge this in without problems? Looks fine to me. IIRC, this was just some issue with the auto-tools disliking

Re: [PHP-DEV] 4.1.0RC2

2001-11-17 Thread Derick Rethans
Hello, I merged those patches. Can you try the latest CVS version? Derick On Sat, 17 Nov 2001, Balazs Nagy wrote: On Tue, Nov 13 2001, Derick Rethans [EMAIL PROTECTED] wrote: Forgot to attached it... I have downloaded the latest php4 from PHP_4_0_7 branch, and still I can't complile,

Re: [PHP-DEV] 4.1.0RC2

2001-11-15 Thread Petr Cech
On Tue, Nov 13, 2001 at 04:10:01AM +0200 , Zeev Suraski wrote: http://www.php.net/~zeev/php-4.1.0RC2.tar.gz Do your thang :) There is some problem with php run from command line, when HTTP header output is disabled - that's either -f or -q test.php: ? session_start(); ? php -f test.php br

Re: [PHP-DEV] 4.1.0RC2

2001-11-13 Thread Balazs Nagy
On Tue, Nov 13 2001, Zeev Suraski [EMAIL PROTECTED] wrote: http://www.php.net/~zeev/php-4.1.0RC2.tar.gz Do your thang :) make[1]: Entering directory /home/js/dl/linux/web/php-4.1.0RC2/ext/curl' gcc -I. -I/home/js/dl/linux/web/php-4.1.0RC2/ext/curl -I/home/js/dl/linux/web/php-4.1.0RC2/main

Re: [PHP-DEV] 4.1.0RC2

2001-11-13 Thread Zeev Suraski
Either that or we can simply check if this #define exists... What do you think? Zeev At 11:37 13/11/2001, Balazs Nagy wrote: On Tue, Nov 13 2001, Zeev Suraski [EMAIL PROTECTED] wrote: http://www.php.net/~zeev/php-4.1.0RC2.tar.gz Do your thang :) make[1]: Entering directory

Re: [PHP-DEV] 4.1.0RC2

2001-11-13 Thread Derick Rethans
Hello, fixing this... Derick On Tue, 13 Nov 2001, Balazs Nagy wrote: On Tue, Nov 13 2001, Zeev Suraski [EMAIL PROTECTED] wrote: http://www.php.net/~zeev/php-4.1.0RC2.tar.gz Do your thang :) make[1]: Entering directory /home/js/dl/linux/web/php-4.1.0RC2/ext/curl' gcc -I.

Re: [PHP-DEV] 4.1.0RC2

2001-11-13 Thread Balazs Nagy
On Tue, Nov 13 2001, Zeev Suraski [EMAIL PROTECTED] wrote: Either that or we can simply check if this #define exists... What do you think? Checking for a version and for a #define is the same, but version checking is more subtle and can be hidden than another check for the #define's

Re: [PHP-DEV] 4.1.0RC2

2001-11-13 Thread Derick Rethans
Hello, can you replace the file ext/curl/config.m4 with the one attached and see if it works then? (dont forgot to (re)run ./buildconf). regards, Derick On Tue, 13 Nov 2001, Balazs Nagy wrote: On Tue, Nov 13 2001, Zeev Suraski [EMAIL PROTECTED] wrote:

Re: [PHP-DEV] 4.1.0RC2

2001-11-13 Thread Derick Rethans
On Tue, 13 Nov 2001, Zeev Suraski wrote: Either that or we can simply check if this #define exists... What do you think? I think we should just change the check. Users need to upgrade it anyways, if they're still using the version required by 4.0.6 (and this is what sterling always does).

Re: [PHP-DEV] 4.1.0RC2

2001-11-13 Thread Derick Rethans
Forgot to attached it... On Tue, 13 Nov 2001, Derick Rethans wrote: Hello, can you replace the file ext/curl/config.m4 with the one attached and see if it works then? (dont forgot to (re)run ./buildconf). regards, Derick On Tue, 13 Nov 2001, Balazs Nagy wrote: On Tue, Nov 13 2001,

Re: [PHP-DEV] 4.1.0RC2

2001-11-13 Thread Zeev Suraski
It's quite different actually - if we conduct a configure test, then presumably we'll refuse to compile under CURL below version 3.8.1 or whatever version it is. If we do an #ifdef check, it'll work with older CURL's. Zeev At 11:56 13/11/2001, Balazs Nagy wrote: On Tue, Nov 13 2001, Zeev

Re: [PHP-DEV] 4.1.0RC2

2001-11-13 Thread Derick Rethans
On Tue, 13 Nov 2001, Balazs Nagy wrote: On Tue, Nov 13 2001, Derick Rethans [EMAIL PROTECTED] wrote: Forgot to attached it... Thanks. Did it work or not? Derick I have another problem. Red Hat includes old autoconf (2.13) and automake (1.4p5). I have updated autoconf to 2.52 to

RE: [PHP-DEV] 4.1.0RC2

2001-11-13 Thread Marc Boeren
http://www.php.net/~zeev/php-4.1.0RC2.tar.gz Do your thang :) Compiles and runs the testsets fine (winnt, cgi, mysql + dbx + proprietary extension) Cheerio, Marc. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: