On Mon, Jul 6, 2015 at 1:51 PM, Prakash Premkumar <prakash.p...@gmail.com> wrote: > > I get the following error while trying to compile the module: > > mod_example.c:82:9: error: use of undeclared identifier 'ap_form_pair_t' > ap_form_pair_t *pair = (ap_form_pair_t *) apr_array_pop(pairs); > > apxs does not recognize ap_form_pair_t. Am I missing any header file ?
Your module may be compiled against an older Apache httpd (2.2.x) installed on the system ('ap_form_pair_t' being 2.4.x or trunk only). Regards, Yann.