Package: glame
Severity: important
Version: 2.0.1-2
Tags: patch
Hi,
the current version fails to build on GNU/kFreeBSD.
It needs to exclude linux specific build-depends,
and a small tweak in sources.
This package is able to use OSS under GNU/kFreeBSD,
it builds fine without libasound2-dev installed.
Please, could you exclude linux specific package in Build-Depends
by using "libasound2-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386]".
Additional source tweak is bellow.
It would also be nice if you can ask upstream
to include this change.
Thanks in advance
Petr
--- /tmp/glame-2.0.1/src/plugins/audio_io_oss.c 2005-03-27 14:29:48.000000000
+0200
+++ src/plugins/audio_io_oss.c 2006-06-25 20:13:49.000000000 +0200
@@ -24,11 +24,11 @@
#include <config.h>
#endif
-#ifdef HAVE_OSS_LINUX
+#if defined(HAVE_OSS_LINUX)
#include <linux/soundcard.h>
-#elif HAVE_OSS_SYS
+#elif defined(HAVE_OSS_SYS)
#include <sys/soundcard.h>
-#elif HAVE_OSS_MACHINE
+#elif defined(HAVE_OSS_MACHINE)
#include <machine/soundcard.h>
#else
#error BUG in OSS configuration.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]