I have installed the following MySQL RPMs. MySQL-shared-4.0.17-0 MySQL-client-4.0.17-0 MySQL-server-4.0.17-0 MySQL-devel-4.0.17-0 MySQL-bench-4.0.17-0
Next I ran the following configure command, as the INSTALL file says. [EMAIL PROTECTED] php-4.3.4]# ./configure --with-mysql --with-apxs
The command executed without any errors. However, I saw the warning about compiling PHP with the built-in MySQL support versus building PHP with the local MySQL support files and decided I should compile PHP *without* the built in support.
I then ran: [EMAIL PROTECTED] php-4.3.4]# ./configure --with-mysql=/usr/bin/mysql --with-apxs
Thinking that the path to my MySQL binary was '/usr/bin/mysql' (which was confirmed by running 'which mysql'). However, the above configure command exits with the error.
configure: error: Cannot find MySQL header files under /usr/bin/mysql
Which, of course, makes sense because there aren't any header files located there. So, the 16 million dollar question is... what's the correct path that configure is looking for?
Any help is greatly appreciated.
Regards, Jeremy