From:             [EMAIL PROTECTED]
Operating system: Solaris 8
PHP version:      3.0.17
PHP Bug Type:     Installation problem
Bug description:  configure uses /usr/bin/tr in a wrong way 

in php-3 configure uses tr like this:
tr -c -d a-zA-Z0-9

In Solaris 8 this will no longer work as support for 
syntax like a-zA-Z0-9 has been dropped from /usr/bin/tr.

Above like use of /usr/bin/tr in configure will result to
miscellanious compilation failures.

A fix would be to use tr syntax like this:
tr -c -d '[a-z][A-Z][0-9]'

This sed line will change the use of tr:
sed "s/tr -c -d a\-zA\-Z0\-9/tr -c -d \'\[a\-z\]\[A\-Z\]\[0\-9\]\'/g" configure


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