- update to version 4.10.4

* bmo#767759: Add support for new x32 abi
  * bmo#844784: Thread data race in PR_EnterMonitor
  * bmo#939786: data race nsprpub/pr/src/pthreads/ptthread.c:137 _pt_root
  * bmo#958796: Users of _beginthreadex that set a custom stack size
                may not be getting the behavior they want
  * bmo#963033: AArch64 support update for NSPR
  * bmo#969061:	Incorrect end-of-list test when iterating over a
                PRCList in prcountr.c and prtrace.c
  * bmo#971152: IPv6 detection on linux depends on availability of
                /proc/net/if_inet6
  config.guess and config.sub are updated by the ppc64le patch
  (renamed ppc64le-support.patch to nspr-ppc64le.patch)

OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/mozilla-nspr?expand=0&rev=65
This commit is contained in:
Wolfgang Rosenauer 2014-03-10 10:45:07 +00:00 committed by Git OBS Bridge
parent ecae7986e1
commit d24096be95
5 changed files with 23 additions and 38 deletions

View File

@ -1,13 +1,29 @@
-------------------------------------------------------------------
Mon Mar 10 10:38:17 UTC 2014 - wr@rosenauer.org
- update to version 4.10.4
* bmo#767759: Add support for new x32 abi
* bmo#844784: Thread data race in PR_EnterMonitor
* bmo#939786: data race nsprpub/pr/src/pthreads/ptthread.c:137 _pt_root
* bmo#958796: Users of _beginthreadex that set a custom stack size
may not be getting the behavior they want
* bmo#963033: AArch64 support update for NSPR
* bmo#969061: Incorrect end-of-list test when iterating over a
PRCList in prcountr.c and prtrace.c
* bmo#971152: IPv6 detection on linux depends on availability of
/proc/net/if_inet6
-------------------------------------------------------------------
Mon Mar 3 14:00:18 CET 2014 - ro@suse.de
- drop patch config-guess-sub-update.diff
config.guess and config.sub are updated by the ppc64le patch
config.guess and config.sub are updated by the ppc64le patch
-------------------------------------------------------------------
Fri Feb 28 13:02:40 UTC 2014 - pcerny@suse.com
- update of the PowerPC 64 LE support patch
(renamed ppc64le-support.patch to nspr-ppc64le.patch)
-------------------------------------------------------------------
Thu Feb 6 06:16:02 UTC 2014 - wr@rosenauer.org

View File

@ -18,7 +18,7 @@
Name: mozilla-nspr
Version: 4.10.3
Version: 4.10.4
Release: 0
Summary: Netscape Portable Runtime
License: MPL-2.0
@ -31,7 +31,8 @@ BuildRequires: pkg-config
Obsoletes: mozilla-nspr-64bit
%endif
#
Source: ftp://ftp.mozilla.org/pub/nspr/releases/v%{version}/src/nspr-%{version}.tar.gz
#Source: ftp://ftp.mozilla.org/pub/nspr/releases/v%{version}/src/nspr-%{version}.tar.gz
Source: nspr-%{version}.tar.gz
Source1: baselibs.conf
Patch1: nspr-ppc64le.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f25779b1a665dab0090b9c977dc6c29a63320f442956ed78629b66b405cb01e5
size 1104478

3
nspr-4.10.4.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4e772d0256398963f224593c31bdf3c93c56a2a2b0b2873c5eab4ddb39d1f8f6
size 1224999

View File

@ -1,32 +0,0 @@
Index: nspr-4.10.2/pr/include/md/_linux.cfg
===================================================================
--- nspr-4.10.2.orig/pr/include/md/_linux.cfg
+++ nspr-4.10.2/pr/include/md/_linux.cfg
@@ -29,8 +29,13 @@
#ifdef __powerpc64__
+#ifdef __LITTLE_ENDIAN__
+#define IS_LITTLE_ENDIAN 1
+#undef IS_BIG_ENDIAN
+#else
#undef IS_LITTLE_ENDIAN
#define IS_BIG_ENDIAN 1
+#endif
#define IS_64
#define PR_BYTES_PER_BYTE 1
@@ -75,8 +80,13 @@
#elif defined(__powerpc__)
+#ifdef __LITTLE_ENDIAN__
+#define IS_LITTLE_ENDIAN 1
+#undef IS_BIG_ENDIAN
+#else
#undef IS_LITTLE_ENDIAN
#define IS_BIG_ENDIAN 1
+#endif
#define PR_BYTES_PER_BYTE 1
#define PR_BYTES_PER_SHORT 2