OLD | NEW |
1 /* | 1 /* |
2 * NSS utility functions | 2 * NSS utility functions |
3 * | 3 * |
4 * ***** BEGIN LICENSE BLOCK ***** | 4 * ***** BEGIN LICENSE BLOCK ***** |
5 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 5 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
6 * | 6 * |
7 * The contents of this file are subject to the Mozilla Public License Version | 7 * The contents of this file are subject to the Mozilla Public License Version |
8 * 1.1 (the "License"); you may not use this file except in compliance with | 8 * 1.1 (the "License"); you may not use this file except in compliance with |
9 * the License. You may obtain a copy of the License at | 9 * the License. You may obtain a copy of the License at |
10 * http://www.mozilla.org/MPL/ | 10 * http://www.mozilla.org/MPL/ |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "seccomon.h" | 44 #include "seccomon.h" |
45 #endif | 45 #endif |
46 | 46 |
47 /* | 47 /* |
48 * NSS utilities's major version, minor version, patch level, build number, | 48 * NSS utilities's major version, minor version, patch level, build number, |
49 * and whether this is a beta release. | 49 * and whether this is a beta release. |
50 * | 50 * |
51 * The format of the version string should be | 51 * The format of the version string should be |
52 * "<major version>.<minor version>[.<patch level>[.<build number>]][ <Beta>
]" | 52 * "<major version>.<minor version>[.<patch level>[.<build number>]][ <Beta>
]" |
53 */ | 53 */ |
54 #define NSSUTIL_VERSION "3.12.6.0" | 54 #define NSSUTIL_VERSION "3.12.6.1" |
55 #define NSSUTIL_VMAJOR 3 | 55 #define NSSUTIL_VMAJOR 3 |
56 #define NSSUTIL_VMINOR 12 | 56 #define NSSUTIL_VMINOR 12 |
57 #define NSSUTIL_VPATCH 6 | 57 #define NSSUTIL_VPATCH 6 |
58 #define NSSUTIL_VBUILD 0 | 58 #define NSSUTIL_VBUILD 1 |
59 #define NSSUTIL_BETA PR_FALSE | 59 #define NSSUTIL_BETA PR_FALSE |
60 | 60 |
61 #endif /* __nssutil_h_ */ | 61 #endif /* __nssutil_h_ */ |
OLD | NEW |