ID: 4488
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Feedback
Bug Type: Installation problem
Operating System: Solaris 8
PHP Version: 3.0.16
New Comment:
php 4 configure uses sed instead of tr here,
does the same problem arise there?
Previous Comments:
------------------------------------------------------------------------
[2000-05-17 22:00:11] [EMAIL PROTECTED]
A slight correction to this problem. It only seems to occur when
the
LC_COLLATE environment variable is set to something other than
"C".
------------------------------------------------------------------------
[2000-05-17 21:44:18] [EMAIL PROTECTED]
After attempting to add mysql support to php, I started getting
link failures starting apache. I traced this to the
fact the configure was not adding -lmysqlclient to LIBS.
This in turn traces back to a change that SUN appears
to have made to tr. The command
echo mysqlclient | tr -c -d a-zA-Z0-9
returns a null string rather than "mysqlclient". The correct
command for Solaris 8 appears to be:
echo mysqlclient | tr -c -d '[:alnum:]'
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=4488&edit=1