From patchwork Mon Mar 31 20:06:26 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 335579 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id EBFF414007E for ; Tue, 1 Apr 2014 07:07:37 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0871C8B642; Mon, 31 Mar 2014 20:07:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0qtbsqZgo5Wh; Mon, 31 Mar 2014 20:07:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 21BD28B7CA; Mon, 31 Mar 2014 20:07:14 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id D4A231BF992 for ; Mon, 31 Mar 2014 20:06:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D09EA8AE72 for ; Mon, 31 Mar 2014 20:06:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id I0hRIXqLG2w0 for ; Mon, 31 Mar 2014 20:06:49 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by whitealder.osuosl.org (Postfix) with ESMTPS id 056C28AE55 for ; Mon, 31 Mar 2014 20:06:49 +0000 (UTC) Received: from fwd23.aul.t-online.de (fwd23.aul.t-online.de [172.20.26.128]) by mailout03.t-online.de (Postfix) with SMTP id 41EEA52F03A for ; Mon, 31 Mar 2014 22:06:47 +0200 (CEST) Received: from fli4l.lan.fli4l (XjAmZsZJohQnEfs1J6Jz2HGn3Y5sPH52uBbAr75o0GcTMzh+QCw3U2rte9HOPIeZ+B@[87.146.222.86]) by fwd23.t-online.de with esmtp id 1WUiTh-0XHk360; Mon, 31 Mar 2014 22:06:41 +0200 Received: from [192.168.1.122] (port=41152 helo=fli4lbuild64.lan.fli4l) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1WUiTg-00055d-HY; Mon, 31 Mar 2014 22:06:40 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Mon, 31 Mar 2014 22:06:26 +0200 Message-Id: <1396296389-28821-14-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1396296389-28821-1-git-send-email-bernd.kuhls@t-online.de> References: <1396296389-28821-1-git-send-email-bernd.kuhls@t-online.de> X-ID: XjAmZsZJohQnEfs1J6Jz2HGn3Y5sPH52uBbAr75o0GcTMzh+QCw3U2rte9HOPIeZ+B X-TOI-MSGID: 6a668dc7-db03-4529-a13f-a8e4f30ea954 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 13/16] sdl: Add new dependency libglu for opengl support X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Bernd Kuhls --- package/sdl/sdl.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package/sdl/sdl.mk b/package/sdl/sdl.mk index 086f5e9..fa68198 100644 --- a/package/sdl/sdl.mk +++ b/package/sdl/sdl.mk @@ -62,9 +62,12 @@ SDL_DEPENDENCIES += alsa-lib endif ifeq ($(BR2_PACKAGE_MESA3D),y) -SDL_DEPENDENCIES += mesa3d +SDL_DEPENDENCIES += libglu mesa3d +SDL_CONF_OPT += --enable-video-opengl endif +SDL_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBICONV),libiconv) + SDL_CONF_OPT += --enable-pulseaudio=no \ --disable-arts \ --disable-esd \ @@ -72,6 +75,7 @@ SDL_CONF_OPT += --enable-pulseaudio=no \ --disable-video-ps3 HOST_SDL_CONF_OPT += --enable-pulseaudio=no \ + --enable-video-x11=no \ --disable-arts \ --disable-esd \ --disable-nasm \