Package: mono Severity: normal Tags: patch Dear Maintainer,
Mono fails to build from source on ia64. At least on initial glance, this appears to be because it does not recognize libatomic-ops-dev on the platform. See attached patch. -- System Information: Debian Release: buster/sid Architecture: ia64 Kernel: Linux 3.14-0.bpo.2-mckinley (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: sysvinit (via /sbin/init)
--- configure.ac.orig 2017-12-06 15:41:00.654825611 -0500 +++ configure.ac 2017-12-06 15:41:17.758945149 -0500 @@ -3194,7 +3194,7 @@ dnl Use GCC atomic ops if they work on the target. if test x$GCC = "xyes"; then case $TARGET in - X86 | AMD64 | ARM | ARM64 | POWERPC | POWERPC64 | MIPS | S390X | SPARC | SPARC64) + X86 | AMD64 | ARM | ARM64 | POWERPC | POWERPC64 | MIPS | S390X | SPARC | SPARC64 | IA64) AC_DEFINE(USE_GCC_ATOMIC_OPS, 1, [...]) ;; esac