mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
urldata.h: fix cyassl/openssl/ssl.h build clash with wincrypt.h
Building with CyaSSL failed compilation. Reason being that OCSP_REQUEST and OCSP_RESPONSE are enum values in CyaSSL and defines in <wincrypt.h> included via <winldap.h> in ldap.c. http://curl.haxx.se/mail/lib-2012-06/0196.html
This commit is contained in:
parent
2bfa57bc32
commit
0d0893f2b9
@ -112,6 +112,8 @@
|
||||
#endif
|
||||
|
||||
#ifdef USE_CYASSL
|
||||
#undef OCSP_REQUEST /* avoid cyassl/openssl/ssl.h clash with wincrypt.h */
|
||||
#undef OCSP_RESPONSE /* avoid cyassl/openssl/ssl.h clash with wincrypt.h */
|
||||
#include <cyassl/openssl/ssl.h>
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user