[openssl-commits] [openssl] master update

Kurt Roeckx kurt at openssl.org
Sat Jan 10 15:30:51 UTC 2015


The branch master has been updated
       via  264212b643c621d7e89079c1d2b76f87beec7ceb (commit)
      from  41c9cfbc4ee7345547fb98cccb8511f082f0910b (commit)


- Log -----------------------------------------------------------------
commit 264212b643c621d7e89079c1d2b76f87beec7ceb
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