On 10/28/2009 04:05 PM, Guenter Knauf wrote: > Hi Joe, > Joe Orton schrieb: >> Hiya, I'm not sure I follow this. HAVE_OCSP should be defined by the >> build system iff openssl/ocsp.h is present - the Netware scripts may >> need to be updated for this. I've updated the #if's to check for >> HAVE_OCSP in r830554; does this work for you? > yes, works noe for the case where HAVE_OCSP is not defined; that was > what I also was thinking of. > > but I still cant find anything in the OpenSSL sources where HAVE_OCSP > should get defined? I've searched through 0.9.8 / 1.0.0 witgh my NetWare > builds as well as through 1.0.0 of my Linux build, cant find ... > In which file do you have this macro defined with your build? > what am I missing?
Have a look at modules/ssl/config.m4: AC_DEFUN([CHECK_OCSP], [ AC_CHECK_HEADERS(openssl/ocsp.h,· [AC_DEFINE([HAVE_OCSP], 1, [Define if OCSP is supported by OpenSSL])] ) ]) Regards Rüdiger
