Source: icedove Version: 1:52.6.0-1 Severity: normal Tags: patch User: [email protected] Usertags: ia64
Hello! The attached patch should fix the build of Thunderbird on ia64. Please consider including it in the next upload. Thanks, Adrian -- .''`. John Paul Adrian Glaubitz : :' : Debian Developer - [email protected] `. `' Freie Universitaet Berlin - [email protected] `- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913
Description: Fix build on ia64 Author: John Paul Adrian Glaubitz <[email protected]> Last-Update: 2018-01-31 --- thunderbird-52.6.0.orig/mozilla/config/external/nspr/pr/moz.build +++ thunderbird-52.6.0/mozilla/config/external/nspr/pr/moz.build @@ -27,6 +27,8 @@ if CONFIG['OS_ARCH'] == 'Linux': elif CONFIG['CPU_ARCH'] == 'x86': DEFINES['i386'] = True SOURCES += ['/nsprpub/pr/src/md/unix/os_Linux_x86.s'] + elif CONFIG['CPU_ARCH'] == 'ia64': + SOURCES += ['/nsprpub/pr/src/md/unix/os_Linux_ia64.s'] elif CONFIG['CPU_ARCH'] == 'ppc': SOURCES += ['/nsprpub/pr/src/md/unix/os_Linux_ppc.s'] elif CONFIG['OS_TARGET'] in ('FreeBSD', 'OpenBSD', 'NetBSD'):

