Package: src:xwax
Version: 0.7-5
Severity: important
Tags: patch
User: debian-h...@lists.debian.org
Usertags: hurd

Hi,

currently[1] xwax does not compile on GNU/Hurd.

The problem is due to the wrong argument for the sound system passed to
configure: instead of using OSS on kfreebsd and ALSA elsewhere, ALSA (being
specific to Linux) should be used on Linux only and OSS elsewhere.

The attached patch does such change.

[1] 
https://buildd.debian.org/fetch.cgi?pkg=xwax&arch=hurd-i386&ver=0.7-5&stamp=1285266917&file=log&as=raw

Thanks,
-- 
Pino
--- a/debian/rules
+++ b/debian/rules
@@ -25,7 +25,7 @@
 config.status: configure
        dh_testdir
        # Add here commands to configure the package.
-ifeq ($(DEB_HOST_ARCH_OS),kfreebsd)
+ifneq ($(DEB_HOST_ARCH_OS),linux)
         ./configure --prefix /usr --enable-oss
 else
         ./configure --prefix /usr --enable-alsa

Reply via email to