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