Index: backend/sound_handler_gst.cpp =================================================================== RCS file: /sources/gnash/gnash/backend/sound_handler_gst.cpp,v retrieving revision 1.29 diff -u -p -r1.29 sound_handler_gst.cpp --- backend/sound_handler_gst.cpp 8 Nov 2006 21:57:04 -0000 1.29 +++ backend/sound_handler_gst.cpp 13 Nov 2006 10:28:52 -0000 @@ -142,9 +142,11 @@ public: // create an audio sink - use oss, alsa or...? make a commandline option? // we first try atudetect, then alsa, then oss, then esd, then...? +#if !defined(__NetBSD__) audiosink = gst_element_factory_make ("autoaudiosink", NULL); if (!audiosink) audiosink = gst_element_factory_make ("alsasink", NULL); if (!audiosink) audiosink = gst_element_factory_make ("osssink", NULL); +#endif if (!audiosink) audiosink = gst_element_factory_make ("esdsink", NULL); // Check if the creation of the gstreamer pipeline, adder and audiosink was a succes