Hi, Guenter Knauf schrieb: > then please lets do: > > #ifndef HAVE_OCSP > #if OPENSSL_VERSION_NUMBER >= 0x00907000 > #define HAVE_OCSP > #include <openssl/x509_vfy.h> > #include <openssl/ocsp.h> > #endif > #endif whoups, meant:
#ifndef HAVE_OCSP #if OPENSSL_VERSION_NUMBER >= 0x00907000 #define HAVE_OCSP #endif #endif #ifdef HAVE_OCSP #include <openssl/x509_vfy.h> #include <openssl/ocsp.h> #endif Gün.
