brad 083ab4c72f replace oss audio API usage with our native audio API.
--
Patches and code for native audio API support from:
Wilbern Cobb <cobb@vedge.com.ar>
2001-08-04 05:03:19 +00:00

12 lines
390 B
Plaintext

--- audio.c.orig Tue Sep 26 11:56:18 2000
+++ audio.c Sun Jul 22 17:41:04 2001
@@ -23,6 +23,8 @@ static int esd_audio_fd = -1;
/* ALSA before OSS as ALSA is OSS compatible */
#if defined(DRIVER_ALSA) || defined(DRIVER_NEWALSA)
# include "audio_alsa.c"
+#elif defined(DRIVER_SUN)
+# include "audio_sun.c"
#elif defined(DRIVER_OSS)
# include "audio_oss.c"
#elif defined(DRIVER_AIX)