Package: shell-fm Version: 0.4+svn20071125.r282-1 Severity: important Tags: patch User: [email protected] Usertags: kfreebsd
Hi, your package FTBFS on GNU/kFreeBSD since it'd need to include <sys/soundcard.h> there. The attached patch fixes this FTBFS. Thanks for considering. Mraw, KiBi.
--- a/src/play.c +++ b/src/play.c @@ -31,7 +31,11 @@ #ifdef __HAVE_LIBAO__ #include <ao/ao.h> #else +#if defined(__linux__) #include <linux/soundcard.h> +#else +#include <sys/soundcard.h> +#endif #endif #include "settings.h"

