[openssl] OpenSSL_1_1_1-stable update

tmraz at fedoraproject.org tmraz at fedoraproject.org
Wed Jun 19 12:41:52 UTC 2019


The branch OpenSSL_1_1_1-stable has been updated
       via  444ec8d5e78c37c456b46297d809535b5434137a (commit)
      from  c6991655c4ce4764861dd5bdf64a92be5f54dbb3 (commit)


- Log -----------------------------------------------------------------
commit 444ec8d5e78c37c456b46297d809535b5434137a
Author: Rebecca Cran <rebecca at bluestop.org>
Date:   Wed Jun 12 14:03:36 2019 -0600

    Fix UEFI build on FreeBSD by not including system headers
    
    CLA: trivial
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    Reviewed-by: Ben Kaduk <kaduk at mit.edu>
    Reviewed-by: Tomas Mraz <tmraz at fedoraproject.org>
    (Merged from https://github.com/openssl/openssl/pull/9149)

-----------------------------------------------------------------------

Summary of changes:
 crypto/rand/rand_unix.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/rand/rand_unix.c b/crypto/rand/rand_unix.c
index 4b91903..114c40b 100644
--- a/crypto/rand/rand_unix.c
+++ b/crypto/rand/rand_unix.c
@@ -21,7 +21,7 @@
 #if defined(__linux)
 # include <asm/unistd.h>
 #endif
-#if defined(__FreeBSD__)
+#if defined(__FreeBSD__) && !defined(OPENSSL_SYS_UEFI)
 # include <sys/types.h>
 # include <sys/sysctl.h>
 # include <sys/param.h>


More information about the openssl-commits mailing list