X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fcversion.c;h=297f8843f58586803ea450af2e1be417186bbbc4;hp=4e823be52f9c1db3352a9e0ad0f225a4cc429c96;hb=aa66eba7c8c7496db92b80da19688d6f96a40b96;hpb=78414a6a897db42c9bcf06aa21c705811ab33921 diff --git a/crypto/cversion.c b/crypto/cversion.c index 4e823be52f..297f8843f5 100644 --- a/crypto/cversion.c +++ b/crypto/cversion.c @@ -59,40 +59,51 @@ #include #include #include "cryptlib.h" -#include "crypto.h" -#include "date.h" +#include -char *SSLeay_version(t) -int t; +#include "buildinf.h" + +const char *SSLeay_version(int t) { if (t == SSLEAY_VERSION) - return("SSLeay 0.9.0b 29-Jun-1998"); + return OPENSSL_VERSION_TEXT; if (t == SSLEAY_BUILT_ON) { #ifdef DATE - static char buf[sizeof(DATE)+10]; + static char buf[sizeof(DATE)+11]; - sprintf(buf,"built on %s",DATE); - return(buf); + sprintf(buf,"built on: %s",DATE); + return(buf); #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]; + static char buf[sizeof(CFLAGS)+11]; + + sprintf(buf,"compiler: %s",CFLAGS); + return(buf); +#else + return("compiler: information not available"); +#endif + } + if (t == SSLEAY_PLATFORM) + { +#ifdef PLATFORM + static char buf[sizeof(PLATFORM)+11]; - sprintf(buf,"C flags:%s",CFLAGS); + sprintf(buf,"platform: %s", PLATFORM); return(buf); #else - return("C flags not available"); + return("platform: information not available"); #endif } return("not available"); } -unsigned long SSLeay() +unsigned long SSLeay(void) { return(SSLEAY_VERSION_NUMBER); }