summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2014-01-06 08:35:16 -0500
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-30 08:31:27 +0100
commita416082d7b2d28813ff3855a61945ba109af522d (patch)
tree7de76afe2396cac1c5501036157c6b687f3d7f28 /config.tests
parent38c2411fa82975ba41039ea583c46aeb4b4cde61 (diff)
Add configure test and build system files for JasPer.
Change-Id: Id3db7c5e7b3329adbea62c9d95323ead4e8a783f Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/jasper/jasper.cpp53
-rw-r--r--config.tests/jasper/jasper.pro6
2 files changed, 59 insertions, 0 deletions
diff --git a/config.tests/jasper/jasper.cpp b/config.tests/jasper/jasper.cpp
new file mode 100644
index 0000000..92e0276
--- /dev/null
+++ b/config.tests/jasper/jasper.cpp
@@ -0,0 +1,53 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
+** Copyright (C) 2014 Petroules Corporation.
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the config.tests in the Qt ImageFormats module.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, 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, Digia gives you certain additional
+** rights. These rights are described in the Digia 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.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <string.h>
+#include <jasper/jasper.h>
+
+int main(int, char **)
+{
+ // This version of Jasper is broken, according to the old Qt Solutions docs
+ if (strcmp(JAS_VERSION, "1.900.0") == 0)
+ return 1;
+
+ return 0;
+}
diff --git a/config.tests/jasper/jasper.pro b/config.tests/jasper/jasper.pro
new file mode 100644
index 0000000..77d3689
--- /dev/null
+++ b/config.tests/jasper/jasper.pro
@@ -0,0 +1,6 @@
+SOURCES = jasper.cpp
+CONFIG -= qt dylib
+mac:CONFIG -= app_bundle
+win32:CONFIG += console
+msvc: LIBS += libjasper.lib
+else: LIBS += -ljasper