How can I find out what options my PHP4 was compiled with?
When recompiling PHP4 do I need to include my orginal options in the ./configure line every time I recompile or can I just recompile PHP4 using my new options? Will PHP4 retain the orginal options when I recompile?
Thanks,
Jeff
You need to include all the options whenever you run ./configure.
Easy way is to make a file called configure.local and put all your options there, so you can just ./configure.local and it will run your configuration setup.
You can find out which options were used by making a page that says <? phpinfo(); ?>, have it parsed by PHP and view it in a browser.
Greetz,
DJ