Accepting request 156924 from mozilla:Factory
OBS-URL: https://build.opensuse.org/request/show/156924 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mozilla-nspr?expand=0&rev=41
This commit is contained in:
94
aarch64-support.patch
Normal file
94
aarch64-support.patch
Normal file
@@ -0,0 +1,94 @@
|
||||
--- a/pr/include/md/_linux.cfg
|
||||
+++ b/pr/include/md/_linux.cfg
|
||||
@@ -861,6 +861,59 @@
|
||||
#define PR_BYTES_PER_WORD_LOG2 2
|
||||
#define PR_BYTES_PER_DWORD_LOG2 3
|
||||
|
||||
+#elif defined(__aarch64__)
|
||||
+
|
||||
+#ifdef __AARCH64EB__
|
||||
+#undef IS_LITTLE_ENDIAN
|
||||
+#define IS_BIG_ENDIAN 1
|
||||
+#elif defined(__AARCH64EL__)
|
||||
+#define IS_LITTLE_ENDIAN 1
|
||||
+#undef IS_BIG_ENDIAN
|
||||
+#else
|
||||
+#error "Unknown Aarch64 endianness."
|
||||
+#endif
|
||||
+#define IS_64
|
||||
+
|
||||
+#define PR_BYTES_PER_BYTE 1
|
||||
+#define PR_BYTES_PER_SHORT 2
|
||||
+#define PR_BYTES_PER_INT 4
|
||||
+#define PR_BYTES_PER_INT64 8
|
||||
+#define PR_BYTES_PER_LONG 8
|
||||
+#define PR_BYTES_PER_FLOAT 4
|
||||
+#define PR_BYTES_PER_DOUBLE 8
|
||||
+#define PR_BYTES_PER_WORD 8
|
||||
+#define PR_BYTES_PER_DWORD 8
|
||||
+
|
||||
+#define PR_BITS_PER_BYTE 8
|
||||
+#define PR_BITS_PER_SHORT 16
|
||||
+#define PR_BITS_PER_INT 32
|
||||
+#define PR_BITS_PER_INT64 64
|
||||
+#define PR_BITS_PER_LONG 64
|
||||
+#define PR_BITS_PER_FLOAT 32
|
||||
+#define PR_BITS_PER_DOUBLE 64
|
||||
+#define PR_BITS_PER_WORD 64
|
||||
+
|
||||
+#define PR_BITS_PER_BYTE_LOG2 3
|
||||
+#define PR_BITS_PER_SHORT_LOG2 4
|
||||
+#define PR_BITS_PER_INT_LOG2 5
|
||||
+#define PR_BITS_PER_INT64_LOG2 6
|
||||
+#define PR_BITS_PER_LONG_LOG2 6
|
||||
+#define PR_BITS_PER_FLOAT_LOG2 5
|
||||
+#define PR_BITS_PER_DOUBLE_LOG2 6
|
||||
+#define PR_BITS_PER_WORD_LOG2 6
|
||||
+
|
||||
+#define PR_ALIGN_OF_SHORT 2
|
||||
+#define PR_ALIGN_OF_INT 4
|
||||
+#define PR_ALIGN_OF_LONG 8
|
||||
+#define PR_ALIGN_OF_INT64 8
|
||||
+#define PR_ALIGN_OF_FLOAT 4
|
||||
+#define PR_ALIGN_OF_DOUBLE 8
|
||||
+#define PR_ALIGN_OF_POINTER 8
|
||||
+#define PR_ALIGN_OF_WORD 8
|
||||
+
|
||||
+#define PR_BYTES_PER_WORD_LOG2 3
|
||||
+#define PR_BYTES_PER_DWORD_LOG2 3
|
||||
+
|
||||
#else
|
||||
|
||||
#error "Unknown CPU architecture"
|
||||
--- a/pr/include/md/_linux.h
|
||||
+++ b/pr/include/md/_linux.h
|
||||
@@ -53,6 +53,8 @@
|
||||
#define _PR_SI_ARCHITECTURE "avr32"
|
||||
#elif defined(__m32r__)
|
||||
#define _PR_SI_ARCHITECTURE "m32r"
|
||||
+#elif defined(__aarch64__)
|
||||
+#define _PR_SI_ARCHITECTURE "aarch64"
|
||||
#else
|
||||
#error "Unknown CPU architecture"
|
||||
#endif
|
||||
@@ -186,7 +188,7 @@
|
||||
})
|
||||
#endif
|
||||
|
||||
-#if defined(__arm__)
|
||||
+#if defined(__arm__) || defined(__aarch64__)
|
||||
#if defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4)
|
||||
/* Use GCC built-in functions */
|
||||
#define _PR_HAVE_ATOMIC_OPS
|
||||
@@ -242,6 +244,10 @@
|
||||
#endif
|
||||
#endif /* __arm__ */
|
||||
|
||||
+#if defined(__aarch64__)
|
||||
+#define _MD_MINIMUM_STACK_SIZE 0x20000
|
||||
+#endif
|
||||
+
|
||||
#define USE_SETJMP
|
||||
#if (defined(__GLIBC__) && __GLIBC__ >= 2) || defined(ANDROID)
|
||||
#define _PR_POLL_AVAILABLE
|
||||
|
1615
config-guess-sub-update.diff
Normal file
1615
config-guess-sub-update.diff
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 22:56:59 UTC 2013 - wr@rosenauer.org
|
||||
|
||||
- update to version 4.9.5
|
||||
* bmo#634793: define NSPR's exact-width integer types PRInt{N} and
|
||||
PRUint{N} types to match the <stdint.h> exact-width integer types
|
||||
int{N}_t and uint{N}_t.
|
||||
* bmo#782815: passing 'int *' to parameter of type 'unsigned int *'
|
||||
in setsockopt().
|
||||
* bmo#822932: Port bmo#802527 (NDK r8b support for x86) to NSPR.
|
||||
* bmo#824742: NSPR shouldn't require librt on Android.
|
||||
* bmo#831793: data race on lib->refCount in PR_UnloadLibrary.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 28 21:26:07 UTC 2013 - dmueller@suse.com
|
||||
|
||||
- Add config-guess-sub-update.diff:
|
||||
* update config.guess/sub for aarch64 support
|
||||
- Add aarch64-support.patch:
|
||||
* add support for aarch64
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 30 12:51:46 UTC 2012 - wr@rosenauer.org
|
||||
|
||||
|
@@ -1,8 +1,8 @@
|
||||
#
|
||||
# spec file for package mozilla-nspr
|
||||
#
|
||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# 2006-2012 Wolfgang Rosenauer
|
||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# 2006-2013 Wolfgang Rosenauer
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
Name: mozilla-nspr
|
||||
Version: 4.9.4
|
||||
Version: 4.9.5
|
||||
Release: 0
|
||||
Summary: Netscape Portable Runtime
|
||||
License: MPL-2.0
|
||||
@@ -33,6 +33,8 @@ Obsoletes: mozilla-nspr-64bit
|
||||
#
|
||||
Source: ftp://ftp.mozilla.org/pub/nspr/releases/v%{version}/src/nspr-%{version}.tar.bz2
|
||||
Source1: baselibs.conf
|
||||
Patch0: config-guess-sub-update.diff
|
||||
Patch1: aarch64-support.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
@@ -61,6 +63,10 @@ memory management (malloc and free), and shared library linking.
|
||||
|
||||
%prep
|
||||
%setup -n nspr-%{version} -q
|
||||
%patch0
|
||||
cd mozilla/nsprpub
|
||||
%patch1 -p1
|
||||
cd -
|
||||
cd mozilla
|
||||
|
||||
%build
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cf39503d1c364dea8d4289523e58d0c0811ce375c1b997c4b08f502daec1301f
|
||||
size 887393
|
3
nspr-4.9.5.tar.bz2
Normal file
3
nspr-4.9.5.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2c6bd116bbae656eb1439126d2fab87257bf477e54a099842218944993bd33b6
|
||||
size 886651
|
Reference in New Issue
Block a user