1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ssl/libcrypto/src/crypto/opensslv.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,89 @@
1.4 +#ifndef HEADER_OPENSSLV_H
1.5 +#define HEADER_OPENSSLV_H
1.6 +
1.7 +/* Numeric release version identifier:
1.8 + * MNNFFPPS: major minor fix patch status
1.9 + * The status nibble has one of the values 0 for development, 1 to e for betas
1.10 + * 1 to 14, and f for release. The patch level is exactly that.
1.11 + * For example:
1.12 + * 0.9.3-dev 0x00903000
1.13 + * 0.9.3-beta1 0x00903001
1.14 + * 0.9.3-beta2-dev 0x00903002
1.15 + * 0.9.3-beta2 0x00903002 (same as ...beta2-dev)
1.16 + * 0.9.3 0x0090300f
1.17 + * 0.9.3a 0x0090301f
1.18 + * 0.9.4 0x0090400f
1.19 + * 1.2.3z 0x102031af
1.20 + *
1.21 + * For continuity reasons (because 0.9.5 is already out, and is coded
1.22 + * 0x00905100), between 0.9.5 and 0.9.6 the coding of the patch level
1.23 + * part is slightly different, by setting the highest bit. This means
1.24 + * that 0.9.5a looks like this: 0x0090581f. At 0.9.6, we can start
1.25 + * with 0x0090600S...
1.26 + *
1.27 + * (Prior to 0.9.3-dev a different scheme was used: 0.9.2b is 0x0922.)
1.28 + * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for
1.29 + * major minor fix final patch/beta)
1.30 + */
1.31 +#define OPENSSL_VERSION_NUMBER 0x0090807fL
1.32 +#ifdef OPENSSL_FIPS
1.33 +#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8g-fips 19 Oct 2007"
1.34 +#else
1.35 +#define OPENSSL_VERSION_TEXT "OpenSSL 0.9.8g 19 Oct 2007"
1.36 +#endif
1.37 +#define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT
1.38 +
1.39 +
1.40 +/* The macros below are to be used for shared library (.so, .dll, ...)
1.41 + * versioning. That kind of versioning works a bit differently between
1.42 + * operating systems. The most usual scheme is to set a major and a minor
1.43 + * number, and have the runtime loader check that the major number is equal
1.44 + * to what it was at application link time, while the minor number has to
1.45 + * be greater or equal to what it was at application link time. With this
1.46 + * scheme, the version number is usually part of the file name, like this:
1.47 + *
1.48 + * libcrypto.so.0.9
1.49 + *
1.50 + * Some unixen also make a softlink with the major verson number only:
1.51 + *
1.52 + * libcrypto.so.0
1.53 + *
1.54 + * On Tru64 and IRIX 6.x it works a little bit differently. There, the
1.55 + * shared library version is stored in the file, and is actually a series
1.56 + * of versions, separated by colons. The rightmost version present in the
1.57 + * library when linking an application is stored in the application to be
1.58 + * matched at run time. When the application is run, a check is done to
1.59 + * see if the library version stored in the application matches any of the
1.60 + * versions in the version string of the library itself.
1.61 + * This version string can be constructed in any way, depending on what
1.62 + * kind of matching is desired. However, to implement the same scheme as
1.63 + * the one used in the other unixen, all compatible versions, from lowest
1.64 + * to highest, should be part of the string. Consecutive builds would
1.65 + * give the following versions strings:
1.66 + *
1.67 + * 3.0
1.68 + * 3.0:3.1
1.69 + * 3.0:3.1:3.2
1.70 + * 4.0
1.71 + * 4.0:4.1
1.72 + *
1.73 + * Notice how version 4 is completely incompatible with version, and
1.74 + * therefore give the breach you can see.
1.75 + *
1.76 + * There may be other schemes as well that I haven't yet discovered.
1.77 + *
1.78 + * So, here's the way it works here: first of all, the library version
1.79 + * number doesn't need at all to match the overall OpenSSL version.
1.80 + * However, it's nice and more understandable if it actually does.
1.81 + * The current library version is stored in the macro SHLIB_VERSION_NUMBER,
1.82 + * which is just a piece of text in the format "M.m.e" (Major, minor, edit).
1.83 + * For the sake of Tru64, IRIX, and any other OS that behaves in similar ways,
1.84 + * we need to keep a history of version numbers, which is done in the
1.85 + * macro SHLIB_VERSION_HISTORY. The numbers are separated by colons and
1.86 + * should only keep the versions that are binary compatible with the current.
1.87 + */
1.88 +#define SHLIB_VERSION_HISTORY ""
1.89 +#define SHLIB_VERSION_NUMBER "0.9.8"
1.90 +
1.91 +
1.92 +#endif /* HEADER_OPENSSLV_H */