[openssl.org #3031] [PATCH] Undef X509_NAME also in x509v3.h like x509.h

2014-09-08 Thread Rich Salz via RT
OpenSSL_1_0_2-stable 240635c RT3031: Need to #undef some names for win32 HEAD 83e4e03 RT3031: Need to #undef some names for win32 Author: Robin Lee Date: Thu Sep 4 12:36:41 2014 -0400 RT3031: Need to #undef some names for win32 Copy the ifdef/undef stanza from x509.h to x509v3.h Reviewed-by: D

[openssl.org #3031] [PATCH] Undef X509_NAME also in x509v3.h like x509.h

2013-05-03 Thread Robin Lee via RT
Hi, all. Undef X509_NAME in x509_v3.h with the same codes in x509.h. The following header file arrangement will make program fail to build with MinGW: #include #include // Or any other header file that #define X509_NAME #include int main(int argc, char *argv[]) { return 0; } Undef X50