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%102.13.0-1_deb10u1+rpi1^2^2^2~23 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6cc6dd25935de025a9083f97233f2ba24f5c6d89;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