[openssl-commits] [openssl] master update
Matt Caswell
matt at openssl.org
Tue Jan 13 11:36:36 UTC 2015
The branch master has been updated
via 2d2671790ee12dedd92c97f35b6feb755b8d4374 (commit)
via b1ffc6ca1c387efad0772c16dfe426afef45dc4f (commit)
from 86d21d0b9577322ac5da0114c5fac16eb49b4cef (commit)
- Log -----------------------------------------------------------------
commit 2d2671790ee12dedd92c97f35b6feb755b8d4374
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>
commit b1ffc6ca1c387efad0772c16dfe426afef45dc4f
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>
-----------------------------------------------------------------------
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 5e6a0c3..1078240 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -64,7 +64,7 @@ fips: cryptlib.o thr_id.o uid.o $(CPUID_OBJ)
done;
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 7191b8a..2a350eb 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 e3d6c30..f3f5d68 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -836,7 +836,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