[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Kurt Roeckx
kurt at openssl.org
Sat Jan 10 16:02:18 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via e81a83657cc9a708ea25d4fcde6e0e9d04dd3ac5 (commit)
from cbbb952f3a3d25c30efc94401e4537da5bd985cc (commit)
- Log -----------------------------------------------------------------
commit e81a83657cc9a708ea25d4fcde6e0e9d04dd3ac5
Author: Kurt Roeckx <kurt at roeckx.be>
Date: Fri Jan 2 12:27:57 2015 +0100
Make build reproducible
It contained a date on when it was build.
Reviewed-by: Rich Salz <rsalz at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
crypto/cversion.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/crypto/cversion.c b/crypto/cversion.c
index 881957e..d2c6e70 100644
--- a/crypto/cversion.c
+++ b/crypto/cversion.c
@@ -69,7 +69,11 @@ const char *SSLeay_version(int t)
if (t == SSLEAY_BUILT_ON)
{
#ifdef DATE
+# ifdef OPENSSL_USE_BUILD_DATE
return(DATE);
+# else
+ return("built on: reproducible build, date unspecified");
+# endif
#else
return("built on: date not available");
#endif
More information about the openssl-commits
mailing list