# HG changeset patch # User jkeil # Date 998996071 0 # Node ID 24e75b632740dbd88c7e8af66b86004513bc694e # Parent bbd054c2cc2025e3436fe5d7347d498f33dc8ded Move the sun audio driver near the start of the list of audio drivers, so that it has priority over the 'null' driver. On solaris (without OSS drivers), the sun audio driver is now the default audio driver. diff -r bbd054c2cc20 -r 24e75b632740 libao2/audio_out.c --- a/libao2/audio_out.c Tue Aug 28 08:06:26 2001 +0000 +++ b/libao2/audio_out.c Tue Aug 28 10:54:31 2001 +0000 @@ -42,6 +42,9 @@ #ifdef USE_OSS_AUDIO &audio_out_oss, #endif +#ifdef USE_SUN_AUDIO + &audio_out_sun, +#endif &audio_out_null, #ifdef HAVE_ALSA5 &audio_out_alsa5, @@ -55,9 +58,6 @@ #ifdef HAVE_SDL &audio_out_sdl, #endif -#ifdef USE_SUN_AUDIO - &audio_out_sun, -#endif &audio_out_pcm, // &audio_out_pss, NULL