diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:45:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:45:40 +0000 |
commit | b9a2bf7b2ccc8190d38e44db120a92ca46c9fd1e (patch) | |
tree | 3cbe7aab712cf5a385e4aa0446b3766b7a17617f /debian/patches/porting | |
parent | Adding upstream version 1:115.7.0. (diff) | |
download | thunderbird-b9a2bf7b2ccc8190d38e44db120a92ca46c9fd1e.tar.xz thunderbird-b9a2bf7b2ccc8190d38e44db120a92ca46c9fd1e.zip |
Adding debian version 1:115.7.0-1.debian/1%115.7.0-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/porting')
-rw-r--r-- | debian/patches/porting/Disable-optimization-on-alpha-for-the-url-classifier.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/patches/porting/Disable-optimization-on-alpha-for-the-url-classifier.patch b/debian/patches/porting/Disable-optimization-on-alpha-for-the-url-classifier.patch new file mode 100644 index 0000000000..3cf2b0062f --- /dev/null +++ b/debian/patches/porting/Disable-optimization-on-alpha-for-the-url-classifier.patch @@ -0,0 +1,21 @@ +From: Mike Hommey <glandium@debian.org> +Date: Sun, 2 Nov 2008 17:56:24 +0100 +Subject: Disable optimization on alpha for the url-classifier component + +The use of this component leads to crashes when built with optimizations. +--- + comm/suite/components/build/Makefile.in | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/comm/suite/components/build/Makefile.in b/comm/suite/components/build/Makefile.in +index 2387227..d5ca1ba 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 |