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%91.10.0-1_deb10u1+rpi1^2^2~27 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=33bae454b5d20ad2aa46f0b2cbff7267b0f09eb0;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/comm/suite/components/build/Makefile.in b/comm/suite/components/build/Makefile.in index 2387227ab4..d5ca1ba513 100644 --- a/comm/suite/components/build/Makefile.in +++ b/comm/suite/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