Re: [PHP-DEV] 4.0.6 Packaged!

2001-06-21 Thread Sergio Bruder

On Thu, Jun 21, 2001 at 10:04:45AM +0300, Andi Gutmans wrote:
 http://www.php.net/~andi/php-4.0.6.tar.gz
 
 Tomorrow I'll commit it to the phpweb CVS and we'll announce it on Friday.
 Please in the meanwhile make sure that no show stoppers have crept in.
 Show stoppers == something is completely broken in the core or a terrible 
 security hole which needs to be addressed ASAP.
 All the rest, little bugglets as found in bugs.php.net will have to wait 
 for 4.0.7 which IMO can soon start a release process of its own.
 Enjoy,
 Andi

Compiled under Conectiva Linux Snapshot version (soon-to-be 7.0), cgi
and module version, dinamic modules for imap, ldap, mysql, pgsql,
odbc. binaries RPM's and .src.rpm in snapshot mirrors tomorrow.
(http://snapshot.conectiva.com for more details)

configure used:

./configure \
»···--prefix=%{_prefix} \
»···--disable-debug \
»···--enable-pic \
»···--enable-inline-optimization \
»···--with-exec-dir=%{_bindir} \
»···--with-regex=system \
»···--with-gettext \
»···--with-freetype-dir=%{_prefix} \
»···--with-gd \
»···--with-jpeg-dir=%{_prefix} \
»···--with-png \
»···--with-zlib \
»···--with-db2 \
»···--with-db3 \
»···--with-gdbm \
»···--enable-debugger \
»···--enable-openssl \
»···--enable-magic-quotes \
»···--enable-safe-mode \
»···--enable-sockets \
»···--enable-sysvsem \
»···--enable-sysvshm \
»···--enable-track-vars \
»···--enable-yp \
»···--enable-wddx \
»···--enable-snmp \
»···--enable-dbf \
»···--enable-ftp \
»···--enable-mcrypt \
»···--enable-bcmath \
»···--without-mysql \
»···--without-unixODBC \
»···--with-xml

Sergio Bruder

-- 
 (  
 )) (tm)http://sergio.bruder.net
||-.  http://pontobr.org
|__|-'  [EMAIL PROTECTED], [EMAIL PROTECTED]
we are concerned about the GNU General Public License (GPL)
-- Microsoft press release
--
pub  1024D/0C7D9F49 2000-05-26 Sergio Devojno Bruder [EMAIL PROTECTED]
 Key fingerprint = 983F DBDF FB53 FE55 87DF  71CA 6B01 5E44 0C7D 9F49
sub  1024g/138DF93D 2000-05-26

-- 
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]




[PHP-DEV] Octal numbers and automatic conversions

2001-01-16 Thread Sergio Bruder

This snippet shows what I consider a problem: The automatic conversion
string-integer doesnt interprets '070' as an octal, giving 57 in the first
echo (correct) and 71 in the second (wrong).

?
echo (070  +1). "BR\n";
echo ('070'+1). "BR\n";
?

Sergio Bruder

-- 
 (  http://distro.conectiva.com.br
 )) (tm)http://sergio.bruder.net
|""|-.  http://pontobr.org
|__|-'  [EMAIL PROTECTED], [EMAIL PROTECTED]
--
pub  1024D/0C7D9F49 2000-05-26 Sergio Devojno Bruder [EMAIL PROTECTED]
 Key fingerprint = 983F DBDF FB53 FE55 87DF  71CA 6B01 5E44 0C7D 9F49
sub  1024g/138DF93D 2000-05-26

-- 
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]