https://issues.apache.org/bugzilla/show_bug.cgi?id=55789
--- Comment #7 from Jeff Trawick <[email protected]> --- Finding declarations for ap_hook_FOO, ap_run_FOO: The ap_hook_ and ap_run_ portions are generated from macros. You need to look for just FOO include/http_request.h:AP_DECLARE_HOOK(int,post_perdir_config,(request_rec *r)) Maybe this is the right path: Look in build/config_vars.mk for the definition of EXTRA_INCLUDES. Mine looks like this: EXTRA_INCLUDES = -I. -I$(top_srcdir)/os/$(OS_DIR) -I$(top_srcdir)/include -I/home/trawick/inst/apr15-64/include/apr-1 -I$(top_srcdir)/modules/aaa -I$(top_srcdir)/modules/cache -I$(top_srcdir)/modules/core -I$(top_srcdir)/modules/database -I$(top_srcdir)/modules/filters -I$(top_srcdir)/modules/ldap -I$(top_builddir)/server -I$(top_srcdir)/modules/loggers -I$(top_srcdir)/modules/lua -I$(top_srcdir)/modules/proxy -I$(top_srcdir)/modules/session -I$(top_srcdir)/modules/ssl -I$(top_srcdir)/modules/test -I$(top_srcdir)/server -I$(top_srcdir)/modules/arch/unix -I$(top_srcdir)/modules/dav/main -I$(top_srcdir)/modules/generators -I$(top_srcdir)/modules/mappers Yours surely has /usr/local somewhere. Move any -I/usr/local/include to the end of the list. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
