Hello.
I have been trying to compile PHP 4.x.x on Solaris 9, with MySQL support. I am running the following configure:
./configure --with-apxs=/usr/apache/bin/apxs \
--with-zlib=/usr \
--with-openssl=/usr/local/ssl \
--with-mysql=/usr/local/mysql
The problem is it fails with the following:
-o sapi/cli/php
Undefined first referenced
symbol in file
mysql_drop_db ext/mysql/php_mysql.lo
mysql_create_db ext/mysql/php_mysql.lo
ld: fatal: Symbol referencing errors. No output written to sapi/cli/php
collect2: ld returned 1 exit status
*** Error code 1
make: Fatal error: Command failed for target `
Why does the make fail? Why cant it read those libraries?
Thanks