summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2006-05-10 23:45:37 +0000
committerwtchang%redhat.com <devnull@localhost>2006-05-10 23:45:37 +0000
commitb4d2c99a5c2e11d379e959edd44bd86e4493f200 (patch)
treef6e80208acd11b4c4f5a7dbeceb504632d3a0e31
parented67952f7d2697c3abf8902fb1d55460ac92872a (diff)
downloadnspr-hg-b4d2c99a5c2e11d379e959edd44bd86e4493f200.tar.gz
Changed NSPR version to 4.6.3 Beta.
Modified Files: configure configure.in prinit.h vercheck.c Tag: NSPR_4_6_BRANCH
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
-rw-r--r--pr/include/prinit.h6
-rw-r--r--pr/tests/vercheck.c11
4 files changed, 11 insertions, 10 deletions
diff --git a/configure b/configure
index e553d5c9..d57a8fb9 100755
--- a/configure
+++ b/configure
@@ -687,7 +687,7 @@ test "$host_alias" != "$target_alias" &&
MOD_MAJOR_VERSION=4
MOD_MINOR_VERSION=6
-MOD_PATCH_VERSION=2
+MOD_PATCH_VERSION=3
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
USE_PTHREADS=
diff --git a/configure.in b/configure.in
index 35f497ec..d8370620 100644
--- a/configure.in
+++ b/configure.in
@@ -50,7 +50,7 @@ dnl = Defaults
dnl ========================================================
MOD_MAJOR_VERSION=4
MOD_MINOR_VERSION=6
-MOD_PATCH_VERSION=2
+MOD_PATCH_VERSION=3
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
USE_PTHREADS=
diff --git a/pr/include/prinit.h b/pr/include/prinit.h
index 4b871f5f..8060d061 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"
+#define PR_VERSION "4.6.3 Beta"
#define PR_VMAJOR 4
#define PR_VMINOR 6
-#define PR_VPATCH 2
-#define PR_BETA PR_FALSE
+#define PR_VPATCH 3
+#define PR_BETA PR_TRUE
/*
** PRVersionCheck
diff --git a/pr/tests/vercheck.c b/pr/tests/vercheck.c
index 2dfab53d..cbd41256 100644
--- a/pr/tests/vercheck.c
+++ b/pr/tests/vercheck.c
@@ -52,14 +52,15 @@
#include <stdlib.h>
/*
- * 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.
+ * This release (4.6.3) 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, 4.6.1,
+ * and 4.6.2 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", "4.6.1", PR_VERSION
+ "4.5", "4.5.1", "4.6", "4.6.1", "4.6.2", PR_VERSION
};
/*
@@ -74,7 +75,7 @@ static char *incompatible_version[] = {
"3.0", "3.0.1",
"3.1", "3.1.1", "3.1.2", "3.1.3",
"3.5", "3.5.1",
- "4.6.3",
+ "4.6.4",
"4.7", "4.7.1",
"10.0", "11.1", "12.14.20"
};