changeset 1032:e34336f4feaf

add esd support and disabled default.
author pontscho
date Tue, 05 Jun 2001 10:37:50 +0000
parents d9791ad3bc7a
children c8c2aefaae11
files libao2/audio_out.c
diffstat 1 files changed, 16 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libao2/audio_out.c	Tue Jun 05 10:33:05 2001 +0000
+++ b/libao2/audio_out.c	Tue Jun 05 10:37:50 2001 +0000
@@ -21,8 +21,14 @@
 #ifdef HAVE_ALSA5
  extern ao_functions_t audio_out_alsa5;
 #endif
-//extern ao_functions_t audio_out_alsa9;
-extern ao_functions_t audio_out_esd;
+/*
+#ifdef HAVE_ALSA9
+ extern ao_functions_t audio_out_alsa9;
+#endif
+#ifdef HAVE_ESD
+ extern ao_functions_t audio_out_esd;
+#endif
+*/
 #ifdef HAVE_SDL
 extern ao_functions_t audio_out_sdl;
 #endif
@@ -34,8 +40,14 @@
 #ifdef HAVE_ALSA5
 	&audio_out_alsa5,
 #endif
-//	&audio_out_alsa9,
-//	&audio_out_esd,
+/*
+#ifdef HAVE_ALSA9
+	&audio_out_alsa9,
+#endif
+#ifdef HAVE_ESD
+	&audio_out_esd,
+#endif
+*/
 #ifdef HAVE_SDL
         &audio_out_sdl,
 #endif