X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fopensslv.h;h=8e5a5f553067299ae1b9ac81931127498744a6d9;hp=0401a61e0ce3b9f61c23a4bfa55ff97bdd408cda;hb=2e4d15fd0484fe07e298b00041ac8f9a0579d9e5;hpb=e733dea3ce4d7f2a2c4d3d6c702c029bbb046994 diff --git a/crypto/opensslv.h b/crypto/opensslv.h index 0401a61e0c..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,16 +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 0x10001010L +#define OPENSSL_VERSION_NUMBER 0x100010d0L #ifdef OPENSSL_FIPS -#define OPENSSL_VERSION_TEXT "OpenSSL 1.0.1a-fips-dev xx XXX xxxx" +#define OPENSSL_VERSION_TEXT "OpenSSL 1.0.1m-fips-dev xx XXX xxxx" #else -#define OPENSSL_VERSION_TEXT "OpenSSL 1.0.1a-dev xx XXX xxxx" +#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 @@ -86,4 +92,7 @@ #define SHLIB_VERSION_NUMBER "1.0.0" +#ifdef __cplusplus +} +#endif #endif /* HEADER_OPENSSLV_H */