From: Mike Hommey Date: Sun, 2 Nov 2008 16:56:24 +0000 (+0100) Subject: Disable optimization on alpha for the url-classifier component X-Git-Tag: archive/raspbian/1%68.6.0-1_deb10u1+rpi1^2~35 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f529d67ad75e2d80dca2d920c11b0c21c600bd80;p=thunderbird.git Disable optimization on alpha for the url-classifier component The use of this component leads to crashes when built with optimizations. Gbp-Pq: Topic porting Gbp-Pq: Name Disable-optimization-on-alpha-for-the-url-classifier.patch --- diff --git a/browser/components/build/Makefile.in b/browser/components/build/Makefile.in index 2387227ab4..d5ca1ba513 100644 --- a/browser/components/build/Makefile.in +++ b/browser/components/build/Makefile.in @@ -6,3 +6,7 @@ include $(topsrcdir)/config/rules.mk # Ensure that we don't embed a manifest referencing the CRT. EMBED_MANIFEST_AT = + +ifeq ($(OS_TEST),alpha) +MOZ_OPTIMIZE_FLAGS := -O0 +endif