From:             thomas+php at stromberg dot org
Operating system: SUSE Linux 9.0 AMD64
PHP version:      5CVS-2004-04-26 (dev)
PHP Bug Type:     Compile Failure
Bug description:  configure in 5.0-RC2 does not look for mysqlclient in lib64

Description:
------------
The configure script has it hardcoded to search in lib/ 
or lib/mysql/ for the libmysqlclient library.

At least in SUSE Linux 9.0 64-bit, you must add lib64/ 
to this search path so that it runs correctly.

Here is a patch to configure, though I guess you guys 
need to patch the script that generates configure:

--- configure~  2004-04-25 21:13:43.000000000 -0500
+++ configure   2004-04-25 21:13:43.000000000 -0500
@@ -53844,7 +53844,7 @@ Note that the MySQL client 
library is not bundled anymore." 1>&2; exit 1; }
   fi 
-  for i in lib lib/mysql; do
+  for i in lib lib64 lib64/mysql lib/mysql; do
     
   str="$MYSQL_DIR/$i/libmysqlclient.*"
   for j in `echo $str`; do

Reproduce code:
---------------
./configure --with-apxs2=/usr/sbin/apxs2 --with-mysql

Expected result:
----------------
It should configure


-- 
Edit bug report at http://bugs.php.net/?id=28150&edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=28150&r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=28150&r=trysnapshot5
Fixed in CVS:               http://bugs.php.net/fix.php?id=28150&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=28150&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=28150&r=needtrace
Need Reproduce Script:      http://bugs.php.net/fix.php?id=28150&r=needscript
Try newer version:          http://bugs.php.net/fix.php?id=28150&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=28150&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=28150&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=28150&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=28150&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=28150&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=28150&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=28150&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=28150&r=isapi
Install GNU Sed:            http://bugs.php.net/fix.php?id=28150&r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=28150&r=float

Reply via email to