X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;f=crypto%2Fopensslv.h;h=8e5a5f553067299ae1b9ac81931127498744a6d9;hb=2e4d15fd0484fe07e298b00041ac8f9a0579d9e5;hp=e63b275e46f495338ab69d68f6b9a1d15c74d70c;hpb=6297bcd74cd362664c470b98a50db6aff4128eab;p=openssl.git diff --git a/crypto/opensslv.h b/crypto/opensslv.h index e63b275e46..8e5a5f5530 100644 --- a/crypto/opensslv.h +++ b/crypto/opensslv.h @@ -1,7 +1,12 @@ #ifndef HEADER_OPENSSLV_H #define HEADER_OPENSSLV_H -/* Numeric release version identifier: +#ifdef __cplusplus +extern "C" { +#endif + +/*- + * Numeric release version identifier: * MNNFFPPS: major minor fix patch status * The status nibble has one of the values 0 for development, 1 to e for betas * 1 to 14, and f for release. The patch level is exactly that. @@ -25,12 +30,17 @@ * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for * major minor fix final patch/beta) */ -#define OPENSSL_VERSION_NUMBER 0x00908000L -#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8-dev XX xxx XXXX" +#define OPENSSL_VERSION_NUMBER 0x100010d0L +#ifdef OPENSSL_FIPS +#define OPENSSL_VERSION_TEXT "OpenSSL 1.0.1m-fips-dev xx XXX xxxx" +#else +#define OPENSSL_VERSION_TEXT "OpenSSL 1.0.1m-dev xx XXX xxxx" +#endif #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT -/* The macros below are to be used for shared library (.so, .dll, ...) +/*- + * The macros below are to be used for shared library (.so, .dll, ...) * versioning. That kind of versioning works a bit differently between * operating systems. The most usual scheme is to set a major and a minor * number, and have the runtime loader check that the major number is equal @@ -79,7 +89,10 @@ * should only keep the versions that are binary compatible with the current. */ #define SHLIB_VERSION_HISTORY "" -#define SHLIB_VERSION_NUMBER "0.9.8" +#define SHLIB_VERSION_NUMBER "1.0.0" +#ifdef __cplusplus +} +#endif #endif /* HEADER_OPENSSLV_H */