[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4

2009-02-16 Thread Greg Beaver
cellog Mon Feb 16 16:41:41 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar config.m4 Log: re-enable ext/phar on big-endian systems, fixes verified as workign http://cvs.php.net/viewvc.cgi/php-src/ext/phar/config.m4?r1=1.27.2.12&r2=1.27.2.13&diff_f

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4

2009-02-15 Thread Greg Beaver
cellog Sun Feb 15 18:53:22 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar config.m4 Log: revert accidental commit of config.m4, big-endian isn't ready quite yet http://cvs.php.net/viewvc.cgi/php-src/ext/phar/config.m4?r1=1.27.2.11&r2=1.27.2.12&di

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 tar.c

2009-02-15 Thread Greg Beaver
cellog Sun Feb 15 18:51:46 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar config.m4 tar.c Log: fix setting of 32-bit value on big-endian systems http://cvs.php.net/viewvc.cgi/php-src/ext/phar/config.m4?r1=1.27.2.10&r2=1.27.2.11&diff_format=u Inde

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4

2009-01-28 Thread Johannes Schlüter
johannesWed Jan 28 20:39:16 2009 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar config.m4 Log: Properly disable phar for the moment http://cvs.php.net/viewvc.cgi/php-src/ext/phar/config.m4?r1=1.27.2.9&r2=1.27.2.10&diff_format=u Index: php-src/e

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 util.c

2008-11-04 Thread Steph Fox
But - since when is hash not optional? It still is optional :-) Only if it is shared we cannot rely on it for higher SHA. Grr no exports. OK, gotcha now, sorry for the noise. - Steph -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 util.c

2008-11-04 Thread Marcus Boerger
Hello Steph, Tuesday, November 4, 2008, 2:52:48 PM, you wrote: >>> Nope. The *original* logic said 'is it there?' Greg changed that to 'is >>> it >>> !shared?' You changed it back to 'is it there?' It needs to be 'is it >>> there >>> && !shared?' >> >> read again. It says if it is shared then i

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 util.c

2008-11-04 Thread Steph Fox
Nope. The *original* logic said 'is it there?' Greg changed that to 'is it !shared?' You changed it back to 'is it there?' It needs to be 'is it there && !shared?' read again. It says if it is shared then issue an error. If it is present then use it. Args, sorry. I misread the commit and tho

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 util.c

2008-11-04 Thread Marcus Boerger
Hello Steph, Tuesday, November 4, 2008, 2:42:05 PM, you wrote: > Hi Marcus, >>> I'm pretty sure this is a wrong fix - the check for "not shared" replaces >>> the original check for HAVE_HASH_EXT, which is effectively a global >>> equivalent to $PHP_HASH. So it should be something like: >> >>> i

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 util.c

2008-11-04 Thread Steph Fox
Hi Marcus, I'm pretty sure this is a wrong fix - the check for "not shared" replaces the original check for HAVE_HASH_EXT, which is effectively a global equivalent to $PHP_HASH. So it should be something like: if test "$PHP_HASH" != "no"; then if test "$PHP_HASH_SHARED" != "yes"; then

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 util.c

2008-11-04 Thread Marcus Boerger
o > hash support under doze otherwise. HAVE_HASH_EXT is at least automatic...! Since I cannot test on windows I need windows developers like zou to fix it. > - Steph > ----- Original Message - > From: "Marcus Boerger" <[EMAIL PROTECTED]> > To: > Sent: Tuesda

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 util.c

2008-11-04 Thread Steph Fox
- Original Message - From: "Marcus Boerger" <[EMAIL PROTECTED]> To: Sent: Tuesday, November 04, 2008 1:27 AM Subject: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 util.c helly Tue Nov 4 01:27:52 2008 UTC Modified files: (Branch: PHP_5_3)

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 util.c

2008-11-03 Thread Marcus Boerger
helly Tue Nov 4 01:27:52 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar config.m4 util.c Log: - MFH Fix dependency from Phar to hash http://cvs.php.net/viewvc.cgi/php-src/ext/phar/config.m4?r1=1.27.2.7&r2=1.27.2.8&diff_format=u Index: php-src/e

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 phar.c phar_internal.h phar_object.c util.c /ext/phar/tests phar_get_supported_signatures_002a.phpt phar_setsignaturealgo2.phpt test_signaturealgos

2008-10-08 Thread Greg Beaver
cellog Thu Oct 9 00:50:47 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar config.m4 phar.c phar_internal.h phar_object.c util.c /php-src/ext/phar/tests phar_get_supported_signatures_002a.phpt

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4

2008-08-02 Thread Steph Fox
sfoxSat Aug 2 15:38:46 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar config.m4 Log: MFH Remove obsolete check (thanks Tony) http://cvs.php.net/viewvc.cgi/php-src/ext/phar/config.m4?r1=1.27.2.5&r2=1.27.2.6&diff_format=u Index: php-src/ext/pha

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4

2008-06-03 Thread Antony Dovgal
On 01.06.2008 08:21, Greg Beaver wrote: cellog Sun Jun 1 04:21:27 2008 UTC Added files: (Branch: PHP_5_3) /php-src/ext/phar/tests/files openssl.phar openssl.phar.pubkey private.pem Modified files: Valgrind has

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 phar.c phar_internal.h phar_object.c /ext/phar/tests phar_get_supported_signatures_001.phpt phar_get_supported_signatures_002.phpt phar_setsignatur

2008-05-31 Thread Greg Beaver
cellog Sun Jun 1 04:21:27 2008 UTC Added files: (Branch: PHP_5_3) /php-src/ext/phar/tests/files openssl.phar openssl.phar.pubkey private.pem Modified files: /php-src/ext/phar config.m4 phar.c pha

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 config.w32 phar.c phar_internal.h phar_object.c zip.c

2008-05-17 Thread Greg Beaver
cellog Sat May 17 20:07:23 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar config.m4 config.w32 phar.c phar_internal.h phar_object.c zip.c Log: enable by default statically instead of shared this is done by removing zlib/bz

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4

2008-05-15 Thread Greg Beaver
cellog Fri May 16 00:11:43 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar config.m4 Log: cosmetics http://cvs.php.net/viewvc.cgi/php-src/ext/phar/config.m4?r1=1.27.2.1&r2=1.27.2.2&diff_format=u Index: php-src/ext/phar/config.m4 diff -u php-src/ex

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/phar config.m4 config.w32

2008-05-15 Thread Greg Beaver
cellog Fri May 16 00:01:56 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar config.m4 config.w32 Log: as discussed on internals, enable phar by default for testing purposes. Phar is enabled as a shared extension by default in order to allow zlib/bz2