freebsd-ports/audio/tosha/files/patch-pcmplay.c
Motoyuki Konno 8d4724eed2 Fix build problem on 5-current.
<machine/soundcard.h> is moved to <sys/soundcard.h> on both 4-stable
and 5-current.  See commitlog of src/include/Makefile rev 1.165.
2002-04-11 00:22:33 +00:00

11 lines
271 B
C

--- pcmplay.c.old Sat Jan 2 08:57:41 1999
+++ pcmplay.c Thu Apr 11 08:00:07 2002
@@ -44,7 +44,7 @@
#include <sys/types.h>
#include <sys/uio.h>
#include <unistd.h>
-#include <machine/soundcard.h>
+#include <sys/soundcard.h>
#include "utils.h"
#include "getlopt.h"