mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
Bug 1562330 - Upgrade Firefox 70 to use NSPR 4.22.
UPGRADE_NSPR_RELEASE Differential Revision: https://phabricator.services.mozilla.com/D42512 --HG-- extra : moz-landing-system : lando
This commit is contained in:
parent
f1d77648cd
commit
89998cc266
5
nsprpub/.arcconfig
Normal file
5
nsprpub/.arcconfig
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"phabricator.uri" : "https://phabricator.services.mozilla.com/",
|
||||
"repository.callsign": "NSPR",
|
||||
"history.immutable": false
|
||||
}
|
@ -1 +1 @@
|
||||
NSPR_4_22_BETA1
|
||||
NSPR_4_22_RTM
|
||||
|
@ -10,3 +10,4 @@
|
||||
*/
|
||||
|
||||
#error "Do not include this header file."
|
||||
|
||||
|
@ -280,10 +280,13 @@ ifdef ENABLE_STRIP
|
||||
$(STRIP) $@
|
||||
endif
|
||||
|
||||
$(LIBRARY): $(OBJS)
|
||||
# Same as OBJS, but without any file that matches p*vrsion.o, since these
|
||||
# collide for static libraries, and are not useful for that case anyway.
|
||||
STATICLIB_OBJS = $(filter-out $(OBJDIR)/p%vrsion.$(OBJ_SUFFIX),$(OBJS))
|
||||
$(LIBRARY): $(STATICLIB_OBJS)
|
||||
@$(MAKE_OBJDIR)
|
||||
rm -f $@
|
||||
$(AR) $(AR_FLAGS) $(OBJS) $(AR_EXTRA_ARGS)
|
||||
$(AR) $(AR_FLAGS) $(STATICLIB_OBJS) $(AR_EXTRA_ARGS)
|
||||
$(RANLIB) $@
|
||||
|
||||
ifeq ($(OS_TARGET), OS2)
|
||||
|
@ -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.22 Beta"
|
||||
#define PR_VERSION "4.22"
|
||||
#define PR_VMAJOR 4
|
||||
#define PR_VMINOR 22
|
||||
#define PR_VPATCH 0
|
||||
#define PR_BETA PR_TRUE
|
||||
#define PR_BETA PR_FALSE
|
||||
|
||||
/*
|
||||
** PRVersionCheck
|
||||
|
Loading…
Reference in New Issue
Block a user