From patchwork Thu Apr 3 19:01:21 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 336745 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 DBB8E1400D9 for ; Fri, 4 Apr 2014 06:03:22 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id B6A518BE4B; Thu, 3 Apr 2014 19:02:57 +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 j668PP2v_TLA; Thu, 3 Apr 2014 19:02:55 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id A14E78BF94; Thu, 3 Apr 2014 19:02:33 +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 088231C2AD2 for ; Thu, 3 Apr 2014 19:02:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0150C8C4EF for ; Thu, 3 Apr 2014 19:02:01 +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 GoD+wmSzZZHC for ; Thu, 3 Apr 2014 19:02:00 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout05.t-online.de (mailout05.t-online.de [194.25.134.82]) by whitealder.osuosl.org (Postfix) with ESMTPS id 130658B260 for ; Thu, 3 Apr 2014 19:02:00 +0000 (UTC) Received: from fwd16.aul.t-online.de (fwd16.aul.t-online.de [172.20.26.243]) by mailout05.t-online.de (Postfix) with SMTP id 2D6032D9C9F for ; Thu, 3 Apr 2014 21:01:58 +0200 (CEST) Received: from fli4l.lan.fli4l (Vml378ZrQh3ocpacDyXcKncYUj3ifGWiDCxgjNWOKlEEItXzJhnKT9bFn-0xfelZFL@[79.247.166.166]) by fwd16.t-online.de with esmtp id 1WVmtb-0NP55E0; Thu, 3 Apr 2014 21:01:51 +0200 Received: from [192.168.1.122] (port=43827 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 1WVmta-0004C8-HP; Thu, 03 Apr 2014 21:01:50 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Thu, 3 Apr 2014 21:01:21 +0200 Message-Id: <1396551692-12371-27-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1396551692-12371-1-git-send-email-bernd.kuhls@t-online.de> References: <1396551692-12371-1-git-send-email-bernd.kuhls@t-online.de> X-ID: Vml378ZrQh3ocpacDyXcKncYUj3ifGWiDCxgjNWOKlEEItXzJhnKT9bFn-0xfelZFL X-TOI-MSGID: 935c8025-bcb7-4a08-b755-4f88ffd74852 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v4 26/37] 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 \