summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorGirish Ramakrishnan <girish.1.ramakrishnan@nokia.com>2012-07-03 03:00:41 +0530
committerQt by Nokia <qt-info@nokia.com>2012-07-11 14:55:27 +0200
commit683540ee5a36f8208925a1921ce26639ca129a2c (patch)
treec068a4882b081394a9beee0d2c8428f5fd3c0087 /config.tests
parent59339941e0e6e2b8648c2e128284de188a65714b (diff)
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 <oswald.buddenhagen@nokia.com> Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com> Reviewed-by: Girish Ramakrishnan <girish.1.ramakrishnan@nokia.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/qpa/linuxfb/linuxfb.cpp55
-rw-r--r--config.tests/qpa/linuxfb/linuxfb.pro3
2 files changed, 58 insertions, 0 deletions
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 <linux/fb.h>
+#include <sys/ioctl.h>
+
+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