diff options
author | Brent Cook <bcook@cvs.openbsd.org> | 2015-07-16 22:36:51 +0000 |
---|---|---|
committer | Brent Cook <bcook@cvs.openbsd.org> | 2015-07-16 22:36:51 +0000 |
commit | ffdbc16e1a1bb5830a23e08a1fa29ad0afd7735f (patch) | |
tree | d2f43cfcdb3fabcfac16e6895a998fc6b8597476 /lib/libcrypto/opensslv.h | |
parent | 0ee423f48e0dec4bc8db004d04b760b10c426d9a (diff) |
Bump LIBRESSL_VERSION defines.
Moving forward, software should expect that LIBRESSL_VERSION_TEXT and
LIBRESSL_VERSION_NUMBER will increment for each LibreSSL-portable release.
ok deraadt@, beck@
Diffstat (limited to 'lib/libcrypto/opensslv.h')
-rw-r--r-- | lib/libcrypto/opensslv.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/libcrypto/opensslv.h b/lib/libcrypto/opensslv.h index acd81bf7fb4..574b6835454 100644 --- a/lib/libcrypto/opensslv.h +++ b/lib/libcrypto/opensslv.h @@ -1,10 +1,14 @@ -/* $OpenBSD: opensslv.h,v 1.29 2015/05/23 21:09:46 bcook Exp $ */ +/* $OpenBSD: opensslv.h,v 1.30 2015/07/16 22:36:50 bcook Exp $ */ #ifndef HEADER_OPENSSLV_H #define HEADER_OPENSSLV_H -#define LIBRESSL_VERSION_NUMBER 0x20000000L +/* These will change with each release of LibreSSL-portable */ +#define LIBRESSL_VERSION_NUMBER 0x20020002L +#define LIBRESSL_VERSION_TEXT "LibreSSL 2.2.2" + +/* These will never change */ #define OPENSSL_VERSION_NUMBER 0x20000000L -#define OPENSSL_VERSION_TEXT "LibreSSL 2.2" +#define OPENSSL_VERSION_TEXT LIBRESSL_VERSION_TEXT #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT #define SHLIB_VERSION_HISTORY "" |