X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=crypto%2Fcversion.c;h=d2c6e7025c20f263608833c7fc75bb17476303d6;hb=319d5c7a586a5695589494e16cb3dd5f82d753ca;hp=d36496dcc5d71e826ae64fa0419b56d453669d10;hpb=eda1f21f1af8b6f77327e7b37573af9c1ba73726;p=oweals%2Fopenssl.git diff --git a/crypto/cversion.c b/crypto/cversion.c index d36496dcc5..d2c6e7025c 100644 --- a/crypto/cversion.c +++ b/crypto/cversion.c @@ -1,5 +1,5 @@ /* crypto/cversion.c */ -/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written @@ -56,43 +56,56 @@ * [including the GNU Public Licence.] */ -#include -#include #include "cryptlib.h" -#include "crypto.h" -#include "date.h" -char *SSLeay_version(t) -int t; +#ifndef NO_WINDOWS_BRAINDEATH +#include "buildinf.h" +#endif + +const char *SSLeay_version(int t) { if (t == SSLEAY_VERSION) - return("SSLeay 0.8.1b 29-Jun-1998"); + return OPENSSL_VERSION_TEXT; if (t == SSLEAY_BUILT_ON) { #ifdef DATE - static char buf[sizeof(DATE)+10]; - - sprintf(buf,"built on %s",DATE); - return(buf); +# ifdef OPENSSL_USE_BUILD_DATE + return(DATE); +# else + return("built on: reproducible build, date unspecified"); +# endif #else - return("build date not available"); + return("built on: date not available"); #endif } if (t == SSLEAY_CFLAGS) { #ifdef CFLAGS - static char buf[sizeof(CFLAGS)+10]; - - sprintf(buf,"C flags:%s",CFLAGS); - return(buf); + return(CFLAGS); +#else + return("compiler: information not available"); +#endif + } + if (t == SSLEAY_PLATFORM) + { +#ifdef PLATFORM + return(PLATFORM); +#else + return("platform: information not available"); +#endif + } + if (t == SSLEAY_DIR) + { +#ifdef OPENSSLDIR + return "OPENSSLDIR: \"" OPENSSLDIR "\""; #else - return("C flags not available"); + return "OPENSSLDIR: N/A"; #endif } return("not available"); } -unsigned long SSLeay() +unsigned long SSLeay(void) { return(SSLEAY_VERSION_NUMBER); }