|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[1999-12-28 10:26 UTC] tw at itreff dot de
SuSE puts the mysql-includes in /usr/include/mysql, but the libs are in
/usr/lib. So I've changed the configure-Script to:
[...]
if test -f /usr/include/mysql/mysql.h; then
MYSQL_INCDIR=/usr/include/mysql
if test -d /usr/lib/mysql; then
MYSQL_LIBDIR=/usr/lib/mysql
else
MYSQL_LIBDIR=/usr/lib
fi
Balu
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Jun 30 23:00:01 2026 UTC |
I know that this is a buggy MYSQL installation from SuSE, but I think it is easy to change and it helps avoiding problems (I had...). BTW: The MYSQL_LIBDIR-Configuration of the configure script of PHP4.0b3 does this checking... Balu PS: SuSE got notified...