mirror of
https://github.com/openssl/openssl.git
synced 2024-12-09 05:51:54 +08:00
3c58d44749
+ Always undef the symbols that may have been #define-d by wincrypt.h after the first inclusion of types.h to avoid errors from wincrypt.h symbols being used to compile OpenSSL code + Also need to remove #pragma once for this approach to work + Define WINCRYPT_USE_SYMBOL_PREFIX to enable wincrypt symbol prefix at some point in future Fixes #9981 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/18131)
43 lines
924 B
C
43 lines
924 B
C
/*
|
|
* Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
* in the file LICENSE in the source distribution or at
|
|
* https://www.openssl.org/source/license.html
|
|
*/
|
|
|
|
/*
|
|
* Simple buildtest to check for symbol collisions between wincrypt and
|
|
* OpenSSL headers
|
|
*/
|
|
|
|
#include <openssl/types.h>
|
|
|
|
#ifdef _WIN32
|
|
# ifndef WIN32_LEAN_AND_MEAN
|
|
# define WIN32_LEAN_AND_MEAN
|
|
# endif
|
|
# include <windows.h>
|
|
# include <wincrypt.h>
|
|
# ifndef X509_NAME
|
|
# ifndef PEDANTIC
|
|
# warning "wincrypt.h no longer defining X509_NAME before OpenSSL headers"
|
|
# endif
|
|
# endif
|
|
#endif
|
|
|
|
#include <openssl/opensslconf.h>
|
|
#ifndef OPENSSL_NO_STDIO
|
|
# include <stdio.h>
|
|
#endif
|
|
|
|
#include <openssl/evp.h>
|
|
#include <openssl/x509.h>
|
|
#include <openssl/x509v3.h>
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|