summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%google.com <devnull@localhost>2008-10-29 01:52:11 +0000
committerwtc%google.com <devnull@localhost>2008-10-29 01:52:11 +0000
commit42404113735f2d1aa32d34e033da55a26b48a60b (patch)
treeba7f762eab2416889dc555b25e236dc5025159c7
parent05a0799f98318ecbfad406b8e49cbc2b6c1ffeec (diff)
downloadnspr-hg-42404113735f2d1aa32d34e033da55a26b48a60b.tar.gz
Set NSPR version to 4.7.3 Beta.
Modified Files: configure configure.in repackage.sh prinit.h vercheck.c
-rwxr-xr-xadmin/repackage.sh8
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
-rw-r--r--pr/include/prinit.h6
-rw-r--r--pr/tests/vercheck.c8
5 files changed, 13 insertions, 13 deletions
diff --git a/admin/repackage.sh b/admin/repackage.sh
index bc219cce..74e4e65a 100755
--- a/admin/repackage.sh
+++ b/admin/repackage.sh
@@ -64,10 +64,10 @@
#
# ------------------------------------------------------------------
-FROMTOP=/share/builds/components/nspr20/v4.7.2
-TOTOP=./v4.7.2
-NSPRDIR=nspr-4.7.2
-SOURCETAG=NSPR_4_7_2_RTM
+FROMTOP=/share/builds/components/nspr20/v4.7.3
+TOTOP=./v4.7.3
+NSPRDIR=nspr-4.7.3
+SOURCETAG=NSPR_4_7_3_RTM
#
# enumerate Unix object directories on /s/b/c
diff --git a/configure b/configure
index 65000d74..bc2c5f02 100755
--- a/configure
+++ b/configure
@@ -689,7 +689,7 @@ test "$host_alias" != "$target_alias" &&
MOD_MAJOR_VERSION=4
MOD_MINOR_VERSION=7
-MOD_PATCH_VERSION=2
+MOD_PATCH_VERSION=3
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
USE_PTHREADS=
diff --git a/configure.in b/configure.in
index af52259e..c8d1c406 100644
--- a/configure.in
+++ b/configure.in
@@ -50,7 +50,7 @@ dnl = Defaults
dnl ========================================================
MOD_MAJOR_VERSION=4
MOD_MINOR_VERSION=7
-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 4c1d2c74..c71519e8 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.7.2"
+#define PR_VERSION "4.7.3 Beta"
#define PR_VMAJOR 4
#define PR_VMINOR 7
-#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 fa82cb12..843ec0c7 100644
--- a/pr/tests/vercheck.c
+++ b/pr/tests/vercheck.c
@@ -52,9 +52,9 @@
#include <stdlib.h>
/*
- * This release (4.7.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.x, 4.7, and
- * 4.7.1 releases. It, of course, is compatible with itself.
+ * This release (4.7.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, 4.7.1,
+ * and 4.7.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",
@@ -62,7 +62,7 @@ static char *compatible_version[] = {
"4.5", "4.5.1",
"4.6", "4.6.1", "4.6.2", "4.6.3", "4.6.4", "4.6.5",
"4.6.6", "4.6.7", "4.6.8",
- "4.7", "4.7.1", PR_VERSION
+ "4.7", "4.7.1", "4.7.2", PR_VERSION
};
/*