Fix a problem if CFLAGS is too long cversion.c fails to compile when config
[openssl.git] / crypto / cversion.c
index 428def308136645b97550bd0593da281bf270080..0336adaa578482ecb2492c973b5a679920fbdf8e 100644 (file)
  * [including the GNU Public Licence.]
  */
 
-#include <stdio.h>
-#include <string.h>
 #include "cryptlib.h"
-#include <openssl/crypto.h>
 
-#ifdef MK1MF_BUILD
-# include "mk1mfinf.h"
-#else
-# include "buildinf.h"
+#ifndef NO_WINDOWS_BRAINDEATH
+#include "buildinf.h"
 #endif
 
 const char *SSLeay_version(int t)
@@ -74,10 +69,7 @@ const char *SSLeay_version(int t)
        if (t == SSLEAY_BUILT_ON)
                {
 #ifdef DATE
-               static char buf[sizeof(DATE)+11];
-
-               sprintf(buf,"built on: %s",DATE);
-               return(buf);
+               return(DATE);
 #else
                return("built on: date not available");
 #endif
@@ -85,10 +77,7 @@ const char *SSLeay_version(int t)
        if (t == SSLEAY_CFLAGS)
                {
 #ifdef CFLAGS
-               static char buf[sizeof(CFLAGS)+11];
-
-               sprintf(buf,"compiler: %s",CFLAGS);
-               return(buf);
+               return(cflags);
 #else
                return("compiler: information not available");
 #endif
@@ -96,12 +85,17 @@ const char *SSLeay_version(int t)
        if (t == SSLEAY_PLATFORM)
                {
 #ifdef PLATFORM
-               static char buf[sizeof(PLATFORM)+11];
-
-               sprintf(buf,"platform: %s", PLATFORM);
-               return(buf);
+               return(PLATFORM);
 #else
                return("platform: information not available");
+#endif
+               }
+       if (t == SSLEAY_DIR)
+               {
+#ifdef OPENSSLDIR
+               return "OPENSSLDIR: \"" OPENSSLDIR "\"";
+#else
+               return "OPENSSLDIR: N/A";
 #endif
                }
        return("not available");