From patchwork Wed May 15 20:34:44 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wojciech Slenska X-Patchwork-Id: 244175 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 906C52C00A7 for ; Thu, 16 May 2013 06:35:06 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id BD028A02F1; Wed, 15 May 2013 20:35:02 +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 9SA1rqopj9yG; Wed, 15 May 2013 20:34:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 296D0A02CF; Wed, 15 May 2013 20:34:59 +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 C8B168F7AA for ; Wed, 15 May 2013 20:35:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9837C8D36C for ; Wed, 15 May 2013 20:34:59 +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 9TnK0tSEt9GH for ; Wed, 15 May 2013 20:34:58 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ea0-f180.google.com (mail-ea0-f180.google.com [209.85.215.180]) by whitealder.osuosl.org (Postfix) with ESMTPS id D85D98D383 for ; Wed, 15 May 2013 20:34:57 +0000 (UTC) Received: by mail-ea0-f180.google.com with SMTP id g10so1285127eak.11 for ; Wed, 15 May 2013 13:34:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=Sfn6oy6L+wdOMb7NtAnSclEgtjce5L0aKBhm/FLMWsg=; b=ekibfJgghyTahkYEgysmxR4kmhArWq4KKjkBGmVE3glgNZ7cc2y/ZIeQUVVkMOG27d bO14W9Jq2cFo0zqht2TrpAgiL67pdjZT8mBMHTMjLuyne2+7DZ9UmkVq+Kd4blBvZj0J mgeOv3x+eBY0hVTr9a4s7EiI34G+26NzVlgwMzdDSFyuxwFpPkNGIJZrPEtHmW2McL3n Os2pcuLP/HVMgW9PqGkhIjQwxAJ+8iceu3sDk6AqMOs+jq+Wt/DGcmkzhFIKCZ72vBKG K+revTze6kZY8IJcMBE9Ch2H1w7BPHEOQTlyAVOP3mAlMtUdGtCaUzXOeGnsdxr/MEd6 nb4Q== X-Received: by 10.14.93.201 with SMTP id l49mr38420877eef.23.1368650095948; Wed, 15 May 2013 13:34:55 -0700 (PDT) Received: from localhost.localdomain (87-207-22-99.dynamic.chello.pl. [87.207.22.99]) by mx.google.com with ESMTPSA id i2sm6231751eeg.2.2013.05.15.13.34.54 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 15 May 2013 13:34:55 -0700 (PDT) From: Wojciech Slenska To: buildroot@busybox.net Date: Wed, 15 May 2013 22:34:44 +0200 Message-Id: <1368650084-24427-1-git-send-email-wojciech.slenska@gmail.com> X-Mailer: git-send-email 1.8.1.2 Subject: [Buildroot] [PATCH] qt5 libQt5OpenGL.so library installation 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 When qt5 is build with EGLFS support, libQt5OpenGL library should be copied to target. Signed-off-by: Wojciech Slenska --- package/qt5/qt5base/qt5base.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk index bfc6c91..7c6a093 100644 --- a/package/qt5/qt5base/qt5base.mk +++ b/package/qt5/qt5base/qt5base.mk @@ -118,6 +118,7 @@ QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_CONCURRENT) += Qt5Concurrent QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_SQL) += Qt5Sql QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_TEST) += Qt5Test QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_XML) += Qt5Xml +QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_EGLFS) += Qt5OpenGL QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_GUI) += Qt5Gui QT5BASE_INSTALL_LIBS_$(BR2_PACKAGE_QT5BASE_WIDGETS) += Qt5Widgets