forked from pool/MozillaFirefox
bf5fb37f98
* rebased patches * requires NSS 3.15.2 or above * MFSA 2013-93/CVE-2013-5590/CVE-2013-5591/CVE-2013-5592 Miscellaneous memory safety hazards * MFSA 2013-94/CVE-2013-5593 (bmo#868327) Spoofing addressbar through SELECT element * MFSA 2013-95/CVE-2013-5604 (bmo#914017) Access violation with XSLT and uninitialized data * MFSA 2013-96/CVE-2013-5595 (bmo#916580) Improperly initialized memory and overflows in some JavaScript functions * MFSA 2013-97/CVE-2013-5596 (bmo#910881) Writing to cycle collected object during image decoding * MFSA 2013-98/CVE-2013-5597 (bmo#918864) Use-after-free when updating offline cache * MFSA 2013-99/CVE-2013-5598 (bmo#920515) Security bypass of PDF.js checks using iframes * MFSA 2013-100/CVE-2013-5599/CVE-2013-5600/CVE-2013-5601 (bmo#915210, bmo#915576, bmo#916685) Miscellaneous use-after-free issues found through ASAN fuzzing * MFSA 2013-101/CVE-2013-5602 (bmo#897678) Memory corruption in workers * MFSA 2013-102/CVE-2013-5603 (bmo#916404) Use-after-free in HTML document templates OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=356
28 lines
815 B
Diff
28 lines
815 B
Diff
# HG changeset patch
|
|
# User Adrian Schröter <adrian@suse.de>
|
|
# Parent b945e0c3b145b6b2245f42bab52f911c2d1f6759
|
|
disable ESDP support (no BNC or BMO reference yet :-()
|
|
|
|
diff --git a/mozglue/build/arm.h b/mozglue/build/arm.h
|
|
--- a/mozglue/build/arm.h
|
|
+++ b/mozglue/build/arm.h
|
|
@@ -116,17 +116,17 @@ namespace mozilla {
|
|
extern bool MFBT_DATA neon_enabled;
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
#if defined(MOZILLA_PRESUME_EDSP)
|
|
# define MOZILLA_MAY_SUPPORT_EDSP 1
|
|
inline bool supports_edsp() { return true; }
|
|
-#elif defined(MOZILLA_MAY_SUPPORT_EDSP) \
|
|
+#elif 0 \
|
|
&& defined(MOZILLA_ARM_HAVE_CPUID_DETECTION)
|
|
inline bool supports_edsp() { return arm_private::edsp_enabled; }
|
|
#else
|
|
inline bool supports_edsp() { return false; }
|
|
#endif
|
|
|
|
#if defined(MOZILLA_PRESUME_ARMV6)
|
|
# define MOZILLA_MAY_SUPPORT_ARMV6 1
|