michael@0: /* michael@0: * Softoken version numbers michael@0: * michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef _SOFTKVER_H_ michael@0: #define _SOFTKVER_H_ michael@0: michael@0: #ifndef NSS_DISABLE_ECC michael@0: #ifdef NSS_ECC_MORE_THAN_SUITE_B michael@0: #define SOFTOKEN_ECC_STRING " Extended ECC" michael@0: #else michael@0: #define SOFTOKEN_ECC_STRING " Basic ECC" michael@0: #endif michael@0: #else michael@0: #define SOFTOKEN_ECC_STRING "" michael@0: #endif michael@0: michael@0: /* michael@0: * Softoken's major version, minor version, patch level, build number, michael@0: * and whether this is a beta release. michael@0: * michael@0: * The format of the version string should be michael@0: * ".[.[.]][ ][ ]" michael@0: */ michael@0: #define SOFTOKEN_VERSION "3.16.2.3" SOFTOKEN_ECC_STRING michael@0: #define SOFTOKEN_VMAJOR 3 michael@0: #define SOFTOKEN_VMINOR 16 michael@0: #define SOFTOKEN_VPATCH 2 michael@0: #define SOFTOKEN_VBUILD 3 michael@0: #define SOFTOKEN_BETA PR_FALSE michael@0: michael@0: #endif /* _SOFTKVER_H_ */