On to the next problem...
I am getting a linking error when trying to compile:
php-3.0.18
with:
Apache-2.0.45
mysql-4.0.12
I expect that php-3 is expecting an older version (e.g.: 3.x?) of mysql. Is this a lost cause or is there a simple solution?
The messages are:
functions/file.o: In function php3_tempnam':
/home/php-3.0.18/functions/file.c:463: the use oftempnam' is dangerous, better use mkstemp'
functions/mysql.o: In functionphp3_mysql_create_db':
/home/php-3.0.18/functions/mysql.c:821: undefined reference to mysql_create_db'
functions/mysql.o: In functionphp3_mysql_drop_db':
/home/php-3.0.18/functions/mysql.c:867: undefined reference to mysql_drop_db'
/usr/local/mysql/lib/libmysqlclient.a(my_compress.o): In functionmy_compress_alloc':
my_compress.o(.text+0xb4): undefined reference to compress'
/usr/local/mysql/lib/libmysqlclient.a(my_compress.o): In functionmy_uncompress':
my_compress.o(.text+0x12a): undefined reference to `uncompress'
collect2: ld returned 1 exit status
make: ***
Error 1
--daveo