Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: mozilla/security/nss/lib/softoken/softkver.h

Issue 14249009: Change the NSS and NSPR source tree to the new directory structure to be (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 * Softoken version numbers
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7
8 #ifndef _SOFTKVER_H_
9 #define _SOFTKVER_H_
10
11 #ifdef NSS_ENABLE_ECC
12 #ifdef NSS_ECC_MORE_THAN_SUITE_B
13 #define SOFTOKEN_ECC_STRING " Extended ECC"
14 #else
15 #define SOFTOKEN_ECC_STRING " Basic ECC"
16 #endif
17 #else
18 #define SOFTOKEN_ECC_STRING ""
19 #endif
20
21 /*
22 * Softoken's major version, minor version, patch level, build number,
23 * and whether this is a beta release.
24 *
25 * The format of the version string should be
26 * "<major version>.<minor version>[.<patch level>[.<build number>]][ <ECC>] [ <Beta>]"
27 */
28 #define SOFTOKEN_VERSION "3.14.3.0" SOFTOKEN_ECC_STRING " Beta"
29 #define SOFTOKEN_VMAJOR 3
30 #define SOFTOKEN_VMINOR 14
31 #define SOFTOKEN_VPATCH 3
32 #define SOFTOKEN_VBUILD 0
33 #define SOFTOKEN_BETA PR_TRUE
34
35 #endif /* _SOFTKVER_H_ */
OLDNEW
« no previous file with comments | « mozilla/security/nss/lib/softoken/sftkpwd.c ('k') | mozilla/security/nss/lib/softoken/softkver.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698