617089342c
- see http://www.mozilla.org/en-US/firefox/15.0/releasenotes/ - add -Os hack to fix a relocation error when linking on ppc (as was done in tb since 10..) - garbage collect nsSound.cpp, the original one uses libcanberra properly and thus sndio. - remove patch from #750620, merged upstream (mfbt/double-conversion) - remove patches from #747257, merged upstream (gstreamer fix) - remove patches from #691898, merged upstream (yarr jit ppc)
15 lines
479 B
Plaintext
15 lines
479 B
Plaintext
$OpenBSD: patch-parser_html_Makefile_in,v 1.10 2012/09/01 13:56:45 landry Exp $
|
|
|
|
gcc runs out of memory with optimization.
|
|
|
|
--- parser/html/Makefile.in.orig Wed Aug 15 07:48:14 2012
|
|
+++ parser/html/Makefile.in Sun Aug 19 13:50:38 2012
|
|
@@ -96,4 +96,7 @@ INCLUDES += \
|
|
-I$(srcdir)/../../content/base/src \
|
|
$(NULL)
|
|
|
|
+nsHtml5NamedCharacters.o: CXXFLAGS := $(filter-out -O%,$(CXXFLAGS))
|
|
+nsHtml5ElementName.o: CXXFLAGS := $(CXXFLAGS) -O1
|
|
+
|
|
#DEFINES += -DENABLE_VOID_MENUITEM
|