From 09ad8001be7b059f1314e22635022fe7963610e8 Mon Sep 17 00:00:00 2001 From: "Ralf S. Engelschall" Date: Tue, 18 May 1999 09:19:28 +0000 Subject: [PATCH] Protect applications from failing to compile when they try to directly include opensslv.h. --- crypto/opensslv.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crypto/opensslv.h b/crypto/opensslv.h index 541891f239..2d92f5a856 100644 --- a/crypto/opensslv.h +++ b/crypto/opensslv.h @@ -1,3 +1,8 @@ +#ifndef HEADER_OPENSSLV_H +#define HEADER_OPENSSLV_H + #define OPENSSL_VERSION_NUMBER 0x0923 /* Version 0.9.1c is 0913 */ #define OPENSSL_VERSION_TEXT "OpenSSL 0.9.2c 01 Apr 1999" #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT + +#endif /* HEADER_OPENSSLV_H */ -- 2.25.1