View | Details | Raw Unified | Return to bug 60468
Collapse All | Expand All

(-)x11-wm/epplets/files/patch-epplets::Emix.c (+23 lines)
Line 0 Link Here
1
--- epplets/Emix.c.orig	Wed Sep 13 08:24:16 2000
2
+++ epplets/Emix.c	Thu Dec 18 19:20:45 2003
3
@@ -6,11 +6,17 @@
4
 
5
 #include "epplet.h"
6
 #include <sys/ioctl.h>
7
-#ifdef __FreeBSD__
8
+#include <config.h>
9
+
10
+#ifdef HAVE_LINUX_SOUNDCARD_H
11
+#include <linux/soundcard.h>
12
+#elif HAVE_MACHINE_SOUNDCARD_H
13
 #include <machine/soundcard.h>
14
-#else
15
+#elif HAVE_SYS_SOUNDCARD_H
16
 #include <sys/soundcard.h>
17
-#endif
18
+#else
19
+#error No soundcard defenition!
20
+#endif /* SOUNDCARD_H */
21
 
22
 Epplet_gadget vs_master, vs_pcm, vs_lin, vs_cda, b_close, b_help;
23

Return to bug 60468