From 5839185cdd9b339ff741da437d964a25e72a3fb6 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sun, 25 Feb 2018 16:56:26 +0100 Subject: [PATCH] mem_sec.c: relax POSIX requirement. Even though mlock(2) was standardized in POSIX.1-2001, vendors did implement it prior that point. Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/5460) --- crypto/mem_sec.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crypto/mem_sec.c b/crypto/mem_sec.c index 4c01045495..77bf165fbc 100644 --- a/crypto/mem_sec.c +++ b/crypto/mem_sec.c @@ -22,7 +22,9 @@ /* e_os.h includes unistd.h, which defines _POSIX_VERSION */ #if !defined(OPENSSL_NO_SECURE_MEMORY) && defined(OPENSSL_SYS_UNIX) \ - && defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L + && ( (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) \ + || defined(__sun) || defined(__hpux) || defined(__sgi) \ + || defined(__osf__) ) # define IMPLEMENTED # include # include -- 2.34.1