From 14a5c99b5c84ab86b34baf4b9e8f454118164815 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Thu, 1 Nov 2001 09:32:34 +1100 Subject: - (djm) Compat define for OpenSSL < 0.9.6 (No OPENSSL_free) --- defines.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'defines.h') diff --git a/defines.h b/defines.h index 060b6f35..838f1093 100644 --- a/defines.h +++ b/defines.h @@ -1,7 +1,7 @@ #ifndef _DEFINES_H #define _DEFINES_H -/* $Id: defines.h,v 1.74 2001/10/30 02:50:40 tim Exp $ */ +/* $Id: defines.h,v 1.75 2001/10/31 22:32:34 djm Exp $ */ /* Necessary headers */ @@ -45,6 +45,7 @@ #include /* For STDIN_FILENO, etc */ #include /* Struct winsize */ #include /* For O_NONBLOCK */ +#include /* For OPENSSL_VERSION_NUMBER */ /* *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively */ #ifdef HAVE_STRINGS_H @@ -450,6 +451,11 @@ struct winsize { # define getpgrp() getpgrp(0) #endif +/* OPENSSL_free() is Free() in versions before OpenSSL 0.9.6 */ +#if !defined(OPENSSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x0090600f) +# define OPENSSL_free(x) Free(x) +#endif + /* * Define this to use pipes instead of socketpairs for communicating with the * client program. Socketpairs do not seem to work on all systems. -- cgit v1.2.3