From eb7192a96d5fa7a55ed07b7170db93f68ae6e768 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Mon, 7 Nov 2011 10:16:21 +0100 Subject: remove symbian support from configure Change-Id: Ib37defb1a69b3f8e5e5c6698f022291849f52716 Reviewed-by: Oswald Buddenhagen --- config.tests/symbian/audio/.gitignore | 2 -- config.tests/symbian/audio/audio.cpp | 47 ---------------------------------- config.tests/symbian/audio/audio.pro | 10 -------- config.tests/symbian/compile.test | 46 --------------------------------- config.tests/symbian/simple/main.cpp | 46 --------------------------------- config.tests/symbian/simple/simple.pro | 5 ---- 6 files changed, 156 deletions(-) delete mode 100644 config.tests/symbian/audio/.gitignore delete mode 100644 config.tests/symbian/audio/audio.cpp delete mode 100644 config.tests/symbian/audio/audio.pro delete mode 100755 config.tests/symbian/compile.test delete mode 100644 config.tests/symbian/simple/main.cpp delete mode 100644 config.tests/symbian/simple/simple.pro (limited to 'config.tests') diff --git a/config.tests/symbian/audio/.gitignore b/config.tests/symbian/audio/.gitignore deleted file mode 100644 index 87a251c68a..0000000000 --- a/config.tests/symbian/audio/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -audio.rpp -audio.rsg diff --git a/config.tests/symbian/audio/audio.cpp b/config.tests/symbian/audio/audio.cpp deleted file mode 100644 index 84f9b3a405..0000000000 --- a/config.tests/symbian/audio/audio.cpp +++ /dev/null @@ -1,47 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the config.tests of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL$ -** GNU Lesser General Public License Usage -** This file may be used under the terms of the GNU Lesser General Public -** License version 2.1 as published by the Free Software Foundation and -** appearing in the file LICENSE.LGPL included in the packaging of this -** file. Please review the following information to ensure the GNU Lesser -** General Public License version 2.1 requirements will be met: -** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU General -** Public License version 3.0 as published by the Free Software Foundation -** and appearing in the file LICENSE.GPL included in the packaging of this -** file. Please review the following information to ensure the GNU General -** Public License version 3.0 requirements will be met: -** http://www.gnu.org/copyleft/gpl.html. -** -** Other Usage -** Alternatively, this file may be used in accordance with the terms and -** conditions contained in a signed written agreement between you and Nokia. -** -** -** -** -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include - -int main(int argc, char **argv) -{ - return 0; -} diff --git a/config.tests/symbian/audio/audio.pro b/config.tests/symbian/audio/audio.pro deleted file mode 100644 index b496341a36..0000000000 --- a/config.tests/symbian/audio/audio.pro +++ /dev/null @@ -1,10 +0,0 @@ -TARGET = audio -SOURCES = audio.cpp - -INCLUDEPATH += $${EPOCROOT}epoc32/include/mmf/server -INCLUDEPATH += $${EPOCROOT}epoc32/include/mmf/common -INCLUDEPATH += $${EPOCROOT}epoc32/include/platform - -LIBS += -lmmfdevsound -CONFIG -= qt -QT = diff --git a/config.tests/symbian/compile.test b/config.tests/symbian/compile.test deleted file mode 100755 index ab858191f7..0000000000 --- a/config.tests/symbian/compile.test +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh - -SUCCESS=no -QMKSPEC=$1 -XPLATFORM=`basename "$1"` -QMAKE_CONFIG=$2 -VERBOSE=$3 -SRCDIR=$4 -OUTDIR=$5 -TEST=$6 -EXE=`basename "$6"` -DESCRIPTION=$7 -shift 7 -LFLAGS="" -INCLUDEPATH="" -CXXFLAGS="" -MAC_ARCH_CXXFLAGS="" -MAC_ARCH_LFLAGS="" - -# debuggery -[ "$VERBOSE" = "yes" ] && echo "$DESCRIPTION auto-detection... ($*)" - -test -d "$OUTDIR/$TEST" || mkdir -p "$OUTDIR/$TEST" - -cd "$OUTDIR/$TEST" - -test -r Makefile && $MAKE distclean >/dev/null 2>&1 - -"$OUTDIR/bin/qmake" -nocache -spec "$QMKSPEC" "CONFIG+=$QMAKE_CONFIG" "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" - -if [ "$VERBOSE" = "yes" ]; then - $MAKE -else - $MAKE >/dev/null 2>&1 -fi - -[ -x "$EXE.exe" ] && SUCCESS=yes - -# done -if [ "$SUCCESS" != "yes" ]; then - [ "$VERBOSE" = "yes" ] && echo "$DESCRIPTION disabled." - exit 1 -else - [ "$VERBOSE" = "yes" ] && echo "$DESCRIPTION enabled." - exit 0 -fi diff --git a/config.tests/symbian/simple/main.cpp b/config.tests/symbian/simple/main.cpp deleted file mode 100644 index 78277a96ed..0000000000 --- a/config.tests/symbian/simple/main.cpp +++ /dev/null @@ -1,46 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the config.tests of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL$ -** GNU Lesser General Public License Usage -** This file may be used under the terms of the GNU Lesser General Public -** License version 2.1 as published by the Free Software Foundation and -** appearing in the file LICENSE.LGPL included in the packaging of this -** file. Please review the following information to ensure the GNU Lesser -** General Public License version 2.1 requirements will be met: -** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU General -** Public License version 3.0 as published by the Free Software Foundation -** and appearing in the file LICENSE.GPL included in the packaging of this -** file. Please review the following information to ensure the GNU General -** Public License version 3.0 requirements will be met: -** http://www.gnu.org/copyleft/gpl.html. -** -** Other Usage -** Alternatively, this file may be used in accordance with the terms and -** conditions contained in a signed written agreement between you and Nokia. -** -** -** -** -** -** $QT_END_LICENSE$ -** -****************************************************************************/ -#include - -int main(int, char **) { - printf("test\n"); - return 0; -} diff --git a/config.tests/symbian/simple/simple.pro b/config.tests/symbian/simple/simple.pro deleted file mode 100644 index 9c60d622f2..0000000000 --- a/config.tests/symbian/simple/simple.pro +++ /dev/null @@ -1,5 +0,0 @@ -TEMPLATE = app -CONFIG -= qt -QT = -SOURCES += main.cpp - -- cgit v1.2.3