summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Engert <kaie@kuix.de>2015-10-19 21:55:25 +0200
committerKai Engert <kaie@kuix.de>2015-10-19 21:55:25 +0200
commitf2847a1cc94fef6455ef946fd3e56a50db4738a8 (patch)
tree473c8db6eccfc1cdef96506edfb256166277f6b8
parent9ada6dcfb60b95f31f4cc831b9c3276c511d8a3e (diff)
downloadnspr-hg-f2847a1cc94fef6455ef946fd3e56a50db4738a8.tar.gz
Set version numbers to 4.11 Beta
-rwxr-xr-xconfigure4
-rw-r--r--configure.in4
-rw-r--r--pr/include/prinit.h8
-rw-r--r--pr/tests/vercheck.c8
4 files changed, 12 insertions, 12 deletions
diff --git a/configure b/configure
index 09c56bfe..1ea42308 100755
--- a/configure
+++ b/configure
@@ -2488,8 +2488,8 @@ test -n "$target_alias" &&
program_prefix=${target_alias}-
MOD_MAJOR_VERSION=4
-MOD_MINOR_VERSION=10
-MOD_PATCH_VERSION=10
+MOD_MINOR_VERSION=11
+MOD_PATCH_VERSION=0
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
USE_PTHREADS=
diff --git a/configure.in b/configure.in
index 836a9144..aff14c2f 100644
--- a/configure.in
+++ b/configure.in
@@ -15,8 +15,8 @@ dnl ========================================================
dnl = Defaults
dnl ========================================================
MOD_MAJOR_VERSION=4
-MOD_MINOR_VERSION=10
-MOD_PATCH_VERSION=10
+MOD_MINOR_VERSION=11
+MOD_PATCH_VERSION=0
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
USE_PTHREADS=
diff --git a/pr/include/prinit.h b/pr/include/prinit.h
index 4d537b66..eb4241ca 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.10.10"
+#define PR_VERSION "4.11 Beta"
#define PR_VMAJOR 4
-#define PR_VMINOR 10
-#define PR_VPATCH 10
-#define PR_BETA PR_FALSE
+#define PR_VMINOR 11
+#define PR_VPATCH 0
+#define PR_BETA PR_TRUE
/*
** PRVersionCheck
diff --git a/pr/tests/vercheck.c b/pr/tests/vercheck.c
index 5cb2c465..2b4e6fba 100644
--- a/pr/tests/vercheck.c
+++ b/pr/tests/vercheck.c
@@ -22,8 +22,7 @@
/*
* This release (4.10.10) 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.x, 4.10, 4.10.1, 4.10.2, 4.10.3, 4.10.4,
- * 4.10.5, 4.10.6, 4.10.7, 4.10.8, 4.10.9 releases.
+ * 4.8.x, 4.9.x, and 4.10.x releases.
* It, of course, is compatible with itself.
*/
static char *compatible_version[] = {
@@ -40,6 +39,7 @@ static char *compatible_version[] = {
"4.9.6",
"4.10", "4.10.1", "4.10.2", "4.10.3", "4.10.4",
"4.10.5", "4.10.6", "4.10.7", "4.10.8", "4.10.9",
+ "4.10.10",
PR_VERSION
};
@@ -55,8 +55,8 @@ 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.10.11",
- "4.11", "4.11.1",
+ "4.11.1",
+ "4.12", "4.12.1",
"10.0", "11.1", "12.14.20"
};