I get the following when lauching apache with mod_trace_ouput :
Cannot load /usr/local/apache.senior/libexec/mod_trace_output.so into server: /usr/local/apache.senior/libexec/mod_trace_output.so: undefined symbol: output_filter
I've compiled my DSO with following commands :
apxs -c mod_trace_output.c apxs -i -a -n trace_ouput mod_trace_output.so
Any Idea ?
You have to compile with th other files comming with the release. output_filter is a function situated in filter.c.
Log in to post a comment.
I get the following when lauching apache with mod_trace_ouput :
Cannot load /usr/local/apache.senior/libexec/mod_trace_output.so into server: /usr/local/apache.senior/libexec/mod_trace_output.so: undefined symbol: output_filter
I've compiled my DSO with following commands :
apxs -c mod_trace_output.c
apxs -i -a -n trace_ouput mod_trace_output.so
Any Idea ?
You have to compile with th other files comming with the release. output_filter is a function situated in filter.c.