Commit 5839185c authored by Andy Polyakov's avatar Andy Polyakov
Browse files

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: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5460)
parent b9d1ad32
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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 <stdlib.h>
# include <assert.h>