summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/opensslv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/opensslv.h')
-rw-r--r--src/lib/libcrypto/opensslv.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lib/libcrypto/opensslv.h b/src/lib/libcrypto/opensslv.h
new file mode 100644
index 0000000000..b841347f05
--- /dev/null
+++ b/src/lib/libcrypto/opensslv.h
@@ -0,0 +1,21 @@
1#ifndef HEADER_OPENSSLV_H
2#define HEADER_OPENSSLV_H
3
4/* Numeric release version identifier:
5 * MMNNFFRBB: major minor fix final beta/patch
6 * For example:
7 * 0.9.3-dev 0x00903000
8 * 0.9.3beta1 0x00903001
9 * 0.9.3beta2-dev 0x00903002
10 * 0.9.3beta2 0x00903002
11 * 0.9.3 0x00903100
12 * 0.9.3a 0x00903101
13 * 0.9.4 0x00904100
14 * 1.2.3z 0x1020311a
15 * (Prior to 0.9.3-dev a different scheme was used: 0.9.2b is 0x0922.)
16 */
17#define OPENSSL_VERSION_NUMBER 0x00904100L
18#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.4 09 Aug 1999"
19#define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT
20
21#endif /* HEADER_OPENSSLV_H */