Fix build failure on Windows due to undefined cflags identifier
[openssl.git] / crypto / cversion.c
index 03d716a581aef43d99042edc88d468b2c72512f8..881957e8923e15caa096c65604909320ce43525a 100644 (file)
  * [including the GNU Public Licence.]
  */
 
-#include <stdio.h>
-#include <string.h>
 #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.9.1a 06-Jul-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);
+               return(DATE);
 #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("C flags not available");
+               return("compiler: information not available");
 #endif
                }
        if (t == SSLEAY_PLATFORM)
                {
 #ifdef PLATFORM
-               static char buf[sizeof(PLATFORM)+10];
-
-               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("Platform information not available");
+               return "OPENSSLDIR: N/A";
 #endif
                }
        return("not available");
        }
 
-unsigned long SSLeay()
+unsigned long SSLeay(void)
        {
        return(SSLEAY_VERSION_NUMBER);
        }