Accepting request 225421 from mozilla:Factory

OBS-URL: https://build.opensuse.org/request/show/225421
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mozilla-nspr?expand=0&rev=49
This commit is contained in:
Stephan Kulow 2014-03-17 08:12:46 +00:00 committed by Git OBS Bridge
commit 97633e8632
6 changed files with 1177 additions and 309 deletions

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
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
-------------------------------------------------------------------
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,10 +31,10 @@ 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
Patch0: config-guess-sub-update.diff
Patch1: ppc64le-support.patch
Patch1: nspr-ppc64le.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@ -64,7 +64,6 @@ memory management (malloc and free), and shared library linking.
%prep
%setup -n nspr-%{version} -q
pushd nspr
%patch0 -p0
%patch1 -p1
popd

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

File diff suppressed because it is too large Load Diff

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