Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Bug 1562330 - Upgrade Firefox 70 to use NSPR 4.22.
Browse files Browse the repository at this point in the history
UPGRADE_NSPR_RELEASE

Differential Revision: https://phabricator.services.mozilla.com/D42512
  • Loading branch information
kaie committed Aug 19, 2019
1 parent 8ad860a commit e495fb1
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
5 changes: 5 additions & 0 deletions nsprpub/.arcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"phabricator.uri" : "https://phabricator.services.mozilla.com/",
"repository.callsign": "NSPR",
"history.immutable": false
}
2 changes: 1 addition & 1 deletion nsprpub/TAG-INFO
Original file line number Diff line number Diff line change
@@ -1 +1 @@
NSPR_4_22_BETA1
NSPR_4_22_RTM
1 change: 1 addition & 0 deletions nsprpub/config/prdepend.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
*/

#error "Do not include this header file."

7 changes: 5 additions & 2 deletions nsprpub/config/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions nsprpub/pr/include/prinit.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e495fb1

Please sign in to comment.