From 683540ee5a36f8208925a1921ce26639ca129a2c Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 3 Jul 2012 03:00:41 +0530 Subject: linuxfb: Add config.test and configure support The code is exactly the same as what is already done for DirectFB. Change-Id: I3b84e67a3e999f692da4110f3ac9c82d98b0637c Reviewed-by: Oswald Buddenhagen Reviewed-by: Gunnar Sletta Reviewed-by: Girish Ramakrishnan --- config.tests/qpa/linuxfb/linuxfb.cpp | 55 ++++++++++++++++++++++++++++++++++++ config.tests/qpa/linuxfb/linuxfb.pro | 3 ++ 2 files changed, 58 insertions(+) create mode 100644 config.tests/qpa/linuxfb/linuxfb.cpp create mode 100644 config.tests/qpa/linuxfb/linuxfb.pro (limited to 'config.tests/qpa/linuxfb') diff --git a/config.tests/qpa/linuxfb/linuxfb.cpp b/config.tests/qpa/linuxfb/linuxfb.cpp new file mode 100644 index 0000000000..bfc78dce5f --- /dev/null +++ b/config.tests/qpa/linuxfb/linuxfb.cpp @@ -0,0 +1,55 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/ +** +** This file is part of the config.tests of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** GNU Lesser General Public License Usage +** This file may be used under the terms of the GNU Lesser General Public +** License version 2.1 as published by the Free Software Foundation and +** appearing in the file LICENSE.LGPL included in the packaging of this +** file. Please review the following information to ensure the GNU Lesser +** General Public License version 2.1 requirements will be met: +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU General +** Public License version 3.0 as published by the Free Software Foundation +** and appearing in the file LICENSE.GPL included in the packaging of this +** file. Please review the following information to ensure the GNU General +** Public License version 3.0 requirements will be met: +** http://www.gnu.org/copyleft/gpl.html. +** +** Other Usage +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Nokia. +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include +#include + +int main(int, char **) +{ + fb_fix_screeninfo finfo; + fb_var_screeninfo vinfo; + + int fd = 3; + ioctl(fd, FBIOGET_FSCREENINFO, &finfo); + ioctl(fd, FBIOGET_VSCREENINFO, &vinfo); + + return 0; +} diff --git a/config.tests/qpa/linuxfb/linuxfb.pro b/config.tests/qpa/linuxfb/linuxfb.pro new file mode 100644 index 0000000000..45db4b78dd --- /dev/null +++ b/config.tests/qpa/linuxfb/linuxfb.pro @@ -0,0 +1,3 @@ +SOURCES = linuxfb.cpp + +CONFIG -= qt -- cgit v1.2.3