|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2000-05-17 21:44 UTC] Bruce dot Hudson at Dal dot Ca
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:]'
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 18:00:01 2025 UTC |
A slight correction to this problem. It only seems to occur when the LC_COLLATE environment variable is set to something other than "C".