Commit e67c71c8 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix for WIN32 builds with KRB5

(cherry picked from commit 3eddd1706a30cdf3dc9278692d8ee9038eac8a0d)
parent ffa0e161
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -70,6 +70,15 @@
#include <stdio.h>
#include <ctype.h>
#include <krb5.h>
#ifdef OPENSSL_SYS_WIN32
/* These can sometimes get redefined indirectly by krb5 header files
 * after they get undefed in ossl_typ.h
 */
#undef X509_NAME
#undef X509_EXTENSIONS
#undef OCSP_REQUEST
#undef OCSP_RESPONSE
#endif

#ifdef  __cplusplus
extern "C" {