From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54787) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ug1j1-0003R7-41 for qemu-devel@nongnu.org; Fri, 24 May 2013 19:48:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ug1ix-0004cn-Uy for qemu-devel@nongnu.org; Fri, 24 May 2013 19:48:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27855) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ug1ix-0004ca-N0 for qemu-devel@nongnu.org; Fri, 24 May 2013 19:48:39 -0400 Message-ID: <519FFCE0.90000@redhat.com> Date: Sat, 25 May 2013 01:50:56 +0200 From: Laszlo Ersek MIME-Version: 1.0 References: <20130524230046.GA2671@rox.home.comstyle.com> In-Reply-To: <20130524230046.GA2671@rox.home.comstyle.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] Remove OSS support for OpenBSD List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Brad Smith Cc: qemu-devel@nongnu.org On 05/25/13 01:01, Brad Smith wrote: > Remove the OSS support for OpenBSD. The OSS API has not been usable > for quite some time. > > Signed-off-by: Brad Smith > > > diff --git a/audio/ossaudio.c b/audio/ossaudio.c > index 00be9c9..007c641 100644 > --- a/audio/ossaudio.c > +++ b/audio/ossaudio.c > @@ -25,11 +25,7 @@ > #include > #include > #include > -#ifdef __OpenBSD__ > -#include > -#else > #include > -#endif > #include "qemu-common.h" > #include "qemu/main-loop.h" > #include "qemu/host-utils.h" > diff --git a/configure b/configure > index 5ae7e4a..eb74510 100755 > --- a/configure > +++ b/configure > @@ -468,9 +468,8 @@ NetBSD) > OpenBSD) > bsd="yes" > make="${MAKE-gmake}" > - audio_drv_list="oss" > - audio_possible_drivers="oss sdl esd" > - oss_lib="-lossaudio" > + audio_drv_list="sdl" > + audio_possible_drivers="sdl esd" > ;; > Darwin) > bsd="yes" > Reviewed-by: Laszlo Ersek