From patchwork Thu Mar 7 20:18:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 225910 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 202E02C038E for ; Fri, 8 Mar 2013 07:20:01 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D18B11016C4; Thu, 7 Mar 2013 20:19:46 +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 O0wFueQADsu2; Thu, 7 Mar 2013 20:19:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 12FF81016BF; Thu, 7 Mar 2013 20:19:21 +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 DA5D48F74B for ; Thu, 7 Mar 2013 20:19:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 309CD85400 for ; Thu, 7 Mar 2013 20:19:34 +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 bXwJFTYhgl16 for ; Thu, 7 Mar 2013 20:19:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.35.102]) by whitealder.osuosl.org (Postfix) with ESMTP id 0711E8AC18 for ; Thu, 7 Mar 2013 20:19:33 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 35FABB5D; Thu, 7 Mar 2013 21:19:34 +0100 (CET) Received: from localhost (humanoidz.org [82.247.183.72]) by mail.free-electrons.com (Postfix) with ESMTPSA id 873BD7B7; Thu, 7 Mar 2013 21:19:33 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Thu, 7 Mar 2013 21:18:33 +0100 Message-Id: <1362687540-19440-6-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1362687540-19440-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1362687540-19440-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCH 05/32] rpi-userland: add bcm_host to egl.pc 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 From: Floris Bos bcm_host is the Broadcom hardware interface library And is currently a dependency to use the EGL functions Signed-off-by: Floris Bos Signed-off-by: Thomas Petazzoni --- .../rpi-userland-add-pkgconfig-files.patch | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package/rpi-userland/rpi-userland-add-pkgconfig-files.patch b/package/rpi-userland/rpi-userland-add-pkgconfig-files.patch index 0da9afd..4ffc2b0 100644 --- a/package/rpi-userland/rpi-userland-add-pkgconfig-files.patch +++ b/package/rpi-userland/rpi-userland-add-pkgconfig-files.patch @@ -9,7 +9,7 @@ Index: b/interface/khronos/egl/egl.pc.in =================================================================== --- /dev/null +++ b/interface/khronos/egl/egl.pc.in -@@ -0,0 +1,10 @@ +@@ -0,0 +1,11 @@ +prefix=@CMAKE_INSTALL_PREFIX@ +exec_prefix=${prefix} +libdir=${exec_prefix}/lib @@ -18,8 +18,9 @@ Index: b/interface/khronos/egl/egl.pc.in +Name: egl +Description: RasberryPi implementation of EGL +Version: 1.0 -+Libs: -L${libdir} -lEGL -lGLESv2 -+Cflags: -I${includedir}/ -I${includedir}/interface/vcos/pthreads/ ++Libs: -L${libdir} -lEGL -lGLESv2 -lbcm_host ++Cflags: -I${includedir}/ -I${includedir}/interface/vcos/pthreads/ \ ++ -I${includedir}/interface/vmcs_host/linux/ Index: b/interface/khronos/CMakeLists.txt =================================================================== --- a/interface/khronos/CMakeLists.txt