From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40129) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmsrP-0006Wm-HX for qemu-devel@nongnu.org; Wed, 12 Jun 2013 17:45:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UmsrO-00018k-Jd for qemu-devel@nongnu.org; Wed, 12 Jun 2013 17:45:43 -0400 Sender: fluxion From: Michael Roth Date: Wed, 12 Jun 2013 16:41:25 -0500 Message-Id: <1371073298-14519-14-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1371073298-14519-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1371073298-14519-1-git-send-email-mdroth@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 13/26] Remove OSS support for OpenBSD List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-stable@nongnu.org From: Brad Smith Remove the OSS support for OpenBSD. The OSS API has not been usable for quite some time. Signed-off-by: Brad Smith Reviewed-by: Laszlo Ersek Reviewed-by: Andreas Färber Signed-off-by: Blue Swirl (cherry picked from commit 4f6ab397b60615d2da77bff4f32666be9ac2e949) Signed-off-by: Michael Roth --- audio/ossaudio.c | 4 ---- configure | 5 ++--- 2 files changed, 2 insertions(+), 7 deletions(-) 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" -- 1.7.9.5