Package: ladish
Version: 1+dfsg0-5
Tags: patch

ladish fails to build in the code where it tries to generate a stack-backtrace.
The attached patch fixes it like most other architectures by just disabling
the stacktrace on hppa (parisc).
Please apply the attached patch for next upload.
By the way, arm64 fails the same way, so adding " || defined (__arm64__)"
will probably fix arm64 as well.

Failing buildlog:
https://buildd.debian.org/status/fetch.php?pkg=ladish&arch=hppa&ver=1%2Bdfsg0-5&stamp=1443354992

Thanks,
Helge
diff -up ./daemon/sigsegv.c.org ./daemon/sigsegv.c
--- ./daemon/sigsegv.c.org	2015-12-31 11:47:53.352000000 +0100
+++ ./daemon/sigsegv.c	2015-12-31 11:48:11.816000000 +0100
@@ -59,7 +59,7 @@ char * __cxa_demangle(const char * __man
 # define REGFORMAT "%x"
 #endif
 
-#if defined(__arm__) || defined(__powerpc__) || defined (__ia64__) || defined (__alpha__) || defined (__FreeBSD_kernel__) || defined (__sh__)
+#if defined(__arm__) || defined(__powerpc__) || defined (__ia64__) || defined (__alpha__) || defined (__FreeBSD_kernel__) || defined (__sh__) || defined(__hppa__)
 # define DISABLE_STACKTRACE
 #endif
 
_______________________________________________
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Reply via email to