The DECLARE is missing, I think. Added in r1734231.
> Am 09.03.2016 um 13:15 schrieb NormW <no...@gknw.net>:
>
> G/E
> Can't decide if the following:
>
>> GEN obj_release/mod_http2_link.opt
>> LINK obj_release/mod_http2.nlm
>> ### mwldnlm Linker Error:
>> # Undefined symbol: ap_create_request in
>> # h2_request.o
>
> is a typo and should be calling ap_create_request_config()
>
> or if:
>
>> request_rec *ap_create_request(conn_rec *conn)
> (protocol.c/http_protocol.h)
>
> needs to declared as:
>
>> AP_DECLARE(request_rec) *ap_create_request(conn_rec *conn)
>
> otherwise the ap_create_request symbol is not exported from the server for
> use by other modules...?
>
> Norm