e5024918a2
See https://www.mozilla.org/en-US/thunderbird/13.0/releasenotes/ for details - update enigmail to 1.4.2, lightning to 1.5b1 - adapt Makefile to cope with SEPARATE_BUILD - add a rpath hack in config/rules.mk, temporary workaround for #668869
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
$OpenBSD: patch-mozilla_js_src_Makefile_in,v 1.7 2012/06/11 15:33:26 landry Exp $
|
|
https://hg.mozilla.org/mozilla-central/rev/f5a3a7b9c6b0
|
|
--- mozilla/js/src/Makefile.in.orig Fri May 18 06:10:47 2012
|
|
+++ mozilla/js/src/Makefile.in Fri May 18 09:27:57 2012
|
|
@@ -337,20 +337,23 @@ CPPSRCS += checks.cc \
|
|
# END enclude sources for V8 dtoa
|
|
#############################################
|
|
|
|
-# For architectures without YARR JIT, PCRE is faster than the YARR
|
|
-# interpreter (bug 684559).
|
|
-
|
|
ifeq (,$(filter arm% sparc %86 x86_64 mips%,$(TARGET_CPU)))
|
|
|
|
-VPATH += $(srcdir)/yarr/pcre \
|
|
+VPATH += $(srcdir)/assembler \
|
|
+ $(srcdir)/assembler/wtf \
|
|
+ $(srcdir)/assembler/jit \
|
|
+ $(srcdir)/yarr \
|
|
$(NULL)
|
|
|
|
-CPPSRCS += \
|
|
- pcre_compile.cpp \
|
|
- pcre_exec.cpp \
|
|
- pcre_tables.cpp \
|
|
- pcre_xclass.cpp \
|
|
- pcre_ucp_searchfuncs.cpp \
|
|
+CPPSRCS += ExecutableAllocator.cpp \
|
|
+ ExecutableAllocatorPosix.cpp \
|
|
+ OSAllocatorOS2.cpp \
|
|
+ OSAllocatorPosix.cpp \
|
|
+ OSAllocatorWin.cpp \
|
|
+ PageBlock.cpp \
|
|
+ YarrInterpreter.cpp \
|
|
+ YarrPattern.cpp \
|
|
+ YarrSyntaxChecker.cpp \
|
|
$(NULL)
|
|
else
|
|
|