Eureka!
The proper command line for the PHP configure script is:
./configure --with-mysql=/usr --with-gd=/usr/local
I determined this by noting that the directory required for the --with-mysql parameter was said to be the base MySQL directory, albeit that directory does not contain the include files that the script complained about when I provided a complete path to where the mysql executable lay.
By analogy, I provided the --with-gd parameter with a path that was a directory 'short' (since the required library is in /usr/local/lib), and ta-dah!
The script worked.
Now, to see if the thing will compile. While that is occurring on 'onegin', I shall continue with the translation on my desktop.
Cheers...
./configure --with-mysql=/usr --with-gd=/usr/local
I determined this by noting that the directory required for the --with-mysql parameter was said to be the base MySQL directory, albeit that directory does not contain the include files that the script complained about when I provided a complete path to where the mysql executable lay.
By analogy, I provided the --with-gd parameter with a path that was a directory 'short' (since the required library is in /usr/local/lib), and ta-dah!
The script worked.
Now, to see if the thing will compile. While that is occurring on 'onegin', I shall continue with the translation on my desktop.
Cheers...