Files
sablink-distro/net-libs/xulrunner/files/xulrunner-1.9.2-arm-fixes.patch
T

36 lines
587 B
Diff

Fix arm OS detection
https://bugs.gentoo.org/327783
https://bugzilla.mozilla.org/show_bug.cgi?id=577319
---
--- configure.in
+++ configure.in
@@ -1424,9 +1424,11 @@
CPU_ARCH="$OS_TEST"
;;
-arm)
+arm*)
if test "$OS_TARGET" = "WINCE"; then
CPU_ARCH="$OS_TEST"
+ else
+ CPU_ARCH="arm"
fi
;;
esac
--- js/src/configure.in
+++ js/src/configure.in
@@ -1162,9 +1162,11 @@
CPU_ARCH="$OS_TEST"
;;
-arm)
+arm*)
if test "$OS_TARGET" = "WINCE"; then
CPU_ARCH="$OS_TEST"
+ else
+ CPU_ARCH="arm"
fi
;;
esac