From patchwork Wed May 7 20:09:49 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 346794 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 6649814007A for ; Thu, 8 May 2014 06:11:17 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 490BD8C50D; Wed, 7 May 2014 20:11:16 +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 2L6L7v+EVHU4; Wed, 7 May 2014 20:11:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 079598C24C; Wed, 7 May 2014 20:10:45 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 2126E1D076D for ; Wed, 7 May 2014 20:10:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 1D63987BBC for ; Wed, 7 May 2014 20:10:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BI+ca1MN4-Ge for ; Wed, 7 May 2014 20:10:24 +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 hemlock.osuosl.org (Postfix) with ESMTPS id 5C53A89711 for ; Wed, 7 May 2014 20:10:24 +0000 (UTC) Received: from fwd15.aul.t-online.de (fwd15.aul.t-online.de [172.20.27.63]) by mailout05.t-online.de (Postfix) with SMTP id 17F923CB258 for ; Wed, 7 May 2014 22:09:42 +0200 (CEST) Received: from fli4l.lan.fli4l (TFR9euZXrhfhUrahnQ4JGW0KbY2ujueNprRKrT4TFgs2Tzb0R3Jrjlmh6kSEVcDZE0@[79.247.128.159]) by fwd15.t-online.de with esmtp id 1Wi8AW-2JvB2m0; Wed, 7 May 2014 22:10:20 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:41664) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Wi8AV-0004UJ-Ry; Wed, 07 May 2014 22:10:20 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Wed, 7 May 2014 22:09:49 +0200 Message-Id: <1399493406-7247-16-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1399493406-7247-1-git-send-email-bernd.kuhls@t-online.de> References: <1399493406-7247-1-git-send-email-bernd.kuhls@t-online.de> X-ID: TFR9euZXrhfhUrahnQ4JGW0KbY2ujueNprRKrT4TFgs2Tzb0R3Jrjlmh6kSEVcDZE0 X-TOI-MSGID: 86baaa59-0b78-4fb7-ac74-1873998b06b3 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v5 15/32] 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 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package/sdl/sdl.mk b/package/sdl/sdl.mk index 8d0e5bd..e8ee0c0 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 \