Make it possible to get ENGINESDIR info from OpenSSL_versions
[openssl.git] / crypto / cversion.c
index 8e41fcef7467edd27ae0e98a5ce0d5922efc05d5..a13ccf429f1dca868d444067083685c86aca2875 100644 (file)
@@ -1,4 +1,3 @@
-/* crypto/cversion.c */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -101,6 +100,13 @@ const char *OpenSSL_version(int t)
         return "OPENSSLDIR: \"" OPENSSLDIR "\"";
 #else
         return "OPENSSLDIR: N/A";
+#endif
+    }
+    if (t == OPENSSL_ENGINES_DIR) {
+#ifdef ENGINESDIR
+        return "ENGINESDIR: \"" ENGINESDIR "\"";
+#else
+        return "ENGINESDIR: N/A";
 #endif
     }
     return ("not available");