1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/www/seamonkey/files/patch-bug1125580
Jan Beich 5e03fc411f Add ARM build fixes for JavaScript engine
PR:		197058
Differential Revision:	https://reviews.freebsd.org/D1683
Submitted by:	sbruno (earlier version)
Approved by:	bapt (mentor)
2015-01-26 20:30:05 +00:00

14 lines
620 B
Plaintext

diff --git js/src/jit/arm/Architecture-arm.cpp js/src/jit/arm/Architecture-arm.cpp
index fe1373b..76641aa 100644
--- mozilla/js/src/jit/arm/Architecture-arm.cpp
+++ mozilla/js/src/jit/arm/Architecture-arm.cpp
@@ -16,7 +16,7 @@
#include "jit/arm/Assembler-arm.h"
#include "jit/RegisterSets.h"
-#if defined(ANDROID) || defined(JS_ARM_SIMULATOR)
+#if !defined(__linux__) || defined(ANDROID) || defined(JS_ARM_SIMULATOR)
// The Android NDK and B2G do not include the hwcap.h kernel header, and it is not
// defined when building the simulator, so inline the header defines we need.
# define HWCAP_VFP (1 << 6)