freebsd-ports/sysutils/sjog/files/patch-src::sjog_volume.c
Kris Kennaway 8fff79d5e1 Partially fix build on -current by correcting incorrect patch
(machine/soundcard.h -> sys/soundcard.h).  This still blows up later on.
2002-10-24 03:28:35 +00:00

12 lines
279 B
C

--- src/sjog_volume.c.orig Sun Aug 12 23:17:33 2001
+++ src/sjog_volume.c Sat Aug 17 20:38:56 2002
@@ -1,5 +1,9 @@
#include <sys/ioctl.h>
+#ifdef __FreeBSD__
+#include <sys/soundcard.h>
+#else
#include <linux/soundcard.h>
+#endif
#include "sjog.h"
#include "sjog_volume.h"