Hi,
You must use autoconf and automake to build the project. You can refer to the address. http://www.gnu.org/software/autoconf/ http://www.gnu.org/software/automake/
Um, none of the dependencies for httpd use automake, but rather libtool. That's probably KDevelop's problem - it may not support libtool. (Not sure as I've never used it.)
http://www.gnu.org/software/libtool/
post_config and post_read_request hooks. Ideally when Apache server = startup, the pre_config hook is executed and the post_read_request hook should be used when requesting the target file type, for example, *.php. And then execute the script by activating module for that type, eg. mod_php. I =
You are registering all of the hooks at module initialization time, correct? Take a look at the register_hooks function that most modules implement. mod_proxy.c is a decent enough example of where to call ap_hook_post_read_request within register_hooks. -- justin
