forked from pool/MozillaFirefox
Accepting request 590743 from home:cgrobertson:branches:mozilla:Factory
- Added patches: * mozilla-i586-DecoderDoctorLogger.patch - bmo#1447070 fixes non-unified build error * mozilla-i586-domPrefs.patch - DOMPrefs.h fixes 32bit build error OBS-URL: https://build.opensuse.org/request/show/590743 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=641
This commit is contained in:
parent
032c70a665
commit
59451a5643
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 21 17:14:24 UTC 2018 - cgrobertson@suse.com
|
||||||
|
|
||||||
|
- Added patches:
|
||||||
|
* mozilla-i586-DecoderDoctorLogger.patch - bmo#1447070
|
||||||
|
fixes non-unified build error
|
||||||
|
* mozilla-i586-domPrefs.patch - DOMPrefs.h
|
||||||
|
fixes 32bit build error
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 16 06:40:11 UTC 2018 - wr@rosenauer.org
|
Fri Mar 16 06:40:11 UTC 2018 - wr@rosenauer.org
|
||||||
|
|
||||||
|
@ -152,6 +152,8 @@ Patch7: mozilla-aarch64-startup-crash.patch
|
|||||||
Patch8: mozilla-bmo256180.patch
|
Patch8: mozilla-bmo256180.patch
|
||||||
Patch9: mozilla-bmo1005535.patch
|
Patch9: mozilla-bmo1005535.patch
|
||||||
Patch10: mozilla-bmo1446062.patch
|
Patch10: mozilla-bmo1446062.patch
|
||||||
|
Patch11: mozilla-i586-DecoderDoctorLogger.patch
|
||||||
|
Patch12: mozilla-i586-domPrefs.patch
|
||||||
# Firefox/browser
|
# Firefox/browser
|
||||||
Patch101: firefox-kde.patch
|
Patch101: firefox-kde.patch
|
||||||
Patch102: firefox-branded-icons.patch
|
Patch102: firefox-branded-icons.patch
|
||||||
@ -264,6 +266,10 @@ cd $RPM_BUILD_DIR/mozilla
|
|||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
%patch10 -p1
|
%patch10 -p1
|
||||||
|
%ifarch %ix86
|
||||||
|
%patch11 -p1
|
||||||
|
%patch12 -p1
|
||||||
|
%endif
|
||||||
# Firefox
|
# Firefox
|
||||||
%patch101 -p1
|
%patch101 -p1
|
||||||
%patch102 -p1
|
%patch102 -p1
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# HG changeset patch
|
# HG changeset patch
|
||||||
# Parent 376f185a0a757fe128be665adbb705f4a56461bc
|
# Parent 376f185a0a757fe128be665adbb705f4a56461bc
|
||||||
# User Steve Singer <steve@ssinger.info>
|
# User Steve Singer <steve@ssinger.info>
|
||||||
# Parent 23e95bbe4d5553a2ba9dda2a4a96a2029253597c
|
# Parent 371f01835b6fe4cb6b7095a6c29f7bb54f6d6257
|
||||||
Bug 1005535 - Get skia GPU building on big endian.
|
Bug 1005535 - Get skia GPU building on big endian.
|
||||||
|
|
||||||
diff --git a/gfx/skia/skia/include/core/SkColorPriv.h b/gfx/skia/skia/include/core/SkColorPriv.h
|
diff --git a/gfx/skia/skia/include/core/SkColorPriv.h b/gfx/skia/skia/include/core/SkColorPriv.h
|
||||||
|
26
mozilla-i586-DecoderDoctorLogger.patch
Normal file
26
mozilla-i586-DecoderDoctorLogger.patch
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# Parent f3fe334a20e8a63266eb06c5d298ad793cefc015
|
||||||
|
Mozilla Bug#1447070 - DecoderDoctorLogger.h must be included in MediaKeySession.h
|
||||||
|
to fix non-unified build error for i586 target.
|
||||||
|
|
||||||
|
diff --git a/dom/media/eme/MediaKeySession.h b/dom/media/eme/MediaKeySession.h
|
||||||
|
--- a/dom/media/eme/MediaKeySession.h
|
||||||
|
+++ b/dom/media/eme/MediaKeySession.h
|
||||||
|
@@ -2,16 +2,17 @@
|
||||||
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||||
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
#ifndef mozilla_dom_MediaKeySession_h
|
||||||
|
#define mozilla_dom_MediaKeySession_h
|
||||||
|
|
||||||
|
+#include "DecoderDoctorLogger.h"
|
||||||
|
#include "mozilla/Attributes.h"
|
||||||
|
#include "mozilla/ErrorResult.h"
|
||||||
|
#include "nsCycleCollectionParticipant.h"
|
||||||
|
#include "mozilla/DOMEventTargetHelper.h"
|
||||||
|
#include "nsCOMPtr.h"
|
||||||
|
#include "mozilla/dom/TypedArray.h"
|
||||||
|
#include "mozilla/Mutex.h"
|
||||||
|
#include "mozilla/dom/Date.h"
|
27
mozilla-i586-domPrefs.patch
Normal file
27
mozilla-i586-domPrefs.patch
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User Andrea Marchesini <amarchesini@mozilla.com>
|
||||||
|
# Parent bb4eb640e7303ea68be982d824aa100caacce240
|
||||||
|
Mozilla Bug#1447409 - DOMPrefs.h must be included in WorkerScope, r=qdot
|
||||||
|
To fix 32bit build error for i586 target.
|
||||||
|
|
||||||
|
diff --git a/dom/workers/WorkerScope.h b/dom/workers/WorkerScope.h
|
||||||
|
--- a/dom/workers/WorkerScope.h
|
||||||
|
+++ b/dom/workers/WorkerScope.h
|
||||||
|
@@ -4,16 +4,17 @@
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
#ifndef mozilla_dom_workerscope_h__
|
||||||
|
#define mozilla_dom_workerscope_h__
|
||||||
|
|
||||||
|
#include "Workers.h"
|
||||||
|
#include "mozilla/DOMEventTargetHelper.h"
|
||||||
|
+#include "mozilla/dom/DOMPrefs.h"
|
||||||
|
#include "mozilla/dom/Headers.h"
|
||||||
|
#include "mozilla/dom/RequestBinding.h"
|
||||||
|
#include "nsWeakReference.h"
|
||||||
|
#include "mozilla/dom/ImageBitmapSource.h"
|
||||||
|
|
||||||
|
namespace mozilla {
|
||||||
|
namespace dom {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user