I am fairly new to the compiling process, however, when I recompile PHP I do not get the options that I have specified in the "./configure" command.
Basically, I ran the following sequence of commands:
"./configure --with-axps --with-mysql"
"make"
"make install"
However, I wanted to use a PHP program that supported IMAP, I ran the following commands:
"./configure --with-axps --with-mysql --with-imap"
"make"
"make install"
When I run the test script, the build date is not updated and the configure command like shows: './configure' '--with-apxs' '--with-mysql'.
Any thoughts?