diff options
author | wtchang%redhat.com <devnull@localhost> | 2006-04-28 00:34:08 +0000 |
---|---|---|
committer | wtchang%redhat.com <devnull@localhost> | 2006-04-28 00:34:08 +0000 |
commit | c3577a16f13a77130170db961c8a8bcf72044fde (patch) | |
tree | a08006377354fb356c40aee2a6274418219cb380 /pr | |
parent | 3c0f197a6b3cdbf57e6489b5032f4fcbc04a36b1 (diff) | |
download | nspr-hg-c3577a16f13a77130170db961c8a8bcf72044fde.tar.gz |
Set the NSPR version to 4.6.2. a=wtc
Modified files: configure configure.in repackage.sh prinit.h vercheck.c
Tag: MOZILLA_1_8_BRANCH
Diffstat (limited to 'pr')
-rw-r--r-- | pr/include/prinit.h | 4 | ||||
-rw-r--r-- | pr/tests/vercheck.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/pr/include/prinit.h b/pr/include/prinit.h index e42dd1fe..4b871f5f 100644 --- a/pr/include/prinit.h +++ b/pr/include/prinit.h @@ -63,11 +63,11 @@ PR_BEGIN_EXTERN_C ** The format of the version string is ** "<major version>.<minor version>[.<patch level>] [<Beta>]" */ -#define PR_VERSION "4.6.2 Beta" +#define PR_VERSION "4.6.2" #define PR_VMAJOR 4 #define PR_VMINOR 6 #define PR_VPATCH 2 -#define PR_BETA PR_TRUE +#define PR_BETA PR_FALSE /* ** PRVersionCheck diff --git a/pr/tests/vercheck.c b/pr/tests/vercheck.c index 5174c0b3..2dfab53d 100644 --- a/pr/tests/vercheck.c +++ b/pr/tests/vercheck.c @@ -52,14 +52,14 @@ #include <stdlib.h> /* - * This release (4.6.1) is backward compatible with the - * 4.0.x, 4.1.x, 4.2.x, 4.3.x, 4.4.x, 4.5.x, and 4.6 releases. + * This release (4.6.2) is backward compatible with the + * 4.0.x, 4.1.x, 4.2.x, 4.3.x, 4.4.x, 4.5.x, 4.6, and 4.6.1 releases. * It, of course, is compatible with itself. */ static char *compatible_version[] = { "4.0", "4.0.1", "4.1", "4.1.1", "4.1.2", "4.1.3", "4.2", "4.2.1", "4.2.2", "4.3", "4.4", "4.4.1", - "4.5", "4.5.1", "4.6", PR_VERSION + "4.5", "4.5.1", "4.6", "4.6.1", PR_VERSION }; /* |