Fix build failure on Windows due to undefined cflags identifier
[openssl.git] / crypto / cversion.c
index 3933a0c37a1a8ed1f6febbbaa3ecdd2fcfaa12bc..881957e8923e15caa096c65604909320ce43525a 100644 (file)
  * [including the GNU Public Licence.]
  */
 
-#include <stdio.h>
-#include <string.h>
 #include "cryptlib.h"
-#include "crypto.h"
-#include "date.h"
 
-const 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 OPENSSL_VERSION_TEXT;
        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
@@ -81,10 +77,7 @@ 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
@@ -92,18 +85,23 @@ 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");
        }
 
-unsigned long SSLeay()
+unsigned long SSLeay(void)
        {
        return(SSLEAY_VERSION_NUMBER);
        }