qt5base-lts/config.profiles/harmattan/configure-pulse.sh
Jyri Tahtela f9f395c28b Update licenseheader text in source files for qtbase Qt module
Updated version of LGPL and FDL licenseheaders.
Apply release phase licenseheaders for all source files.

Reviewed-by: Trust Me
2011-05-24 12:34:08 +03:00

123 lines
4.3 KiB
Bash
Executable File

#/bin/sh
#############################################################################
##
## Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
## All rights reserved.
## Contact: Nokia Corporation (qt-info@nokia.com)
##
## This file is the build configuration utility 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$
##
#############################################################################
# Fail on error
set -e
# We will assume that if TOOLCHAIN_PATH is not set, that other required actions have not been done either
# so advise the user - N.B.: PATH & PKG_CONFIG_PATH may already be set to system values so we can't
# simply check for them being unset.
if [ -z "$TOOLCHAIN_PATH" ]; then
echo
echo "TOOLCHAIN_PATH must be set to the path of the columbus toolchain, e.g.:" 1>&2
echo " export TOOLCHAIN_PATH=/opt/toolchains/columbus/cs2007q3-glibc2.5-arm7" 1>&2
echo "PATH should have the path to toolchain's bin dir at beginning, e.g.:" 1>&2
echo " export PATH=\$TOOLCHAIN_PATH/bin:\$PATH" 1>&2
echo "PKG_CONFIG_PREFIX should have the prefix for pkg config, e.g.:" 1>&2
echo " export PKG_CONFIG_PREFIX=\$TOOLCHAIN_PATH/arm-none-linux-gnueabi" 1>&2
echo "PKG_CONFIG_PATH must be set to the path(s) to pkg config .pc file location(s), e.g.:" 1>&2
echo " export PKG_CONFIG_PATH=\$PKG_CONFIG_PREFIX/libc/lib/pkgconfig:\$PKG_CONFIG_PREFIX/libc/usr/lib/pkgconfig" 1>&2
echo
exit 1
fi
# We assume the current dir is the depot and we are not shadow building
# Blast the mkspec we use, if it exists, and copy it out of debian dir
rm -rf mkspecs/linux-g++-cross
cp -a debian/mkspecs/linux-g++-cross mkspecs/
# maemo does the next two lines, no idea why, left them for referance
# rm -rf mkspecs/glibc-g++
# cp -a mkspecs/linux-g++ mkspecs/glibc-g++
# Run configure - we take extra arguments if given
exec ./configure -nokia-developer \
-prefix "/usr" \
-bindir "/usr/bin" \
-libdir "/usr/lib" \
-docdir "/usr/share/qt4/doc" \
-headerdir "/usr/include/qt4" \
-datadir "/usr/share/qt4" \
-plugindir "/usr/lib/qt4/plugins" \
-translationdir "/usr/share/qt4/translations" \
-sysconfdir "/etc/xdg" \
-arch arm \
-xplatform linux-g++-cross \
-fast \
-mitshm \
-no-optimized-qmake \
-reduce-relocations \
-no-separate-debug-info \
-system-zlib \
-system-libtiff \
-system-libpng \
-system-libjpeg \
-no-nas-sound \
-qt-gif \
-no-qt3support \
-no-libmng \
-opengl es2 \
-no-accessibility \
-nomake examples \
-nomake demos \
-little-endian \
-I${TOOLCHAIN_PATH}/libc/usr/include/freetype2 \
-lfontconfig \
-no-cups \
-no-gtkstyle \
-exceptions \
-no-xinerama \
-dbus \
-glib \
-no-pch \
-gstreamer \
-svg \
-webkit \
-no-sql-ibase \
-xmlpatterns \
-system-sqlite \
-plugin-sql-sqlite \
-openssl \
-DQT_QLOCALE_USES_FCVT \
"$@"
# End of Script