summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Engert <kaie@kuix.de>2017-07-27 14:38:46 +0200
committerKai Engert <kaie@kuix.de>2017-07-27 14:38:46 +0200
commit293692ca9b112435cc0dd2fa5711927ca6029278 (patch)
tree207a22238be338088047dd41dd8e588640fe8686
parentae86a6efacdb06c1ef125121aab3d14509b5c1ca (diff)
downloadnspr-hg-293692ca9b112435cc0dd2fa5711927ca6029278.tar.gz
set version numbers to 4.17 beta
-rwxr-xr-xconfigure2
-rw-r--r--configure.in2
-rw-r--r--pr/include/prinit.h6
-rw-r--r--pr/tests/vercheck.c7
4 files changed, 9 insertions, 8 deletions
diff --git a/configure b/configure
index b8ad2b4e..deccb5f9 100755
--- a/configure
+++ b/configure
@@ -2488,7 +2488,7 @@ test -n "$target_alias" &&
program_prefix=${target_alias}-
MOD_MAJOR_VERSION=4
-MOD_MINOR_VERSION=16
+MOD_MINOR_VERSION=17
MOD_PATCH_VERSION=0
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
diff --git a/configure.in b/configure.in
index 22b4e722..1b9604d3 100644
--- a/configure.in
+++ b/configure.in
@@ -15,7 +15,7 @@ dnl ========================================================
dnl = Defaults
dnl ========================================================
MOD_MAJOR_VERSION=4
-MOD_MINOR_VERSION=16
+MOD_MINOR_VERSION=17
MOD_PATCH_VERSION=0
NSPR_MODNAME=nspr20
_HAVE_PTHREADS=
diff --git a/pr/include/prinit.h b/pr/include/prinit.h
index fd935ec3..3a90e8e1 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.16"
+#define PR_VERSION "4.17 Beta"
#define PR_VMAJOR 4
-#define PR_VMINOR 16
+#define PR_VMINOR 17
#define PR_VPATCH 0
-#define PR_BETA PR_FALSE
+#define PR_BETA PR_TRUE
/*
** PRVersionCheck
diff --git a/pr/tests/vercheck.c b/pr/tests/vercheck.c
index 6170125d..2014f797 100644
--- a/pr/tests/vercheck.c
+++ b/pr/tests/vercheck.c
@@ -39,7 +39,8 @@ 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", "4.11", "4.12", "4.13", "4.14", "4.15"
+ "4.10.10", "4.11", "4.12", "4.13", "4.14", "4.15",
+ "4.16"
PR_VERSION
};
@@ -55,8 +56,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.16.1",
- "4.17", "4.17.1",
+ "4.17.1",
+ "4.18", "4.18.1",
"10.0", "11.1", "12.14.20"
};