summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchristophe.ravel.bugs%sun.com <devnull@localhost>2007-05-07 21:11:30 +0000
committerchristophe.ravel.bugs%sun.com <devnull@localhost>2007-05-07 21:11:30 +0000
commit739e1a74b9f7f8385eb5abd279d66d6b13c971d2 (patch)
treecadd70193d9c538f6cc7c93a5469ab7c3f276a66
parent2dd8086e52b096c59e20b3a91a2c50e74037b8b5 (diff)
downloadnspr-hg-739e1a74b9f7f8385eb5abd279d66d6b13c971d2.tar.gz
Set NSPR version to 4.6.8 Beta.
-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.c6
5 files changed, 12 insertions, 12 deletions
diff --git a/admin/repackage.sh b/admin/repackage.sh
index e9016cc2..0a1c3734 100755
--- a/admin/repackage.sh
+++ b/admin/repackage.sh
@@ -64,10 +64,10 @@
#
# ------------------------------------------------------------------
-FROMTOP=/share/builds/components/nspr20/v4.6.7
-TOTOP=./v4.6.7
-NSPRDIR=nspr-4.6.7
-SOURCETAG=NSPR_4_6_7_RTM
+FROMTOP=/share/builds/components/nspr20/v4.6.8
+TOTOP=./v4.6.8
+NSPRDIR=nspr-4.6.8
+SOURCETAG=NSPR_4_6_8_RTM
#
# enumerate Unix object directories on /s/b/c
diff --git a/configure b/configure
index f53e9298..51d43300 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=7
+MOD_PATCH_VERSION=8
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
USE_PTHREADS=
diff --git a/configure.in b/configure.in
index 98295583..b44f9929 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=7
+MOD_PATCH_VERSION=8
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
USE_PTHREADS=
diff --git a/pr/include/prinit.h b/pr/include/prinit.h
index 8ccce840..e1b5e43a 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.7"
+#define PR_VERSION "4.6.8 Beta"
#define PR_VMAJOR 4
#define PR_VMINOR 6
-#define PR_VPATCH 7
-#define PR_BETA PR_FALSE
+#define PR_VPATCH 8
+#define PR_BETA PR_TRUE
/*
** PRVersionCheck
diff --git a/pr/tests/vercheck.c b/pr/tests/vercheck.c
index 8f458bbb..0c721e3b 100644
--- a/pr/tests/vercheck.c
+++ b/pr/tests/vercheck.c
@@ -52,16 +52,16 @@
#include <stdlib.h>
/*
- * This release (4.6.7) is backward compatible with the
+ * This release (4.6.8) 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, 4.6.2,
- * 4.6.3, 4.6.4, 4.6.5, and 4.6.6 releases. It, of course,
+ * 4.6.3, 4.6.4, 4.6.5, 4.6.6 and 4.6.7 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", "4.6.2", "4.6.3",
- "4.6.4", "4.6.5", "4.6.6", PR_VERSION
+ "4.6.4", "4.6.5", "4.6.6", "4.6.7", PR_VERSION
};
/*