jpayne@69: /* jpayne@69: * Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved. jpayne@69: * jpayne@69: * Licensed under the OpenSSL license (the "License"). You may not use jpayne@69: * this file except in compliance with the License. You can obtain a copy jpayne@69: * in the file LICENSE in the source distribution or at jpayne@69: * https://www.openssl.org/source/license.html jpayne@69: */ jpayne@69: jpayne@69: #ifndef HEADER_SYMHACKS_H jpayne@69: # define HEADER_SYMHACKS_H jpayne@69: jpayne@69: # include jpayne@69: jpayne@69: /* Case insensitive linking causes problems.... */ jpayne@69: # if defined(OPENSSL_SYS_VMS) jpayne@69: # undef ERR_load_CRYPTO_strings jpayne@69: # define ERR_load_CRYPTO_strings ERR_load_CRYPTOlib_strings jpayne@69: # undef OCSP_crlID_new jpayne@69: # define OCSP_crlID_new OCSP_crlID2_new jpayne@69: jpayne@69: # undef d2i_ECPARAMETERS jpayne@69: # define d2i_ECPARAMETERS d2i_UC_ECPARAMETERS jpayne@69: # undef i2d_ECPARAMETERS jpayne@69: # define i2d_ECPARAMETERS i2d_UC_ECPARAMETERS jpayne@69: # undef d2i_ECPKPARAMETERS jpayne@69: # define d2i_ECPKPARAMETERS d2i_UC_ECPKPARAMETERS jpayne@69: # undef i2d_ECPKPARAMETERS jpayne@69: # define i2d_ECPKPARAMETERS i2d_UC_ECPKPARAMETERS jpayne@69: jpayne@69: /* This one clashes with CMS_data_create */ jpayne@69: # undef cms_Data_create jpayne@69: # define cms_Data_create priv_cms_Data_create jpayne@69: jpayne@69: # endif jpayne@69: jpayne@69: #endif /* ! defined HEADER_VMS_IDHACKS_H */