On Sunday 23 March 2014 14:27:43 Steffan Karger wrote: > + AC_EGREP_CPP(have_ssl_op_no_ticket, [ > + #include <openssl/ssl.h>
We just found that this breaks if the openssl headers are in a non-standard place. The test above sets the -I option in CFLAGS, but not in CPPFLAGS. So, maybe we should generally set -I in CPPFLAGS instead. Heiko