diff options
author | wtc%google.com <devnull@localhost> | 2012-09-28 05:59:48 +0000 |
---|---|---|
committer | wtc%google.com <devnull@localhost> | 2012-09-28 05:59:48 +0000 |
commit | 8e79e883c4d545d3e509c6ea0aeae39c0871d1d6 (patch) | |
tree | 9f3341d9c1371c90a0952201b810a3ded8e4117d | |
parent | b59a7cc8fd90aed79950379e282f50acd90128b4 (diff) | |
download | nspr-hg-8e79e883c4d545d3e509c6ea0aeae39c0871d1d6.tar.gz |
Set NSPR version to 4.9.3 Beta.
Modified Files: configure.in configure repackage.sh prinit.h vercheck.c
-rwxr-xr-x | admin/repackage.sh | 8 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | pr/include/prinit.h | 6 | ||||
-rw-r--r-- | pr/tests/vercheck.c | 8 |
5 files changed, 13 insertions, 13 deletions
diff --git a/admin/repackage.sh b/admin/repackage.sh index 2f84803c..a3f004ee 100755 --- a/admin/repackage.sh +++ b/admin/repackage.sh @@ -32,10 +32,10 @@ # # ------------------------------------------------------------------ -FROMTOP=/share/builds/components/nspr20/v4.9.2 -TOTOP=./v4.9.2 -NSPRDIR=nspr-4.9.2 -SOURCETAG=NSPR_4_9_2_RTM +FROMTOP=/share/builds/components/nspr20/v4.9.3 +TOTOP=./v4.9.3 +NSPRDIR=nspr-4.9.3 +SOURCETAG=NSPR_4_9_3_RTM # # enumerate Unix object directories on /s/b/c @@ -736,7 +736,7 @@ test "$host_alias" != "$target_alias" && MOD_MAJOR_VERSION=4 MOD_MINOR_VERSION=9 -MOD_PATCH_VERSION=2 +MOD_PATCH_VERSION=3 NSPR_MODNAME=nspr20 _HAVE_PTHREADS= USE_PTHREADS= diff --git a/configure.in b/configure.in index da7961c9..bfc1e212 100644 --- a/configure.in +++ b/configure.in @@ -15,7 +15,7 @@ dnl = Defaults dnl ======================================================== MOD_MAJOR_VERSION=4 MOD_MINOR_VERSION=9 -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 ee631bfc..c894b286 100644 --- a/pr/include/prinit.h +++ b/pr/include/prinit.h @@ -31,11 +31,11 @@ PR_BEGIN_EXTERN_C ** The format of the version string is ** "<major version>.<minor version>[.<patch level>] [<Beta>]" */ -#define PR_VERSION "4.9.2" +#define PR_VERSION "4.9.3 Beta" #define PR_VMAJOR 4 #define PR_VMINOR 9 -#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 2f42523b..0e4cb718 100644 --- a/pr/tests/vercheck.c +++ b/pr/tests/vercheck.c @@ -20,9 +20,9 @@ #include <stdlib.h> /* - * This release (4.9.2) is backward compatible with the + * This release (4.9.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.x, 4.7.x, - * 4.8.x, 4.9, and 4.9.1 releases. It, of course, + * 4.8.x, 4.9, 4.9.1, and 4.9.2 releases. It, of course, * is compatible with itself. */ static char *compatible_version[] = { @@ -35,7 +35,7 @@ static char *compatible_version[] = { "4.7.6", "4.8", "4.8.1", "4.8.2", "4.8.3", "4.8.4", "4.8.5", "4.8.6", "4.8.7", "4.8.8", "4.8.9", - "4.9", "4.9.1", PR_VERSION + "4.9", "4.9.1", "4.9.2", PR_VERSION }; /* @@ -50,7 +50,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.9.3", + "4.9.4", "4.10", "4.10.1", "10.0", "11.1", "12.14.20" }; |