Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | /* |
michael@0 | 2 | * Softoken version numbers |
michael@0 | 3 | * |
michael@0 | 4 | * This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 5 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 6 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 7 | |
michael@0 | 8 | #ifndef _SOFTKVER_H_ |
michael@0 | 9 | #define _SOFTKVER_H_ |
michael@0 | 10 | |
michael@0 | 11 | #ifndef NSS_DISABLE_ECC |
michael@0 | 12 | #ifdef NSS_ECC_MORE_THAN_SUITE_B |
michael@0 | 13 | #define SOFTOKEN_ECC_STRING " Extended ECC" |
michael@0 | 14 | #else |
michael@0 | 15 | #define SOFTOKEN_ECC_STRING " Basic ECC" |
michael@0 | 16 | #endif |
michael@0 | 17 | #else |
michael@0 | 18 | #define SOFTOKEN_ECC_STRING "" |
michael@0 | 19 | #endif |
michael@0 | 20 | |
michael@0 | 21 | /* |
michael@0 | 22 | * Softoken's major version, minor version, patch level, build number, |
michael@0 | 23 | * and whether this is a beta release. |
michael@0 | 24 | * |
michael@0 | 25 | * The format of the version string should be |
michael@0 | 26 | * "<major version>.<minor version>[.<patch level>[.<build number>]][ <ECC>][ <Beta>]" |
michael@0 | 27 | */ |
michael@0 | 28 | #define SOFTOKEN_VERSION "3.16.2.3" SOFTOKEN_ECC_STRING |
michael@0 | 29 | #define SOFTOKEN_VMAJOR 3 |
michael@0 | 30 | #define SOFTOKEN_VMINOR 16 |
michael@0 | 31 | #define SOFTOKEN_VPATCH 2 |
michael@0 | 32 | #define SOFTOKEN_VBUILD 3 |
michael@0 | 33 | #define SOFTOKEN_BETA PR_FALSE |
michael@0 | 34 | |
michael@0 | 35 | #endif /* _SOFTKVER_H_ */ |