# HG changeset patch # User pontscho # Date 991680151 0 # Node ID e2de3386725f66ce7e91bf7d8d8f5ed126ea1ad8 # Parent d7c34da0b28f6d5d58767a5f8a482fe534dfca71 fixed HAVE_ALSA5 var. bug. sorry :( diff -r d7c34da0b28f -r e2de3386725f libao2/audio_out.c --- a/libao2/audio_out.c Mon Jun 04 18:41:34 2001 +0000 +++ b/libao2/audio_out.c Mon Jun 04 18:42:31 2001 +0000 @@ -18,8 +18,10 @@ extern ao_functions_t audio_out_oss; //extern ao_functions_t audio_out_ossold; extern ao_functions_t audio_out_null; -extern ao_functions_t audio_out_alsa5; -extern ao_functions_t audio_out_alsa9; +#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_SDL extern ao_functions_t audio_out_sdl; @@ -29,7 +31,9 @@ { &audio_out_oss, &audio_out_null, +#ifdef HAVE_ALSA5 &audio_out_alsa5, +#endif // &audio_out_alsa9, // &audio_out_esd, #ifdef HAVE_SDL