Package: lcdproc Version: 0.5.7-4 Tags: patch lcdproc fails to build, because it assumes that all hp* platforms use the ".sl" shared library extension. On the hppa*linux port we use the standard Linux .so extension though. This is fixed with attached trivial patch (without breaking HP-UX). Can you please apply it for the next upload (and/or send/apply upstream) ?
Thanks, Helge Failing log was: https://buildd.debian.org/status/fetch.php?pkg=lcdproc&arch=hppa&ver=0.5.7-4&stamp=1451426567
diff -up ./acinclude.m4.org ./acinclude.m4 --- ./acinclude.m4.org 2015-12-30 21:29:05.276000000 +0100 +++ ./acinclude.m4 2015-12-30 21:30:45.752000000 +0100 @@ -860,6 +860,8 @@ dnl $SO is the extension of shared libra dnl It is available in the program code as MODULE_EXTENSION AC_MSG_CHECKING(module extension) case $host in + hp*linux*) + SO=.so;; hp*|HP*) SO=.sl;; *cygwin*)