Set NSPR version to 4.7 (Beta).

This commit is contained in:
wtchang%redhat.com 2005-09-14 23:39:56 +00:00
Родитель 3e09ea2c65
Коммит 968371dbbd
3 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -64,10 +64,10 @@
# #
# ------------------------------------------------------------------ # ------------------------------------------------------------------
FROMTOP=/share/builds/components/nspr20/v4.6.1 FROMTOP=/share/builds/components/nspr20/v4.7
TOTOP=./v4.6.1 TOTOP=./v4.7
NSPRDIR=nspr-4.6.1 NSPRDIR=nspr-4.7
SOURCETAG=NSPR_4_6_1_RTM SOURCETAG=NSPR_4_7_RTM
# #
# enumerate Unix object directories on /s/b/c # enumerate Unix object directories on /s/b/c

Просмотреть файл

@ -63,10 +63,10 @@ PR_BEGIN_EXTERN_C
** The format of the version string is ** The format of the version string is
** "<major version>.<minor version>[.<patch level>] [<Beta>]" ** "<major version>.<minor version>[.<patch level>] [<Beta>]"
*/ */
#define PR_VERSION "4.6.1 Beta" #define PR_VERSION "4.7 Beta"
#define PR_VMAJOR 4 #define PR_VMAJOR 4
#define PR_VMINOR 6 #define PR_VMINOR 7
#define PR_VPATCH 1 #define PR_VPATCH 0
#define PR_BETA PR_TRUE #define PR_BETA PR_TRUE
/* /*

Просмотреть файл

@ -52,14 +52,14 @@
#include <stdlib.h> #include <stdlib.h>
/* /*
* This release (4.6.1) is backward compatible with the * This release (4.7) is backward compatible with the
* 4.0.x, 4.1.x, 4.2.x, 4.3.x, 4.4.x, 4.5.x, and 4.6 releases. * 4.0.x, 4.1.x, 4.2.x, 4.3.x, 4.4.x, 4.5.x, and 4.6.x releases.
* It, of course, is compatible with itself. * It, of course, is compatible with itself.
*/ */
static char *compatible_version[] = { static char *compatible_version[] = {
"4.0", "4.0.1", "4.1", "4.1.1", "4.1.2", "4.1.3", "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.2", "4.2.1", "4.2.2", "4.3", "4.4", "4.4.1",
"4.5", "4.5.1", "4.6", PR_VERSION "4.5", "4.5.1", "4.6", "4.6.1", PR_VERSION
}; };
/* /*
@ -74,8 +74,8 @@ static char *incompatible_version[] = {
"3.0", "3.0.1", "3.0", "3.0.1",
"3.1", "3.1.1", "3.1.2", "3.1.3", "3.1", "3.1.1", "3.1.2", "3.1.3",
"3.5", "3.5.1", "3.5", "3.5.1",
"4.6.3", "4.7.3",
"4.7", "4.7.1", "4.8", "4.8.1",
"10.0", "11.1", "12.14.20" "10.0", "11.1", "12.14.20"
}; };