How can you use autoconf to determine if a symbol is defined in the httpd executable used by apxs?
At some point around apache v2.2 the apr_connect function was replaced with apr_socket_connect. To make a module compatible with multiple versions of apache I will need to use autoconf to create defines based on the availability of apr_connect or apr_socket_connect.
The current sources are at https://github.com/rritoch/PikeVM/blob/master/root/boot/system-1.1/apache/configure.ac
Are there any pre-defined macros for autoconf that can perform this test?