Changeset 1156 for branches/vendor/nokia/qt/current/config.tests
- Timestamp:
- Nov 7, 2014, 5:23:02 PM (11 years ago)
- Location:
- branches/vendor/nokia/qt/current/config.tests
- Files:
-
- 19 added
- 98 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/vendor/nokia/qt/current/config.tests/mac/corewlan/corewlan.pro
r844 r1156 1 SOURCES = corewlantest.mm1 SOURCES = corewlantest.mm 2 2 LIBS += -framework CoreWLAN -framework Foundation 3 3 CONFIG -= app_bundle qt -
branches/vendor/nokia/qt/current/config.tests/mac/corewlan/corewlantest.mm
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/mac/crc.test
r844 r1156 15 15 INCLUDEPATH="" 16 16 CXXFLAGS="" 17 18 17 19 while [ "$#" -gt 0 ]; do 18 20 PARAM=$1 … … 20 22 -framework) 21 23 LFLAGS="$LFLAGS -framework \"$2\"" 24 25 26 27 28 29 30 31 32 33 22 34 shift 23 35 ;; … … 54 66 55 67 $MAKE distclean >/dev/null 2>&1 56 "$OUTDIR/bin/qmake" -nocache -spec "$QMKSPEC" "CONFIG+=$QMAKE_CONFIG" "LIBS*=$LFLAGS" " INCLUDEPATH*=$INCLUDEPATH" "QMAKE_CXXFLAGS*=$CXXFLAGS" "QT_BUILD_TREE=$OUTDIR" "$SRCDIR/$TEST/$EXE.pro" -o "$OUTDIR/$TEST/Makefile"68 "$OUTDIR/bin/qmake" -nocache -spec "$QMKSPEC" "CONFIG+=$QMAKE_CONFIG" "LIBS*=$LFLAGS" "CXXFLAGS" "QT_BUILD_TREE=$OUTDIR" "$SRCDIR/$TEST/$EXE.pro" -o "$OUTDIR/$TEST/Makefile" 57 69 58 70 if [ "$VERBOSE" = "yes" ]; then -
branches/vendor/nokia/qt/current/config.tests/mac/crc/main.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/mac/dwarf2.test
r2 r1156 7 7 WORKDIR=$3 8 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 9 29 touch dwarf2.c 10 30 11 if "$COMPILER" -c dwarf2.c -Werror -gdwarf-2 2>/dev/null 1>&2; then12 if "$COMPILER" -c dwarf2.c -Werror -gdwarf-2 2>&1 | grep "unsupported" >/dev/null ; then31 if "$COMPILER" -c dwarf2.c -Werror -gdwarf-2 2>/dev/null 1>&2; then 32 if "$COMPILER" -c dwarf2.c -Werror -gdwarf-2 2>&1 | grep "unsupported" >/dev/null ; then 13 33 true 14 34 else … … 19 39 20 40 # Test for xcode 2.4.0, which has a broken implementation of DWARF 21 "$COMPILER" $WORKDIR/xcodeversion.cpp -o xcodeversion -framework Carbon;41 "$COMPILER" $WORKDIR/xcodeversion.cpp -o xcodeversion -framework Carbon; 22 42 ./xcodeversion 23 43 -
branches/vendor/nokia/qt/current/config.tests/mac/xcodeversion.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** … … 74 74 // ptr = fail1; 75 75 // printf ("string: %s\n", ptr); 76 76 77 77 int length = strlen(ptr); 78 78 if (length < 3) // expect "x.y" at least … … 95 95 if (ptr[4] < '1') 96 96 return fail; 97 97 98 98 return success; 99 99 } -
branches/vendor/nokia/qt/current/config.tests/qws/ahi/ahi.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/qws/directfb/directfb.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/qws/sound/sound.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/qws/svgalib/svgalib.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/symbian/audio/audio.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/symbian/simple/main.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/3dnow/3dnow.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/alsa/alsatest.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the documentation of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/avx/avx.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/clock-gettime/clock-gettime.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/clock-monotonic/clock-monotonic.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/compile.test
r844 r1156 12 12 DESCRIPTION=$7 13 13 shift 7 14 LFLAGS=" "14 LFLAGS="" 15 15 INCLUDEPATH="" 16 CXXFLAGS=" "16 CXXFLAGS="" 17 17 MAC_ARCH_CXXFLAGS="" 18 18 MAC_ARCH_LFLAGS="" … … 20 20 PARAM=$1 21 21 case $PARAM in 22 23 24 25 22 26 -framework) 23 27 LFLAGS="$LFLAGS -framework \"$2\"" … … 69 73 rm -f "$EXE" "${EXE}.exe" 70 74 71 "$OUTDIR/bin/qmake" -nocache -spec "$QMKSPEC" "CONFIG+=$QMAKE_CONFIG" "CONFIG-=debug_and_release" "LIBS*=$LFLAGS" "LIBS+=$MAC_ARCH_LFLAGS" "INCLUDEPATH*=$INCLUDEPATH" "QMAKE_CXXFLAGS*=$CXXFLAGS" "QMAKE_CXXFLAGS+=$MAC_ARCH_CXXFLAGS" "QT_BUILD_TREE=$OUTDIR" "$SRCDIR/$TEST/$EXE.pro" -o "$OUTDIR/$TEST/Makefile" 75 echo "QT_BUILD_TREE = $OUTDIR" > "$OUTDIR/$TEST/.qmake.cache" 76 "$OUTDIR/bin/qmake" -spec "$QMKSPEC" "CONFIG+=$QMAKE_CONFIG" "CONFIG-=debug_and_release" "LIBS*=$LFLAGS" "LIBS+=$MAC_ARCH_LFLAGS" "INCLUDEPATH*=$INCLUDEPATH" "QMAKE_CXXFLAGS*=$CXXFLAGS" "QMAKE_CXXFLAGS+=$MAC_ARCH_CXXFLAGS" "$SRCDIR/$TEST/$EXE.pro" -o "$OUTDIR/$TEST/Makefile" 72 77 73 78 if [ "$VERBOSE" = "yes" ]; then -
branches/vendor/nokia/qt/current/config.tests/unix/cups/cups.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/db2/db2.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/dbus/dbus.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/doubleformat/doubleformattest.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** … … 55 55 56 56 // equals static char c [] = "0123ABCD0123ABCD\0\0\0\0\0\0\0" 57 static double d [] = { 710524581542275055616.0, 710524581542275055616.0};57 static }; 58 58 59 59 int main(int argc, char **argv) -
branches/vendor/nokia/qt/current/config.tests/unix/egl/egl.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/egl4gles1/egl4gles1.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/endian.test
r844 r1156 5 5 SRCDIR=$3 6 6 OUTDIR=$4 7 7 8 8 9 # debuggery … … 11 12 # build and run a test program 12 13 test -d "$OUTDIR/config.tests/unix/endian" || mkdir -p "$OUTDIR/config.tests/unix/endian" 13 "$OUTDIR/bin/qmake" -nocache -spec "$QMKSPEC" "Q T_BUILD_TREE=$OUTDIR" "$SRCDIR/config.tests/unix/endian/endiantest.pro" -o "$OUTDIR/config.tests/unix/endian/Makefile" >/dev/null 2>&114 "$OUTDIR/bin/qmake" -nocache -spec "$QMKSPEC" "QT_BUILD_TREE=$OUTDIR" "$SRCDIR/config.tests/unix/endian/endiantest.pro" -o "$OUTDIR/config.tests/unix/endian/Makefile" >/dev/null 2>&1 14 15 cd "$OUTDIR/config.tests/unix/endian" 15 16 -
branches/vendor/nokia/qt/current/config.tests/unix/endian/endiantest.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** … … 49 49 { 50 50 // make sure the linker doesn't throw away the arrays 51 char *msb_bigendian_string = (char *)msb_bigendian;52 char *lsb_littleendian_string = (char *)lsb_littleendian;53 (void) msb_bigendian_string;54 (void) lsb_littleendian_string;51 msb_bigendian; 52 lsb_littleendian; 53 (void); 54 (void); 55 55 return msb_bigendian[1] == lsb_littleendian[1]; 56 56 } -
branches/vendor/nokia/qt/current/config.tests/unix/floatmath/floatmath.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/freetype/freetype.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/fvisibility.test
r844 r1156 26 26 27 27 if [ "$VERBOSE" = "yes" ] ; then 28 "$COMPILER"-c $CMDLINE fvisibility.c && FVISIBILITY_SUPPORT=yes28 -c $CMDLINE fvisibility.c && FVISIBILITY_SUPPORT=yes 29 29 else 30 "$COMPILER"-c $CMDLINE fvisibility.c >/dev/null 2>&1 && FVISIBILITY_SUPPORT=yes30 -c $CMDLINE fvisibility.c >/dev/null 2>&1 && FVISIBILITY_SUPPORT=yes 31 31 fi 32 32 rm -f fvisibility.c fvisibility.o … … 35 35 36 36 case "$COMPILER" in 37 *g++*|*c++* )37 *g++*|*c++*) 38 38 CMDLINE="-fvisibility=hidden" 39 39 RunCompileTest -
branches/vendor/nokia/qt/current/config.tests/unix/getaddrinfo/getaddrinfotest.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/getifaddrs/getifaddrs.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/glib/glib.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/gnu-libiconv/gnu-libiconv.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/gstreamer/gstreamer.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/ibase/ibase.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/icd/icd.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/iconv/iconv.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/iconv/iconv.pro
r844 r1156 1 1 SOURCES = iconv.cpp 2 2 CONFIG -= qt dylib app_bundle 3 mac|win32-g++* :LIBS += -liconv3 mac|win32-g++*:LIBS += -liconv -
branches/vendor/nokia/qt/current/config.tests/unix/inotify/inotifytest.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/iodbc/iodbc.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the documentation of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/ipv6/ipv6test.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/ipv6ifname/ipv6ifname.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/iwmmxt/iwmmxt.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/javascriptcore-jit/hwcap_test.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the documentation of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/libjpeg/libjpeg.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/libmng/libmng.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** … … 47 47 mng_cleanup(&hMNG); 48 48 49 49 50 #if MNG_VERSION_MAJOR < 1 || (MNG_VERSION_MAJOR == 1 && MNG_VERSION_MINOR == 0 && MNG_VERSION_RELEASE < 9) 50 51 #error System libmng version is less than 1.0.9; using built-in version instead. 52 51 53 #endif 52 54 -
branches/vendor/nokia/qt/current/config.tests/unix/libpng/libpng.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/libtiff/libtiff.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/mmx/mmx.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/mremap/mremap.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/mysql/mysql.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/neon/neon.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/nis/nis.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/oci/oci.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/odbc/odbc.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/opengles1/opengles1.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** 40 40 ****************************************************************************/ 41 41 42 #include <GLES/gl.h> 42 #ifdef BUILD_ON_MAC 43 #include <OpenGLES/ES1/gl.h> 44 #else 45 #include <GLES/gl.h> 46 #endif 43 47 44 48 int main(int, char **) -
branches/vendor/nokia/qt/current/config.tests/unix/opengles1/opengles1.pro
r556 r1156 8 8 CONFIG -= qt 9 9 LIBS += $$QMAKE_LIBS_OPENGL_ES1 10 11 12 13 -
branches/vendor/nokia/qt/current/config.tests/unix/opengles2/opengles2.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** 40 40 ****************************************************************************/ 41 41 42 #include <GLES2/gl2.h> 42 #ifdef BUILD_ON_MAC 43 #include <OpenGLES/ES2/gl.h> 44 #else 45 #include <GLES2/gl2.h> 46 #endif 43 47 44 48 int main(int, char **) -
branches/vendor/nokia/qt/current/config.tests/unix/opengles2/opengles2.pro
r556 r1156 8 8 CONFIG -= qt 9 9 LIBS += $$QMAKE_LIBS_OPENGL_ES2 10 11 12 13 -
branches/vendor/nokia/qt/current/config.tests/unix/openssl/openssl.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/openvg/openvg.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the documentation of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/precomp.test
r2 r1156 28 28 ;; 29 29 30 *g++*|c++ )30 *g++*|c++) 31 31 case `"$COMPILER" -dumpversion 2>/dev/null` in 32 32 3.*) -
branches/vendor/nokia/qt/current/config.tests/unix/psql/psql.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/ptrsize/ptrsizetest.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/pulseaudio/pulseaudio.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/shivavg/shivavg.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/sqlite/sqlite.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/sqlite2/sqlite2.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/sse/sse.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/sse2/sse2.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/sse3/sse3.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/sse4_1/sse4_1.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/sse4_2/sse4_2.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/ssse3/ssse3.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/stdint/main.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/stl/stltest.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/tds/tds.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/tslib/tslib.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/unix/zlib/zlib.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/fontconfig/fontconfig.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/glxfbconfig/glxfbconfig.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/glxfbconfig/glxfbconfig.pro
r2 r1156 8 8 9 9 CONFIG -= qt 10 LIBS += -lGL -lGLU10 LIBS += -lGL -
branches/vendor/nokia/qt/current/config.tests/x11/mitshm/mitshm.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/notype/notypetest.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/opengl/opengl.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** … … 41 41 42 42 #include <GL/gl.h> 43 #include <GL/glu.h>44 45 #ifndef GLU_VERSION_1_246 # error "Required GLU version 1.2 not found."47 #endif48 43 49 44 int main(int, char **) -
branches/vendor/nokia/qt/current/config.tests/x11/opengl/opengl.pro
r844 r1156 9 9 CONFIG -= qt 10 10 win32-g++*:LIBS += -lopengl32 11 else:LIBS += -lGL -lGLU11 else:LIBS += -lGL -
branches/vendor/nokia/qt/current/config.tests/x11/sm/sm.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xcursor/xcursor.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xfixes/xfixes.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xinerama/xinerama.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xinput/xinput.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xkb/xkb.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xlib/xlib.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xrandr/xrandr.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xrender/xrender.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xshape/xshape.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xsync/xsync.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the config.tests of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 ** -
branches/vendor/nokia/qt/current/config.tests/x11/xvideo/xvideo.cpp
r844 r1156 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 ** All rights reserved. 5 ** Contact: Nokia Corporation ([email protected]) 3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). 4 ** Contact: http://www.qt-project.org/legal 6 5 ** 7 6 ** This file is part of the FOO module of the Qt Toolkit. 8 7 ** 9 8 ** $QT_BEGIN_LICENSE:LGPL$ 10 ** Commercial Usage11 ** Licensees holding valid Qt Commerciallicenses may use this file in12 ** accordance with the Qt Commercial License Agreement provided with the9 ** Commercial Usage 10 ** Licensees holding valid licenses may use this file in 11 ** accordance with the greement provided with the 13 12 ** Software or, alternatively, in accordance with the terms contained in 14 ** a written agreement between you and Nokia. 13 ** a written agreement between you and Digia. For licensing terms and 14 ** conditions see http://qt.digia.com/licensing. For further information 15 ** use the contact form at http://qt.digia.com/contact-us. 15 16 ** 16 17 ** GNU Lesser General Public License Usage … … 22 23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 23 24 ** 24 ** In addition, as a special exception, Nokia gives you certain additional25 ** rights. These rights are described in the Nokia Qt LGPL Exception25 ** In addition, as a special exception, ia gives you certain additional 26 ** rights. These rights are described in the ia Qt LGPL Exception 26 27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 28 ** … … 34 35 ** met: http://www.gnu.org/copyleft/gpl.html. 35 36 ** 36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at [email protected]. 37 ** 38 38 ** $QT_END_LICENSE$ 39 39 **
Note:
See TracChangeset
for help on using the changeset viewer.