[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Matt Caswell
matt at openssl.org
Tue Jan 13 11:36:46 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via 36f694e09add27e5619abab9de2bbb0b6bf61037 (commit)
via 635ca4446f9f508e9e71d4aeb40c748e1198996d (commit)
from bd00b8dc65c403d249893e495fd3e4b89e60ca35 (commit)
- Log -----------------------------------------------------------------
commit 36f694e09add27e5619abab9de2bbb0b6bf61037
Author: Matt Caswell <matt at openssl.org>
Date: Tue Jan 13 10:20:12 2015 +0000
Make output from openssl version -f consistent with previous versions
Reviewed-by: Andy Polyakov <appro at openssl.org>
(cherry picked from commit 2d2671790ee12dedd92c97f35b6feb755b8d4374)
commit 635ca4446f9f508e9e71d4aeb40c748e1198996d
Author: Matt Caswell <matt at openssl.org>
Date: Sat Jan 10 23:36:28 2015 +0000
Fix warning where BIO_FLAGS_UPLINK was being redefined.
This warning breaks the build in 1.0.0 and 0.9.8
Reviewed-by: Andy Polyakov <appro at openssl.org>
(cherry picked from commit b1ffc6ca1c387efad0772c16dfe426afef45dc4f)
-----------------------------------------------------------------------
Summary of changes:
crypto/Makefile | 2 +-
crypto/ecdsa/ecs_vrf.c | 2 +-
util/mk1mf.pl | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/crypto/Makefile b/crypto/Makefile
index 1969fc3..9a39e93 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -55,7 +55,7 @@ top:
all: shared
buildinf.h: ../Makefile
- $(PERL) $(TOP)/util/mkbuildinf.pl "$(CFLAGS)" "$(PLATFORM)" >buildinf.h
+ $(PERL) $(TOP)/util/mkbuildinf.pl "$(CC) $(CFLAGS)" "$(PLATFORM)" >buildinf.h
x86cpuid.s: x86cpuid.pl perlasm/x86asm.pl
$(PERL) x86cpuid.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
diff --git a/crypto/ecdsa/ecs_vrf.c b/crypto/ecdsa/ecs_vrf.c
index 2836efe..188b9d5 100644
--- a/crypto/ecdsa/ecs_vrf.c
+++ b/crypto/ecdsa/ecs_vrf.c
@@ -57,7 +57,7 @@
*/
#include "ecs_locl.h"
-#include "cryptlib.h"
+#include <string.h>
#ifndef OPENSSL_NO_ENGINE
#include <openssl/engine.h>
#endif
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 905d1db..7d4491f 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -665,7 +665,7 @@ open (OUT,">>crypto/buildinf.h") || die "Can't open buildinf.h";
printf OUT <<EOF;
#ifdef $platform_cpp_symbol
/* auto-generated/updated by util/mk1mf.pl for crypto/cversion.c */
- #define CFLAGS "$cc $cflags"
+ #define CFLAGS "compiler: $cc $cflags"
#define PLATFORM "$platform"
EOF
printf OUT " #define DATE \"%s\"\n", scalar gmtime();
More information about the openssl-commits
mailing list