From: Richard Levitte Date: Tue, 20 Feb 2001 13:22:35 +0000 (+0000) Subject: Include OpenSSL header files earlier so macros like OPENSSL_SYS_VMS X-Git-Tag: OpenSSL_0_9_6a-beta1~23^2~51 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7ab1a391814e588506fe37c162a7cc760a422fd6;p=oweals%2Fopenssl.git Include OpenSSL header files earlier so macros like OPENSSL_SYS_VMS get a chance to be defined. --- diff --git a/crypto/asn1/a_utctm.c b/crypto/asn1/a_utctm.c index 0a5a8d2753..39b7910972 100644 --- a/crypto/asn1/a_utctm.c +++ b/crypto/asn1/a_utctm.c @@ -58,13 +58,13 @@ #include #include +#include "cryptlib.h" +#include #ifdef OPENSSL_SYS_VMS #include #include #include #endif -#include "cryptlib.h" -#include #if 0 int i2d_ASN1_UTCTIME(ASN1_UTCTIME *a, unsigned char **pp) diff --git a/crypto/des/read_pwd.c b/crypto/des/read_pwd.c index dc848f5af3..542df5bb66 100644 --- a/crypto/des/read_pwd.c +++ b/crypto/des/read_pwd.c @@ -56,8 +56,8 @@ * [including the GNU Public Licence.] */ -#if !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_WIN32) #include +#if !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_WIN32) #ifdef OPENSSL_UNISTD # include OPENSSL_UNISTD #else