16 Mar
2002
16 Mar
'02
1:01 p.m.
Hi! A small portability fix for BSD derived systems which have 'souncard.h' in <sys/soundcard.h> instead of <machine/soundcard.h> I noticed that config.h has 'HAVE_SYS_SOUNDCARD_H' in it, so the change to libmpdemux/tvi_bsdbt848.c is simply to ifdef on HAVE_SYS_SOUNDCARD_H Cheers, Steven Schultz sms@2bsd.com ----------------------------------------- --- tvi_bsdbt848.c.dist Fri Mar 15 06:59:32 2002 +++ tvi_bsdbt848.c Sat Mar 16 09:57:05 2002 @@ -34,7 +34,11 @@ #include <machine/ioctl_meteor.h> #include <machine/ioctl_bt848.h> +#ifdef HAVE_SYS_SOUNDCARD_H +#include <sys/soundcard.h> +#else #include <machine/soundcard.h> +#endif #include "../libvo/img_format.h" #include "tv.h"
8641
Age (days ago)
8641
Last active (days ago)
1 comments
2 participants
participants (2)
-
Alex Beregszaszi -
Steven M. Schultz