Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/4a93beb0393a8abddeb60...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/4a93beb0393a8abddeb606c...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/4a93beb0393a8abddeb606cbb...
The branch, master has been updated
via 4a93beb0393a8abddeb606cbb29a99bc1d73b67e (commit)
from 0bc32aa654271fd592d36fabf272e3fa0ca0a450 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=4a93beb0393a8abddeb...
commit 4a93beb0393a8abddeb606cbb29a99bc1d73b67e
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
revert f8f802cda5f54c0c2b1acd51efc08aa7d4afad1b
revert inhibit javascipt for native builds on architectures where it miscompiles
diff --git a/Makefile b/Makefile
index 2371755..dc1c21f 100644
--- a/Makefile
+++ b/Makefile
@@ -297,21 +297,10 @@ else
CC := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*gcc)
CXX := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*g++)
endif
+
else
# All native targets
- # The machine architecture
- # Possibles: i386 i686 x86_64 ia64 alpha amd64 arm
- # armeb armel hppa m32r m68k mips mipsel powerpc ppc64
- # s390 s390x sh3 sh3eb sh4 sh4eb sparc
- HOST_ARCH := $(shell uname -m)
-
- # disable duktape use on architectures where it miscompiles
- NO_DUKTAPE_ARCH := s390 s390x ppc64
- ifeq ($(filter-out $(NO_DUKTAPE_ARCH),$(HOST_ARCH)),)
- override NETSURF_USE_DUKTAPE := NO
- endif
-
# use native package config
PKG_CONFIG := pkg-config
-----------------------------------------------------------------------
Summary of changes:
Makefile | 13 +------------
1 file changed, 1 insertion(+), 12 deletions(-)
diff --git a/Makefile b/Makefile
index 2371755..dc1c21f 100644
--- a/Makefile
+++ b/Makefile
@@ -297,21 +297,10 @@ else
CC := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*gcc)
CXX := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*g++)
endif
+
else
# All native targets
- # The machine architecture
- # Possibles: i386 i686 x86_64 ia64 alpha amd64 arm
- # armeb armel hppa m32r m68k mips mipsel powerpc ppc64
- # s390 s390x sh3 sh3eb sh4 sh4eb sparc
- HOST_ARCH := $(shell uname -m)
-
- # disable duktape use on architectures where it miscompiles
- NO_DUKTAPE_ARCH := s390 s390x ppc64
- ifeq ($(filter-out $(NO_DUKTAPE_ARCH),$(HOST_ARCH)),)
- override NETSURF_USE_DUKTAPE := NO
- endif
-
# use native package config
PKG_CONFIG := pkg-config
--
NetSurf Browser