2 #############################################################################
4 ## Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
5 ## Contact: http://www.qt-project.org/
7 ## This file is the build configuration utility of the Qt Toolkit.
9 ## $QT_BEGIN_LICENSE:LGPL$
10 ## GNU Lesser General Public License Usage
11 ## This file may be used under the terms of the GNU Lesser General Public
12 ## License version 2.1 as published by the Free Software Foundation and
13 ## appearing in the file LICENSE.LGPL included in the packaging of this
14 ## file. Please review the following information to ensure the GNU Lesser
15 ## General Public License version 2.1 requirements will be met:
16 ## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 ## In addition, as a special exception, Nokia gives you certain additional
19 ## rights. These rights are described in the Nokia Qt LGPL Exception
20 ## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 ## GNU General Public License Usage
23 ## Alternatively, this file may be used under the terms of the GNU General
24 ## Public License version 3.0 as published by the Free Software Foundation
25 ## and appearing in the file LICENSE.GPL included in the packaging of this
26 ## file. Please review the following information to ensure the GNU General
27 ## Public License version 3.0 requirements will be met:
28 ## http://www.gnu.org/copyleft/gpl.html.
31 ## Alternatively, this file may be used in accordance with the terms and
32 ## conditions contained in a signed written agreement between you and Nokia.
41 #############################################################################
43 #-------------------------------------------------------------------------------
44 # script initialization
45 #-------------------------------------------------------------------------------
47 # the name of this script
49 # the directory of this script is the "source tree"
51 relpath=`(cd "$relpath"; /bin/pwd)`
52 # the current directory is the "build tree" or "object tree"
55 #license file location
56 LICENSE_FILE="$QT_LICENSE_FILE"
57 [ -z "$LICENSE_FILE" ] && LICENSE_FILE="$HOME/.qt-license"
58 if [ -f "$LICENSE_FILE" ]; then
59 tr -d '\r' <"$LICENSE_FILE" >"${LICENSE_FILE}.tmp"
60 diff "${LICENSE_FILE}.tmp" "${LICENSE_FILE}" >/dev/null 2>&1 || LICENSE_FILE="${LICENSE_FILE}.tmp"
63 # later cache the command line in config.status
64 OPT_CMDLINE=`echo $@ | sed "s,-v ,,g; s,-v$,,g"`
66 # initialize global variables
73 QMAKE_VARS_FILE=.qmake.vars
74 DEVICE_VARS_FILE=.device.vars
77 :> "$DEVICE_VARS_FILE"
79 #-------------------------------------------------------------------------------
81 #-------------------------------------------------------------------------------
85 echo "$@" | sed 's/ /\ /g'
88 # Adds a new qmake variable to the cache
89 # Usage: QMakeVar mode varname contents
90 # where mode is one of: set, add, del
104 echo >&2 "BUG: wrong command to QMakeVar: $1"
108 echo "$2" "$eq" "$3" >> "$QMAKE_VARS_FILE"
111 shellArgumentListToQMakeListHelper()
114 for arg in "$@"; do retval="$retval \"$arg\""; done
118 # Convert a string usable on a shell command line into word-by-word quoted
120 shellArgumentListToQMakeList()
122 # eval is needed for the shell to interpret the backslash escape sequences
123 eval shellArgumentListToQMakeListHelper "$@"
126 # Helper function for getQMakeConf. It parses include statements in
127 # qmake.conf and prints out the expanded file
130 while read line; do case "$line" in
132 inc_file=`echo "$line" | sed -n -e "/^include.*(.*)/s/include.*(\(.*\)).*$/\1/p"`
133 current_dir=`dirname "$1"`
134 conf_file="$current_dir/$inc_file"
135 if [ ! -f "$conf_file" ]; then
136 echo "WARNING: Unable to find file $conf_file" >&2
139 getQMakeConf1 "$conf_file"
141 *load\(device_config\)*)
142 conf_file="$DEVICE_VARS_FILE"
143 if [ ! -f "$conf_file" ]; then
144 echo "WARNING: Unable to find file $conf_file" >&2
147 getQMakeConf1 "$conf_file"
159 values["LITERAL_WHITESPACE"] = " "
160 values["LITERAL_DOLLAR"] = "$"
162 /^[_A-Z0-9.]+[ \t]*\+?=/ {
163 valStart = index($0, "=") + 1
166 if (substr($0, valStart - 2, 1) == "+") {
170 variable = substr($0, 0, valStart - 2 - append)
171 value = substr($0, valStart)
172 gsub("[ \t]+", "", variable)
173 gsub("^[ \t]+", "", value)
174 gsub("[ \t]+$", "", value)
177 while (match(value, /\$\$(\{[_A-Z0-9.]+\}|[_A-Z0-9.]+)/)) {
178 ovalue = ovalue substr(value, 1, RSTART - 1)
179 var = substr(value, RSTART + 2, RLENGTH - 2)
180 value = substr(value, RSTART + RLENGTH)
182 var = substr(var, 2, length(var) - 2)
184 ovalue = ovalue values[var]
186 ovalue = ovalue value
188 combinedValue = values[variable]
189 if (append == 1 && length(combinedValue) > 0) {
190 combinedValue = combinedValue " " ovalue
192 combinedValue = ovalue
194 values[variable] = combinedValue
197 for (var in values) {
198 print var "=" values[var]
206 echo "$2" | $AWK "/^($1)=/ { print substr(\$0, index(\$0, \"=\") + 1) }"
209 # relies on $QMAKESPEC being set correctly. parses include statements in
210 # qmake.conf and prints out the expanded file
213 if [ -z "$specvals" ]; then
214 specvals=`getQMakeConf1 "$QMAKESPEC/qmake.conf" | getQMakeConf2`
216 getQMakeConf3 "$1" "$specvals"
221 if [ -z "$xspecvals" ]; then
222 xspecvals=`getQMakeConf1 "$XQMAKESPEC/qmake.conf" | getQMakeConf2`
224 getQMakeConf3 "$1" "$xspecvals"
227 # relies on $TEST_COMPILER being set correctly
228 compilerSupportsFlag()
230 cat >conftest.cpp <<EOF
231 int main() { return 0; }
233 "$TEST_COMPILER" "$@" -o conftest.o conftest.cpp
235 rm -f conftest.cpp conftest.o
239 # relies on $TEST_COMPILER being set correctly
245 safe_flag=`shellEscape "$flag"`
246 lflags=$lflags,$safe_flag
248 compilerSupportsFlag "$lflags" >/dev/null 2>&1
251 #-------------------------------------------------------------------------------
253 #-------------------------------------------------------------------------------
261 echo >&2 "BUG: wrong command to QMakeVar: $1"
265 echo "$2" "$eq" "$3" >> "$DEVICE_VARS_FILE"
268 resolveDeviceMkspec()
270 result=$(find "$relpath/mkspecs/devices/" -type d -name "*$1*" | sed "s,^$relpath/mkspecs/,,")
271 match_count=$(echo "$result" | wc -w)
272 if [ "$match_count" -gt 1 ]; then
273 echo >&2 "Error: Multiple matches for device '$1'. Candidates are:"
274 tabbed_result=$(echo "$result" | sed "s,^, ,")
275 echo >&2 "$tabbed_result"
277 elif [ "$match_count" -eq 0 ]; then
278 echo >&2 "Error: No device matching '$1'"
285 #-------------------------------------------------------------------------------
286 # operating system detection
287 #-------------------------------------------------------------------------------
289 # need that throughout the script
290 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
291 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
292 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
293 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
295 # detect the "echo without newline" style. usage: echo $ECHO_N "<string>$ECHO_C"
296 if echo '\c' | grep '\c' >/dev/null; then
302 #-------------------------------------------------------------------------------
303 # window system detection
304 #-------------------------------------------------------------------------------
308 if [ -d /System/Library/Frameworks/Carbon.framework ]; then
313 #-----------------------------------------------------------------------------
314 # Qt version detection
315 #-----------------------------------------------------------------------------
316 QT_VERSION=`grep '^# *define *QT_VERSION_STR' "$relpath"/src/corelib/global/qglobal.h`
320 if [ -n "$QT_VERSION" ]; then
321 QT_VERSION=`echo $QT_VERSION | sed 's,^# *define *QT_VERSION_STR *"*\([^ ]*\)"$,\1,'`
322 MAJOR=`echo $QT_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\1,'`
323 if [ -n "$MAJOR" ]; then
324 MINOR=`echo $QT_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\2,'`
325 PATCH=`echo $QT_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\3,'`
326 QT_MAJOR_VERSION="$MAJOR"
327 [ -z "$MINOR" ] || QT_MINOR_VERSION="$MINOR"
328 [ -z "$PATCH" ] || QT_PATCH_VERSION="$PATCH"
331 if [ -z "$QT_MAJOR_VERSION" ]; then
332 echo "Cannot process version from qglobal.h: $QT_VERSION"
333 echo "Cannot proceed."
337 QT_PACKAGEDATE=`grep '^# *define *QT_PACKAGEDATE_STR' "$relpath"/src/corelib/global/qglobal.h | sed -e 's,^# *define *QT_PACKAGEDATE_STR *"\([^ ]*\)"$,\1,' -e s,-,,g`
338 if [ -z "$QT_PACKAGEDATE" ]; then
339 echo "Unable to determine package date from qglobal.h: '$QT_PACKAGEDATE'"
340 echo "Cannot proceed"
344 #-------------------------------------------------------------------------------
346 #-------------------------------------------------------------------------------
350 EditionString=Commercial
354 # parse the arguments, setting things to "yes" or "no"
355 while [ "$#" -gt 0 ]; do
359 #Autoconf style options
361 VAR=`echo $1 | sed "s,^--enable-\(.*\),\1,"`
365 VAR=`echo $1 | sed "s,^--disable-\(.*\),\1,"`
369 VAR=`echo $1 | sed "s,^--\(.*\)=.*,\1,"`
370 VAL=`echo $1 | sed "s,^--.*=\(.*\),\1,"`
373 VAR=`echo $1 | sed "s,^--no-\(.*\),\1,"`
376 -h|help|--help|-help)
377 if [ "$VAL" = "yes" ]; then
379 COMMERCIAL_USER="no" #doesn't matter we will display the help
382 COMMERCIAL_USER="no" #doesn't matter we will display the help
386 VAR=`echo $1 | sed "s,^--\(.*\),\1,"`
390 VAR=`echo $1 | sed "s,^-\(.*\),\1,"`
397 if [ "$UNKNOWN_ARG" = "yes" ]; then
409 COMMERCIAL_USER="yes"
423 if [ "$COMMERCIAL_USER" = "ask" ]; then
425 echo "Which edition of Qt do you want to use ?"
427 echo "Type 'c' if you want to use the Commercial Edition."
428 echo "Type 'o' if you want to use the Open Source Edition."
432 if [ "$commercial" = "c" ]; then
433 COMMERCIAL_USER="yes"
435 elif [ "$commercial" = "o" ]; then
442 if [ -f "$relpath"/LICENSE.PREVIEW.COMMERCIAL ] && [ $COMMERCIAL_USER = "yes" ]; then
443 # Commercial preview release
444 [ "$PLATFORM_MAC" = "maybe" ] && PLATFORM_MAC=yes
447 QT_EDITION="QT_EDITION_DESKTOP"
448 LicenseType="Technology Preview"
449 elif [ $COMMERCIAL_USER = "yes" ]; then
450 # one of commercial editions
451 [ "$PLATFORM_MAC" = "maybe" ] && PLATFORM_MAC=yes
453 # read in the license file
454 if [ -f "$LICENSE_FILE" ]; then
455 . "$LICENSE_FILE" >/dev/null 2>&1
456 if [ -z "$LicenseKeyExt" ]; then
458 echo "You are using an old license file."
460 echo "Please install the license file supplied by Nokia,"
461 echo "or install the Qt Open Source Edition if you intend to"
462 echo "develop free software."
465 if [ -z "$Licensee" ]; then
467 echo "Invalid license key. Please check the license key."
471 if [ -z "$LicenseKeyExt" ]; then
473 echo $ECHO_N "Please enter your license key: $ECHO_C"
475 Licensee="Unknown user"
480 echo "$LicenseKeyExt" | grep ".....*-....*-....*-....*-.....*-.....*-...." >/dev/null 2>&1 \
481 && LicenseValid="yes" \
483 if [ "$LicenseValid" != "yes" ]; then
485 echo "Invalid license key. Please check the license key."
488 ProductCode=`echo $LicenseKeyExt | cut -f 1 -d - | cut -b 1`
489 PlatformCode=`echo $LicenseKeyExt | cut -f 2 -d -`
490 LicenseTypeCode=`echo $LicenseKeyExt | cut -f 3 -d -`
491 LicenseFeatureCode=`echo $LicenseKeyExt | cut -f 4 -d - | cut -b 1`
493 # determine which edition we are licensed to use
494 case "$LicenseTypeCode" in
496 LicenseType="Commercial"
500 QT_EDITION="QT_EDITION_UNIVERSAL"
503 Edition="FullFramework"
504 EditionString="Full Framework"
505 QT_EDITION="QT_EDITION_DESKTOP"
508 Edition="GUIFramework"
509 EditionString="GUI Framework"
510 QT_EDITION="QT_EDITION_DESKTOPLIGHT"
515 LicenseType="Evaluation"
516 QMakeVar add DEFINES QT_EVAL
520 QT_EDITION="QT_EDITION_EVALUATION"
525 if [ -z "$LicenseType" -o -z "$Edition" -o -z "$QT_EDITION" ]; then
527 echo "Invalid license key. Please check the license key."
531 # verify that we are licensed to use Qt on this platform
533 case "$PlatformCode" in
536 PlatformCode=`echo "$PlatformCode" | sed 'h;y/8NPQRTZ/UCWX9M7/;x;G;s/\(.\)....\(.\)./\1\2/'`
540 PlatformCode=`echo "$PlatformCode" | sed 's/.$//'`
543 ### EMBEDDED_QPA logic missing ###
544 case "$PlatformCode,$PLATFORM_MAC" in
545 X9,* | XC,* | XU,* | XW,* | XM,*)
547 LICENSE_EXTENSION="-ALLOS"
549 8M,* | KM,* | S9,* | SC,* | SM,* | SU,* | SW,* | X9,* | XC,* | XU,* | XW,*)
550 # Qt for Embedded Linux
551 LICENSE_EXTENSION="-EMBEDDED"
553 6M,* | N7,* | N9,* | NX,*)
555 LICENSE_EXTENSION="-EMBEDDED"
557 FM,* | LM,yes | ZM,no)
559 LICENSE_EXTENSION="-DESKTOP"
563 [ "$PLATFORM_MAC" = "yes" ] && Platform='Mac OS X'
565 echo "You are not licensed for the $Platform platform."
567 echo "Please contact qt-info@nokia.com to upgrade your license to"
568 echo "include the $Platform platform, or install the Qt Open Source Edition"
569 echo "if you intend to develop free software."
574 if test -r "$relpath/.LICENSE"; then
575 # Generic, non-final license
577 line=`sed 'y/a-z/A-Z/;q' "$relpath"/.LICENSE`
582 *TECHNOLOGY?PREVIEW*)
589 echo >&2 "Invalid license files; cannot continue"
594 EditionString="$Edition"
595 QT_EDITION="QT_EDITION_DESKTOP"
598 case "$LicenseFeatureCode" in
601 case "$LicenseType" in
603 cp -f "$relpath/.LICENSE${LICENSE_EXTENSION}-US" "$outpath/LICENSE"
606 cp -f "$relpath/.LICENSE-EVALUATION-US" "$outpath/LICENSE"
612 case "$LicenseType" in
614 cp -f "$relpath/.LICENSE${LICENSE_EXTENSION}" "$outpath/LICENSE"
617 cp -f "$relpath/.LICENSE-EVALUATION" "$outpath/LICENSE"
623 echo "Invalid license key. Please check the license key."
627 case "$LicenseFeatureCode" in
635 if [ '!' -f "$outpath/LICENSE" ]; then
636 echo "The LICENSE, LICENSE.GPL3 LICENSE.LGPL file shipped with"
637 echo "this software has disappeared."
639 echo "Sorry, you are not licensed to use this software."
640 echo "Try re-installing."
644 elif [ $COMMERCIAL_USER = "no" ]; then
645 # Open Source edition - may only be used under the terms of the GPL or LGPL.
646 [ "$PLATFORM_MAC" = "maybe" ] && PLATFORM_MAC=yes
647 Licensee="Open Source"
649 EditionString="Open Source"
650 QT_EDITION="QT_EDITION_OPENSOURCE"
653 #-------------------------------------------------------------------------------
654 # initalize variables
655 #-------------------------------------------------------------------------------
657 SYSTEM_VARIABLES="RANLIB STRIP OBJDUMP LD CC CXX CFLAGS CXXFLAGS LDFLAGS"
658 for varname in $SYSTEM_VARIABLES; do
659 qmakevarname="${varname}"
660 # use LDFLAGS for autoconf compat, but qmake uses QMAKE_LFLAGS
661 if [ "${varname}" = "LDFLAGS" ]; then
662 qmakevarname="LFLAGS"
663 elif [ "${varname}" = "LD" ]; then
667 'if [ -n "\$'${varname}'" ]; then
668 QMakeVar set QMAKE_'${qmakevarname}' "\$'${varname}'"
672 # Use CC/CXX to run config.tests
673 mkdir -p "$outpath/config.tests"
674 rm -f "$outpath/config.tests/.qmake.cache"
675 cp "$QMAKE_VARS_FILE" "$outpath/config.tests/.qmake.cache"
677 QMakeVar add styles "cde mac motif plastique cleanlooks windows"
679 # QTDIR may be set and point to an old or system-wide Qt installation
682 # the minimum version of libdbus-1 that we require:
683 MIN_DBUS_1_VERSION=0.93
685 # initalize internal variables
686 CFG_CONFIGURE_EXIT_ON_ERROR=yes
688 CFG_GUI=auto # (yes|no|auto)
694 CFG_FORCEDEBUGINFO=no
715 CFG_OPENVG_LC_INCLUDES=no
716 CFG_OPENVG_SHIVA=auto
717 CFG_OPENVG_ON_OPENGL=auto
723 QT_DEFAULT_BUILD_PARTS="libs tools examples"
727 CFG_AUDIO_BACKEND=auto
730 CFG_JAVASCRIPTCORE_JIT=auto
733 # Target architecture
736 # Host architecture, same as CFG_ARCH when not cross-compiling
738 CFG_HOST_CPUFEATURES=
739 # Set when the -arch or -host-arch arguments are used
740 OPT_OBSOLETE_HOST_ARG=no
754 CFG_OBSOLETE_WAYLAND=no
766 CFG_SEPARATE_DEBUG_INFO=no
767 CFG_SEPARATE_DEBUG_INFO_NOCOPY=no
768 CFG_REDUCE_EXPORTS=auto
776 CFG_REDUCE_RELOCATIONS=auto
777 CFG_ACCESSIBILITY=auto
782 CFG_CLOCK_GETTIME=auto
783 CFG_CLOCK_MONOTONIC=auto
791 MAC_CONFIG_TEST_COMMANDLINE= # used to make the configure tests run with the correct arch's and SDK settings
793 CFG_PREFIX_INSTALL=yes
802 XPLATFORM= # This seems to be the QMAKESPEC, like "linux-g++"
803 XPLATFORM_MINGW=no # Whether target platform is MinGW (win32-g++*)
808 OPT_CONFIRM_LICENSE=no
821 QPA_PLATFORM_GUARD=yes
824 # initalize variables used for installation
833 QT_INSTALL_TRANSLATIONS=
838 CFG_GCC_SYSROOT="yes"
843 #flags for SQL drivers
851 QT_LFLAGS_ODBC="-lodbc"
854 # flags for libdbus-1
858 # flags for Glib (X11 only)
862 # flags for GStreamer (X11 only)
866 # default qpa platform
867 QT_QPA_DEFAULT_PLATFORM=
869 #-------------------------------------------------------------------------------
870 # check SQL drivers available in this package
871 #-------------------------------------------------------------------------------
873 # opensource version removes some drivers, so force them to be off
879 if [ -d "$relpath/src/plugins/sqldrivers" ]; then
880 for a in "$relpath/src/plugins/sqldrivers/"*; do
882 base_a=`basename "$a"`
883 CFG_SQL_AVAILABLE="${CFG_SQL_AVAILABLE} ${base_a}"
884 eval "CFG_SQL_${base_a}=auto"
889 CFG_IMAGEFORMAT_PLUGIN_AVAILABLE=
890 if [ -d "$relpath/src/plugins/imageformats" ]; then
891 for a in "$relpath/src/plugins/imageformats/"*; do
893 base_a=`basename "$a"`
894 CFG_IMAGEFORMAT_PLUGIN_AVAILABLE="${CFG_IMAGEFORMAT_PLUGIN_AVAILABLE} ${base_a}"
899 #-------------------------------------------------------------------------------
900 # parse command line arguments
901 #-------------------------------------------------------------------------------
903 # parse the arguments, setting things to "yes" or "no"
904 while [ "$#" -gt 0 ]; do
908 #Autoconf style options
910 VAR=`echo $1 | sed "s,^--enable-\(.*\),\1,"`
914 VAR=`echo $1 | sed "s,^--disable-\(.*\),\1,"`
918 VAR=`echo $1 | sed "s,^--\(.*\)=.*,\1,"`
919 VAL=`echo $1 | sed "s,^--.*=\(.*\),\1,"`
922 VAR=`echo $1 | sed "s,^--no-\(.*\),\1,"`
926 VAR=`echo $1 | sed "s,^--\(.*\),\1,"`
930 -no-*-*|-plugin-*-*|-qt-*-*)
931 VAR=`echo $1 | sed "s,^-[^-]*-\(.*\),\1,"`
932 VAL=`echo $1 | sed "s,^-\([^-]*\).*,\1,"`
936 VAR=`echo $1 | sed "s,^-no-\(.*\),\1,"`
939 #Qt style options that pass an argument
940 -prefix|-docdir|-headerdir|-plugindir|-importdir|-datadir|-libdir|-bindir|-translationdir|-sysconfdir|-examplesdir|-testsdir|-depths|-make|-nomake|-platform|-xplatform|-device|-device-option|-sdk|-arch|-host-arch|-mysql_config|-sysroot|-hostdatadir|-hostbindir|-qpa|-qconfig)
941 VAR=`echo $1 | sed "s,^-\(.*\),\1,"`
945 #Qt style complex options in one command
946 -enable-*|-disable-*)
947 VAR=`echo $1 | sed "s,^-\([^-]*\)-.*,\1,"`
948 VAL=`echo $1 | sed "s,^-[^-]*-\(.*\),\1,"`
950 #Qt Builtin/System style options
951 -no-*|-system-*|-qt-*)
952 VAR=`echo $1 | sed "s,^-[^-]*-\(.*\),\1,"`
953 VAL=`echo $1 | sed "s,^-\([^-]*\)-.*,\1,"`
955 #Options that cannot be generalized
962 # this option may or may not be followed by an argument
963 if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then
972 # this option may or may not be followed by an argument
973 if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then
981 VAR=`echo $1 | sed "s,^-\(.*\),\1,"`
982 # this option may or may not be followed by an argument
983 if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then
1002 if [ "$1" = "-D" ]; then
1006 VAL=`echo $1 | sed 's,-D,,'`
1011 # this option may or may not be followed by an argument
1012 if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then
1021 if [ "$1" = "-I" ]; then
1025 VAL=`echo $1 | sed 's,-I,,'`
1030 if [ "$1" = "-L" ]; then
1034 VAL=`echo $1 | sed 's,-L,,'`
1039 if [ "$1" = "-R" ]; then
1043 VAL=`echo $1 | sed 's,-R,,'`
1048 if [ "$1" = "-l" ]; then
1052 VAL=`echo $1 | sed 's,-l,,'`
1057 if [ "$1" = "-F" ]; then
1061 VAL=`echo $1 | sed 's,-F,,'`
1066 if [ "$1" = "-fw" ]; then
1070 VAL=`echo $1 | sed 's,-fw,,'`
1077 #General options, including Qt style yes options
1079 VAR=`echo $1 | sed "s,^-\(.*\),\1,"`
1086 if [ "$UNKNOWN_ARG" = "yes" ]; then
1087 echo "$1: unknown argument"
1098 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1099 CFG_ACCESSIBILITY="$VAL"
1108 CFG_USE_GNUMAKE="$VAL"
1111 CFG_MYSQL_CONFIG="$VAL"
1114 QT_INSTALL_PREFIX="$VAL"
1117 QT_HOST_PREFIX="$VAL"
1126 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1127 CFG_PKGCONFIG="$VAL"
1133 CFG_PKGCONFIG="force"
1136 QT_INSTALL_DOCS="$VAL"
1139 QT_INSTALL_HEADERS="$VAL"
1142 QT_INSTALL_PLUGINS="$VAL"
1145 QT_INSTALL_IMPORTS="$VAL"
1148 QT_INSTALL_DATA="$VAL"
1151 QT_INSTALL_LIBS="$VAL"
1160 QT_INSTALL_TRANSLATIONS="$VAL"
1162 sysconfdir|settingsdir)
1163 QT_INSTALL_SETTINGS="$VAL"
1166 QT_INSTALL_EXAMPLES="$VAL"
1169 QT_INSTALL_TESTS="$VAL"
1178 CFG_GCC_SYSROOT="$VAL"
1181 QT_INSTALL_BINS="$VAL"
1184 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1191 if [ "$VAL" = "auto" ] || [ "$VAL" = "desktop" ] ||
1192 [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] ||
1193 [ "$VAL" = "es2" ]; then
1200 if [ "$VAL" = "auto" ] || [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1207 CFG_NOBUILD_PARTS="$CFG_NOBUILD_PARTS $VAL"
1210 CFG_BUILD_PARTS="$CFG_BUILD_PARTS $VAL"
1213 if [ "$BUILD_ON_MAC" = "yes" ]; then
1220 OPT_OBSOLETE_HOST_ARG=yes
1223 if [ "$BUILD_ON_MAC" = "yes" ] && [ "$VAL" = "yes" ]; then
1224 CFG_MAC_HARFBUZZ="$VAL"
1231 if [ "$BUILD_ON_MAC" = "yes" ]; then
1232 CFG_FRAMEWORK="$VAL"
1238 if [ "$VAL" = "yes" ]; then
1240 QMakeVar add QMAKE_CFLAGS -pg
1241 QMakeVar add QMAKE_CXXFLAGS -pg
1242 QMakeVar add QMAKE_LFLAGS -pg
1243 QMAKE_VARS="$QMAKE_VARS CONFIG+=nostrip"
1249 if [ "$VAL" = "yes" ]; then
1250 QTCONFIG_CONFIG="$QTCONFIG_CONFIG testcocoon"
1255 # keep compatibility with old platform names
1261 PLATFORM=hpux-acc-o64
1264 PLATFORM=hpux-acc-64
1267 PLATFORM=hpux-acc-64
1279 PLATFORM=reliant-cds-64
1282 PLATFORM=solaris-cc-64
1285 PLATFORM=unixware-cc
1288 PLATFORM=unixware-g++
1291 PLATFORM=unixware-cc
1294 PLATFORM=unixware-g++
1300 i386) NATIVE_64_ARCH="x86_64" ;;
1301 powerpc) NATIVE_64_ARCH="ppc64" ;;
1302 *) echo "WARNING: Can't detect CPU architecture for macx-g++-64" ;;
1304 if [ ! -z "$NATIVE_64_ARCH" ]; then
1305 QTCONFIG_CONFIG="$QTCONFIG_CONFIG $NATIVE_64_ARCH"
1312 case `basename "$XPLATFORM"` in win32-g++*) XPLATFORM_MINGW=yes;; esac
1315 XPLATFORM=`resolveDeviceMkspec $VAL`
1316 [ "$XPLATFORM" = "undefined" ] && exit 101
1319 DEV_VAR=`echo $VAL | sed "s,^\(.*\)=.*,\1,"`
1320 DEV_VAL=`echo $VAL | sed "s,^.*=\(.*\),\1,"`
1321 DeviceVar set $DEV_VAR $DEV_VAL
1324 QT_QPA_DEFAULT_PLATFORM="$VAL"
1327 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1328 CFG_DEBUG_RELEASE="$VAL"
1334 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1335 CFG_RELEASE_QMAKE="$VAL"
1341 if [ "$VAL" = "yes" ]; then
1343 elif [ "$VAL" = "no" ]; then
1350 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1351 CFG_PREFIX_INSTALL="$VAL"
1360 CFG_FORCEDEBUGINFO="$VAL"
1362 developer-build|commercial|opensource)
1363 # These switches have been dealt with already
1366 if [ "$VAL" = "yes" ]; then
1368 elif [ "$VAL" = "no" ]; then
1375 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1376 CFG_CONFIGURE_EXIT_ON_ERROR="$VAL"
1382 FEATURE=`echo $VAR | sed "s,^[^-]*-\([^-]*\),\1," | tr 'abcdefghijklmnopqrstuvwxyz-' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`
1383 if [ "$VAL" = "no" ]; then
1384 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_$FEATURE"
1385 elif [ "$VAL" = "yes" ] || [ "$VAL" = "unknown" ]; then
1386 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_$FEATURE"
1392 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1399 if [ "$VAL" = "no" ]; then
1406 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1414 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then
1421 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1428 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1435 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1442 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1449 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then
1456 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1463 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1464 CFG_PRECOMPILE="$VAL"
1469 separate-debug-info)
1470 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1471 CFG_SEPARATE_DEBUG_INFO="$VAL"
1472 elif [ "$VAL" = "nocopy" ] ; then
1473 CFG_SEPARATE_DEBUG_INFO="yes"
1474 CFG_SEPARATE_DEBUG_INFO_NOCOPY="yes"
1480 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1481 CFG_REDUCE_EXPORTS="$VAL"
1487 if [ "$VAL" = "no" ]; then
1494 if [ "$VAL" = "no" ]; then
1501 if [ "$VAL" = "no" ]; then
1508 if [ "$VAL" = "no" ]; then
1515 if [ "$VAL" = "no" ]; then
1522 if [ "$VAL" = "no" ]; then
1529 if [ "$VAL" = "no" ]; then
1539 if [ "$VAL" = "no" ]; then
1546 if [ "$VAL" = "no" ]; then
1553 if [ "$VAL" = "no" ]; then
1554 CFG_MIPS_DSPR2="$VAL"
1560 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1561 CFG_REDUCE_RELOCATIONS="$VAL"
1567 [ "$VAL" = "qt" ] && VAL=yes
1568 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then
1573 # No longer supported:
1574 #[ "$VAL" = "no" ] && CFG_LIBPNG=no
1577 if [ "$VAL" = "system" ]; then
1584 [ "$VAL" = "yes" ] && VAL=qt
1585 if [ "$VAL" = "qt" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then
1592 [ "$VAL" = "yes" ] && VAL=qt
1593 if [ "$VAL" = "qt" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then
1600 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then
1607 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then
1614 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then
1621 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1628 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1635 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1636 CFG_FONTCONFIG="$VAL"
1642 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1649 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1656 CFG_OBSOLETE_WAYLAND=yes
1659 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1666 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1673 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1680 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1687 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1694 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1701 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1708 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1715 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1722 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1723 CFG_GSTREAMER="$VAL"
1729 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1730 CFG_QGTKSTYLE="$VAL"
1736 if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ]; then
1739 if [ "$VAL" = "no" ]; then
1747 if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ]; then
1749 elif [ "$VAL" = "no" ]; then
1756 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1757 QPA_PLATFORM_GUARD="$VAL"
1763 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "linked" ]; then
1765 elif [ "$VAL" = "runtime" ]; then
1772 if [ "$VAL" = "yes" ]; then
1779 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1786 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1787 CFG_LARGEFILE="$VAL"
1793 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1800 if [ "$VAL" = "yes" ]; then
1801 CFG_OPENSSL="linked"
1807 if [ "$VAL" = "yes" ]; then
1810 if [ "$VAL" = "no" ]; then
1818 if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ] || [ "$VAL" = "no" ]; then
1819 CFG_JAVASCRIPTCORE_JIT="$VAL"
1825 if [ "$VAL" = "yes" ]; then
1826 OPT_CONFIRM_LICENSE="$VAL"
1832 if [ "$VAL" = "yes" ]; then
1838 sql-*|imageformat-*)
1839 # if Qt style options were used, $VAL can be "no", "qt", or "plugin"
1840 # if autoconf style options were used, $VAL can be "yes" or "no"
1841 [ "$VAL" = "yes" ] && VAL=qt
1842 # now $VAL should be "no", "qt", or "plugin"... double-check
1843 if [ "$VAL" != "no" ] && [ "$VAL" != "qt" ] && [ "$VAL" != "plugin" ]; then
1846 # now $VAL is "no", "qt", or "plugin"
1848 VAL=`echo $VAR | sed "s,^[^-]*-\([^-]*\).*,\1,"`
1849 VAR=`echo $VAR | sed "s,^\([^-]*\).*,\1,"`
1851 # Grab the available values
1854 avail="$CFG_SQL_AVAILABLE"
1857 avail="$CFG_IMAGEFORMAT_PLUGIN_AVAILABLE"
1858 if [ "$OPT" != "plugin" ]; then
1859 # png is always built in
1865 echo "BUG: Unhandled type $VAR used in $CURRENT_OPT"
1869 # Check that that user's value is available.
1872 if [ "$VAL" = "$d" ]; then
1877 [ "$found" = yes ] || ERROR=yes
1879 if [ "$VAR" = "sql" ]; then
1880 # set the CFG_SQL_driver
1881 eval "CFG_SQL_$VAL=\$OPT"
1883 elif [ "$VAR" = "imageformat" ]; then
1884 [ "$OPT" = "qt" ] && OPT=yes
1885 VAL="`echo $VAL |tr a-z A-Z`"
1886 eval "CFG_$VAL=$OPT"
1890 if [ "$OPT" = "plugin" ] || [ "$OPT" = "qt" ]; then
1891 if [ "$OPT" = "plugin" ]; then
1894 QMakeVar add "${VAR}s" "${VAL}"
1895 elif [ "$OPT" = "no" ]; then
1896 PLUG_VAR="${VAR}-plugin"
1898 QMakeVar del "${IN_VAR}s" "$VAL"
1899 QMakeVar del "${PLUG_VAR}s" "$VAL"
1901 if [ "$ERROR" = "yes" ]; then
1902 echo "$CURRENT_OPT: unknown argument"
1907 if [ "$VAL" = "yes" ]; then
1908 if [ "$OPT_VERBOSE" = "$VAL" ]; then # takes two verboses to turn on qmake debugs
1909 QMAKE_SWITCHES="$QMAKE_SWITCHES -d"
1913 elif [ "$VAL" = "no" ]; then
1914 if [ "$OPT_VERBOSE" = "$VAL" ] && echo "$QMAKE_SWITCHES" | grep ' -d' >/dev/null 2>&1; then
1915 QMAKE_SWITCHES=`echo $QMAKE_SWITCHES | sed "s, -d,,"`
1924 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1931 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1938 DEFINES="$DEFINES \"$VAL\""
1939 D_FLAGS="$D_FLAGS -D\"$VAL\""
1942 I_FLAGS="$I_FLAGS -I\"${VAL}\""
1945 L_FLAGS="$L_FLAGS -L\"${VAL}\""
1948 RPATH_FLAGS="$RPATH_FLAGS \"${VAL}\""
1951 L_FLAGS="$L_FLAGS -l\"${VAL}\""
1954 if [ "$BUILD_ON_MAC" = "yes" ]; then
1955 L_FLAGS="$L_FLAGS -F\"${VAL}\""
1956 I_FLAGS="$I_FLAGS -F\"${VAL}\""
1962 if [ "$BUILD_ON_MAC" = "yes" ]; then
1963 L_FLAGS="$L_FLAGS -framework \"${VAL}\""
1969 W_FLAGS="$W_FLAGS \"${VAL}\""
1984 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1985 CFG_AUDIO_BACKEND="$VAL"
1991 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1998 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1999 CFG_FORCE_ASSERTS="$VAL"
2005 if [ "$VAL" = "qt" ] || [ "$VAL" = "system" ]; then
2012 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
2022 if [ "$UNKNOWN_OPT" = "yes" ]; then
2023 echo "${CURRENT_OPT}: invalid command-line switch"
2029 # update QT_CONFIG to show our current predefined configuration
2030 case "$CFG_QCONFIG" in
2031 minimal|small|medium|large|full)
2032 # these are a sequence of increasing functionality
2033 for c in minimal small medium large full; do
2034 QT_CONFIG="$QT_CONFIG $c-config"
2035 [ "$CFG_QCONFIG" = $c ] && break
2039 # not known to be sufficient for anything
2040 if [ '!' -f "$relpath/src/corelib/global/qconfig-${CFG_QCONFIG}.h" ] && [ '!' -f `"$relpath/config.tests/unix/makeabs" "${CFG_QCONFIG}"` ]; then
2041 echo >&2 "Error: configuration file not found:"
2042 echo >&2 " $relpath/src/corelib/global/qconfig-${CFG_QCONFIG}.h"
2044 echo >&2 " `"$relpath/config.tests/unix/makeabs" "${CFG_QCONFIG}"`"
2049 #-------------------------------------------------------------------------------
2050 # build tree initialization
2051 #-------------------------------------------------------------------------------
2053 # where to find which..
2054 unixtests="$relpath/config.tests/unix"
2055 mactests="$relpath/config.tests/mac"
2056 WHICH="$unixtests/which.test"
2058 PERL=`$WHICH perl 2>/dev/null`
2060 # find out which awk we want to use, prefer gawk, then nawk, then regular awk
2062 for e in gawk nawk awk; do
2063 if "$WHICH" $e >/dev/null 2>&1 && ( $e -f /dev/null /dev/null ) >/dev/null 2>&1; then
2070 PERL="/usr/bin/perl"
2071 if "$WHICH" perl >/dev/null 2>&1 && ( perl /dev/null ) >/dev/null 2>&1; then
2075 ### skip this if the user just needs help...
2076 if [ "$OPT_HELP" != "yes" ]; then
2078 # is this a shadow build?
2079 if [ "$OPT_SHADOW" = "maybe" ]; then
2081 if [ "$relpath" != "$outpath" ] && [ '!' -f "$outpath/configure" ]; then
2082 if [ -h "$outpath" ]; then
2083 [ "$relpath" -ef "$outpath" ] || OPT_SHADOW=yes
2089 if [ "$OPT_SHADOW" = "yes" ]; then
2090 if [ -f "$relpath/.qmake.cache" -o -f "$relpath/src/corelib/global/qconfig.h" -o -f "$relpath/src/corelib/global/qconfig.cpp" ]; then
2091 echo >&2 "You cannot make a shadow build from a source tree containing a previous build."
2092 echo >&2 "Cannot proceed."
2095 [ "$OPT_VERBOSE" = "yes" ] && echo "Performing shadow build..."
2098 if [ "$PLATFORM_MAC" = "no" -a "$CFG_DEBUG_RELEASE" = "yes" ]; then
2100 echo "WARNING: -debug-and-release is not supported outside of Mac OS X."
2101 echo "Qt can be built in release mode with separate debug information, so"
2102 echo "-debug-and-release is not necessary anymore"
2106 if [ "$CFG_SILENT" = "yes" ]; then
2107 QMAKE_CONFIG="$QMAKE_CONFIG silent"
2110 # if the source tree is different from the build tree,
2111 # symlink or copy part of the sources
2112 if [ "$OPT_SHADOW" = "yes" ]; then
2113 echo "Preparing build tree..."
2115 if [ -z "$PERL" ]; then
2117 echo "You need perl in your PATH to make a shadow build."
2118 echo "Cannot proceed."
2122 [ -d "$outpath/bin" ] || mkdir -p "$outpath/bin"
2124 # make a syncqt script that can be used in the shadow
2125 rm -f "$outpath/bin/syncqt"
2126 if [ -x "$relpath/bin/syncqt" ]; then
2127 mkdir -p "$outpath/bin"
2128 echo "#!/bin/sh" >"$outpath/bin/syncqt"
2129 echo "perl \"$relpath/bin/syncqt\" -qtdir \"$outpath\" \"\$@\"" >>"$outpath/bin/syncqt"
2130 chmod 755 "$outpath/bin/syncqt"
2133 for i in elf2e32_qtwrapper createpackage patch_capabilities qtmodule-configtests; do
2134 rm -f "$outpath/bin/$i"
2135 if [ -x "$relpath/bin/$i" ]; then
2136 mkdir -p "$outpath/bin"
2137 echo "#!/bin/sh" >"$outpath/bin/$i"
2138 echo "QTDIR=\"$relpath\"; export QTDIR" >>"$outpath/bin/$i"
2139 echo "\"$relpath/bin/$i\" \"\$@\"" >>"$outpath/bin/$i"
2140 chmod 755 "$outpath/bin/$i"
2144 # save a pre-existing mkspecs/modules dir
2145 test -d "$outpath/mkspecs/modules" && \
2146 mv "$outpath/mkspecs/modules" "$outpath/mkspecs-modules"
2147 # ditto for mkspecs/modules-inst
2148 test -d "$outpath/mkspecs/modules-inst" && \
2149 mv "$outpath/mkspecs/modules-inst" "$outpath/mkspecs-modules-inst"
2151 # symlink the mkspecs directory
2152 mkdir -p "$outpath/mkspecs"
2153 rm -rf "$outpath"/mkspecs/*
2154 ln -s "$relpath"/mkspecs/* "$outpath/mkspecs"
2155 rm -f "$outpath/mkspecs/default"
2159 rm -rf "$outpath/mkspecs/$1"
2160 find "$relpath/mkspecs/$1" -type d | sed "s,^$relpath,$outpath," | xargs mkdir -p
2161 find "$relpath/mkspecs/$1" -type f | sed "s,^$relpath/,," | while read f; do ln -s "$relpath/$f" "$outpath/$f"; done
2164 # Special case for mkspecs/features directory.
2165 # To be able to place .prf files into a shadow build directory,
2166 # we're creating links for files only. The directory structure is reproduced.
2167 ShadowMkspecs features
2169 # The modules dir is special, too.
2170 if test -d "$outpath/mkspecs-modules"; then
2171 rm -rf "$outpath/mkspecs/modules"
2172 mv "$outpath/mkspecs-modules" "$outpath/mkspecs/modules"
2174 ShadowMkspecs modules
2177 # The modules-inst dir is not quite as special, but still.
2178 if test -d "$outpath/mkspecs-modules-inst"; then
2179 rm -rf "$outpath/mkspecs/modules-inst"
2180 mv "$outpath/mkspecs-modules-inst" "$outpath/mkspecs/modules-inst"
2183 # symlink the doc directory
2184 rm -rf "$outpath/doc"
2185 ln -s "$relpath/doc" "$outpath/doc"
2188 # symlink fonts to be able to run application from build directory
2189 if [ ! -d "${outpath}/lib/fonts" ]; then
2190 if [ "$PLATFORM" = "$XPLATFORM" ]; then
2191 mkdir -p "${outpath}/lib"
2192 ln -s "${relpath}/lib/fonts" "${outpath}/lib/fonts"
2196 if [ "$OPT_FAST" = "auto" ]; then
2197 if [ '!' -z "$AWK" ] && [ "$CFG_DEV" = "yes" ]; then
2204 # find a make command
2205 if [ -z "$MAKE" ]; then
2207 for mk in gmake make; do
2208 if "$WHICH" $mk >/dev/null 2>&1; then
2213 if [ -z "$MAKE" ]; then
2214 echo >&2 "You don't seem to have 'make' or 'gmake' in your PATH."
2215 echo >&2 "Cannot proceed."
2218 # export MAKE, we need it later in the config.tests
2224 #-------------------------------------------------------------------------------
2225 # auto-detect all that hasn't been specified in the arguments
2226 #-------------------------------------------------------------------------------
2228 if [ -z "$PLATFORM" ]; then
2230 case "$UNAME_SYSTEM:$UNAME_RELEASE" in
2232 OSX_VERSION=`uname -r | cut -d. -f1`
2233 # Select compiler. Use g++ unless we find a usable Clang version
2235 if [ "$OSX_VERSION" -ge 12 ]; then
2236 # We're on Mountain Lion or above. Use Clang. Don't advertise gcc.
2238 elif [ "$OSX_VERSION" -eq 11 ]; then
2239 # We're on Lion. Check if we have a supported Clang version
2240 case "$(clang -v 2>&1 | grep -Po '(?<=version )\d[\d.]+')" in
2243 PLATFORM_NOTES="\n - Also available for Mac OS X: macx-g++\n"
2250 #PLATFORM=aix-g++-64
2252 #PLATFORM=aix-xlc-64
2254 - Also available for AIX: aix-g++ aix-g++-64 aix-xlc-64
2264 # PLATFORM=dynix-g++
2270 PLATFORM=freebsd-g++
2272 - Also available for FreeBSD: freebsd-icc
2276 PLATFORM=openbsd-g++
2287 #PLATFORM=irix-cc-64
2289 - Also available for IRIX: irix-g++ irix-cc-64
2293 case "$UNAME_MACHINE" in
2295 #PLATFORM=hpuxi-acc-32
2296 PLATFORM=hpuxi-acc-64
2298 - Also available for HP-UXi: hpuxi-acc-32
2304 #PLATFORM=hpux-acc-64
2306 #PLATFORM=hpux-acc-o64
2308 - Also available for HP-UX: hpux-g++ hpux-acc-64 hpux-acc-o64
2317 - Also available for Tru64: tru64-g++
2321 case "$UNAME_MACHINE" in
2323 PLATFORM=linux-g++-64
2330 - Also available for Linux: linux-kcc linux-icc linux-cxx
2334 if [ "$XPLATFORM_MINGW" = "yes" ]; then
2335 PLATFORM="solaris-g++"
2337 #PLATFORM=solaris-g++
2339 #PLATFORM=solaris-cc64
2342 - Also available for Solaris: solaris-g++ solaris-cc-64
2345 ReliantUNIX-*:*|SINIX-*:*)
2346 PLATFORM=reliant-cds
2347 #PLATFORM=reliant-cds-64
2349 - Also available for Reliant UNIX: reliant-cds-64
2359 #PLATFORM=unixware-g++
2360 PLATFORM=unixware-cc
2362 - Also available for OpenUNIX: unixware-g++
2366 #PLATFORM=unixware-g++
2367 PLATFORM=unixware-cc
2369 - Also available for UnixWare: unixware-g++
2376 - Also available for SCO OpenServer: sco-g++
2380 PLATFORM=unixware-g++
2383 PLATFORM=unsupported/qnx-g++
2386 if [ "$OPT_HELP" != "yes" ]; then
2388 echo " The build script does not currently recognize all" >&2
2389 echo " platforms supported by Qt." >&2
2390 echo " Rerun this script with a -platform option listed to" >&2
2391 echo " set the system/compiler combination you use." >&2
2398 [ -z "$XPLATFORM" ] && XPLATFORM="$PLATFORM"
2400 case `basename "$XPLATFORM"` in win32-g++*) XPLATFORM_MINGW=yes;; esac
2401 case "$XPLATFORM" in linux-g++-maemo) XPLATFORM_MAEMO=yes;; esac
2402 case "$XPLATFORM" in *qnx-*|*blackberry-*) XPLATFORM_QNX=yes;; esac
2404 if [ -d "$PLATFORM" ]; then
2405 QMAKESPEC="$PLATFORM"
2407 QMAKESPEC="$relpath/mkspecs/${PLATFORM}"
2409 if [ -d "$XPLATFORM" ]; then
2410 XQMAKESPEC="$XPLATFORM"
2412 XQMAKESPEC="$relpath/mkspecs/${XPLATFORM}"
2414 if [ "$PLATFORM" != "$XPLATFORM" ]; then
2415 QT_CROSS_COMPILE=yes
2416 QMAKE_CONFIG="$QMAKE_CONFIG cross_compile"
2417 QTCONFIG_CONFIG="$QTCONFIG_CONFIG cross_compile"
2420 if [ "$BUILD_ON_MAC" = "yes" ]; then
2421 if [ `basename $QMAKESPEC` = "macx-xcode" ] || [ `basename $XQMAKESPEC` = "macx-xcode" ]; then
2423 echo " Platform 'macx-xcode' should not be used when building Qt/Mac." >&2
2424 echo " Please build Qt/Mac with 'macx-g++', then if you would like to" >&2
2425 echo " use mac-xcode on your application code it can link to a Qt/Mac" >&2
2426 echo " built with 'macx-g++'" >&2
2432 # check specified platforms are supported
2433 if [ '!' -d "$QMAKESPEC" ]; then
2435 echo " The specified system/compiler is not supported:"
2439 echo " Please see the README file for a complete list."
2443 if [ '!' -d "$XQMAKESPEC" ]; then
2445 echo " The specified system/compiler is not supported:"
2449 echo " Please see the README file for a complete list."
2453 if [ '!' -f "${XQMAKESPEC}/qplatformdefs.h" ]; then
2455 echo " The specified system/compiler port is not complete:"
2457 echo " $XQMAKESPEC/qplatformdefs.h"
2459 echo " Please contact qt-info@nokia.com."
2464 if [ "$UNAME_SYSTEM" = "SunOS" ]; then
2465 # Solaris 2.5 and 2.6 have libposix4, which was renamed to librt for Solaris 7 and up
2466 if echo $UNAME_RELEASE | grep "^5\.[5|6]" >/dev/null 2>&1; then
2467 sed -e "s,-lrt,-lposix4," "$XQMAKESPEC/qmake.conf" > "$XQMAKESPEC/qmake.conf.new"
2468 mv "$XQMAKESPEC/qmake.conf.new" "$XQMAKESPEC/qmake.conf"
2472 if [ "$CFG_RTOS_ENABLED" = "no" ]; then
2473 case `basename "$XPLATFORM"` in
2476 echo "You are not licensed for Qt for `basename $XPLATFORM`."
2478 echo "Please contact qt-info@nokia.com to upgrade your license to"
2479 echo "include this platform, or install the Qt Open Source Edition"
2480 echo "if you intend to develop free software."
2486 #-------------------------------------------------------------------------------
2487 # tests that don't need qmake (must be run before displaying help)
2488 #-------------------------------------------------------------------------------
2490 # detect build style
2491 if [ "$CFG_DEBUG" = "auto" ]; then
2492 if [ "$PLATFORM_MAC" = "yes" -o "$XPLATFORM_MINGW" = "yes" ]; then
2493 CFG_DEBUG_RELEASE=yes
2495 elif [ "$CFG_DEV" = "yes" ]; then
2496 CFG_DEBUG_RELEASE=no
2499 CFG_DEBUG_RELEASE=no
2503 if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then
2504 QT_CONFIG="$QT_CONFIG build_all debug_and_release"
2507 if [ "$CFG_FORCEDEBUGINFO" = "yes" ]; then
2508 QT_CONFIG="$QT_CONFIG force_debug_info"
2511 # pass on $CFG_SDK to the configure tests.
2512 if [ '!' -z "$CFG_SDK" ]; then
2513 MAC_CONFIG_TEST_COMMANDLINE="$MAC_CONFIG_TEST_COMMANDLINE -sdk $CFG_SDK"
2516 # find the default framework value
2517 if [ "$BUILD_ON_MAC" = "yes" ]; then
2518 if [ "$CFG_FRAMEWORK" = "auto" ]; then
2519 CFG_FRAMEWORK="$CFG_SHARED"
2520 elif [ "$CFG_FRAMEWORK" = "yes" ] && [ "$CFG_SHARED" = "no" ]; then
2522 echo "WARNING: Using static linking will disable the use of Mac frameworks."
2530 QMAKE_CONF_COMPILER=`getXQMakeConf QMAKE_CXX`
2532 TEST_COMPILER=$QMAKE_CONF_COMPILER
2533 if [ "$XPLATFORM_SYMBIAN_SBSV2" = "no" ]; then
2534 if [ -z "$TEST_COMPILER" ]; then
2535 echo "ERROR: Cannot set the compiler for the configuration tests"
2541 case "$TEST_COMPILER" in *g++) GCC_MACHINE_DUMP=$($TEST_COMPILER -dumpmachine);; esac
2542 if [ -n "$GCC_MACHINE_DUMP" ]; then
2543 DeviceVar set GCC_MACHINE_DUMP $($TEST_COMPILER -dumpmachine)
2546 if [ -n "$CFG_SYSROOT" ] && [ "$CFG_GCC_SYSROOT" = "yes" ]; then
2547 SYSROOT_FLAG="--sysroot=$CFG_SYSROOT"
2551 export SYSROOT_FLAG # used by config.tests/unix/{compile.test,arch.test}
2553 # auto-detect precompiled header support
2554 if [ "$CFG_PRECOMPILE" = "auto" ]; then
2555 if "$unixtests/precomp.test" "$TEST_COMPILER" "$OPT_VERBOSE"; then
2562 # auto-detect support for separate debug info in objcopy
2563 if [ "$CFG_SEPARATE_DEBUG_INFO" != "no" ] && [ "$CFG_SHARED" = "yes" ]; then
2564 TEST_COMPILER_CXXFLAGS=`getXQMakeConf QMAKE_CXXFLAGS`
2565 TEST_OBJCOPY=`getXQMakeConf QMAKE_OBJCOPY`
2566 COMPILER_WITH_FLAGS="$TEST_COMPILER $TEST_COMPILER_CXXFLAGS"
2567 if "$unixtests/objcopy.test" "$COMPILER_WITH_FLAGS" "$TEST_OBJCOPY" "$OPT_VERBOSE"; then
2568 CFG_SEPARATE_DEBUG_INFO=no
2572 # binutils on HP-UX is buggy; default to no.
2573 CFG_SEPARATE_DEBUG_INFO=no
2576 CFG_SEPARATE_DEBUG_INFO=yes
2582 # auto-detect -fvisibility support
2583 if [ "$CFG_REDUCE_EXPORTS" != "no" ]; then
2584 if "$unixtests/fvisibility.test" "$TEST_COMPILER" "$OPT_VERBOSE"; then
2585 if [ "$CFG_REDUCE_EXPORTS" = "yes" ]; then
2586 echo "-reduce-exports was requested but this compiler does not support it"
2587 echo "Re-run configure with -v for more information"
2590 CFG_REDUCE_EXPORTS=no
2592 CFG_REDUCE_EXPORTS=yes
2596 # detect the availability of the -Bsymbolic-functions linker optimization
2597 if [ "$CFG_REDUCE_RELOCATIONS" != "no" ]; then
2598 if "$unixtests/bsymbolic_functions.test" "$TEST_COMPILER" "$OPT_VERBOSE"; then
2599 if [ "$CFG_REDUCE_RELOCATIONS" = "yes" ]; then
2600 echo "-reduce-relocations was requested but this compiler does not support it"
2601 echo "Re-run configure with -v for more information"
2604 CFG_REDUCE_RELOCATIONS=no
2606 CFG_REDUCE_RELOCATIONS=yes
2610 # auto-detect GNU make support
2611 if [ "$CFG_USE_GNUMAKE" = "auto" ] && "$MAKE" -v | grep "GNU Make" >/dev/null 2>&1; then
2615 # find the default framework value
2616 if [ "$BUILD_ON_MAC" = "yes" ]; then
2617 if [ "$CFG_FRAMEWORK" = "auto" ]; then
2618 CFG_FRAMEWORK="$CFG_SHARED"
2619 elif [ "$CFG_FRAMEWORK" = "yes" ] && [ "$CFG_SHARED" = "no" ]; then
2621 echo "WARNING: Using static linking will disable the use of Mac frameworks."
2629 #setup the build parts
2630 if [ -z "$CFG_BUILD_PARTS" ]; then
2631 CFG_BUILD_PARTS="$QT_DEFAULT_BUILD_PARTS"
2633 # build tests by default, if a developer build
2634 if [ "$CFG_DEV" = "yes" ]; then
2635 CFG_BUILD_PARTS="$CFG_BUILD_PARTS tests"
2638 # don't build tools by default when cross-compiling
2639 if [ "$PLATFORM" != "$XPLATFORM" ]; then
2640 CFG_BUILD_PARTS=`echo "$CFG_BUILD_PARTS" | sed "s, tools,,g"`
2643 for nobuild in $CFG_NOBUILD_PARTS; do
2644 CFG_BUILD_PARTS=`echo "$CFG_BUILD_PARTS" | sed "s, $nobuild,,g"`
2646 if echo $CFG_BUILD_PARTS | grep -v libs >/dev/null 2>&1; then
2648 # echo "WARNING: libs is a required part of the build."
2650 CFG_BUILD_PARTS="$CFG_BUILD_PARTS libs"
2653 #-------------------------------------------------------------------------------
2654 # post process QT_INSTALL_* variables
2655 #-------------------------------------------------------------------------------
2657 if [ -z "$QT_INSTALL_PREFIX" ]; then
2658 if [ "$CFG_DEV" = "yes" ]; then
2659 QT_INSTALL_PREFIX="$outpath" # In Development, we use sandboxed builds by default
2661 QT_INSTALL_PREFIX="/usr/local/Qt-${QT_VERSION}" # the default install prefix is /usr/local/Qt-$QT_VERSION
2664 QT_INSTALL_PREFIX=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_PREFIX"`
2666 if [ -z "$QT_INSTALL_DOCS" ]; then #default
2667 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2668 if [ "$BUILD_ON_MAC" = "yes" ]; then
2669 QT_INSTALL_DOCS="/Developer/Documentation/Qt"
2672 [ -z "$QT_INSTALL_DOCS" ] && QT_INSTALL_DOCS="$QT_INSTALL_PREFIX/doc" #fallback
2675 QT_INSTALL_DOCS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_DOCS"`
2677 if [ -z "$QT_INSTALL_HEADERS" ]; then #default
2678 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2679 if [ "$BUILD_ON_MAC" = "yes" ]; then
2680 if [ "$CFG_FRAMEWORK" = "yes" ]; then
2685 [ -z "$QT_INSTALL_HEADERS" ] && QT_INSTALL_HEADERS="$QT_INSTALL_PREFIX/include"
2688 QT_INSTALL_HEADERS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_HEADERS"`
2690 if [ -z "$QT_INSTALL_LIBS" ]; then #default
2691 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2692 if [ "$BUILD_ON_MAC" = "yes" ]; then
2693 if [ "$CFG_FRAMEWORK" = "yes" ]; then
2694 QT_INSTALL_LIBS="/Library/Frameworks"
2698 [ -z "$QT_INSTALL_LIBS" ] && QT_INSTALL_LIBS="$QT_INSTALL_PREFIX/lib" #fallback
2700 QT_INSTALL_LIBS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_LIBS"`
2702 if [ -z "$QT_INSTALL_BINS" ]; then #default
2703 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2704 if [ "$BUILD_ON_MAC" = "yes" ]; then
2705 QT_INSTALL_BINS="/Developer/Applications/Qt"
2708 [ -z "$QT_INSTALL_BINS" ] && QT_INSTALL_BINS="$QT_INSTALL_PREFIX/bin" #fallback
2710 QT_INSTALL_BINS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_BINS"`
2712 if [ -z "$QT_INSTALL_PLUGINS" ]; then #default
2713 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2714 if [ "$BUILD_ON_MAC" = "yes" ]; then
2715 QT_INSTALL_PLUGINS="/Developer/Applications/Qt/plugins"
2718 [ -z "$QT_INSTALL_PLUGINS" ] && QT_INSTALL_PLUGINS="$QT_INSTALL_PREFIX/plugins" #fallback
2720 QT_INSTALL_PLUGINS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_PLUGINS"`
2722 if [ -z "$QT_INSTALL_IMPORTS" ]; then #default
2723 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2724 if [ "$BUILD_ON_MAC" = "yes" ]; then
2725 QT_INSTALL_IMPORTS="/Developer/Applications/Qt/imports"
2728 [ -z "$QT_INSTALL_IMPORTS" ] && QT_INSTALL_IMPORTS="$QT_INSTALL_PREFIX/imports" #fallback
2730 QT_INSTALL_IMPORTS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_IMPORTS"`
2732 if [ -z "$QT_INSTALL_DATA" ]; then #default
2733 QT_INSTALL_DATA="$QT_INSTALL_PREFIX"
2735 QT_INSTALL_DATA=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_DATA"`
2737 if [ -z "$QT_INSTALL_TRANSLATIONS" ]; then #default
2738 QT_INSTALL_TRANSLATIONS="$QT_INSTALL_PREFIX/translations"
2740 QT_INSTALL_TRANSLATIONS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_TRANSLATIONS"`
2742 if [ -z "$QT_INSTALL_SETTINGS" ]; then #default
2743 if [ "$BUILD_ON_MAC" = "yes" ]; then
2744 QT_INSTALL_SETTINGS=/Library/Preferences/Qt
2746 QT_INSTALL_SETTINGS=/etc/xdg
2749 QT_INSTALL_SETTINGS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_SETTINGS"`
2751 if [ -z "$QT_INSTALL_EXAMPLES" ]; then #default
2752 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2753 if [ "$BUILD_ON_MAC" = "yes" ]; then
2754 QT_INSTALL_EXAMPLES="/Developer/Examples/Qt"
2757 [ -z "$QT_INSTALL_EXAMPLES" ] && QT_INSTALL_EXAMPLES="$QT_INSTALL_PREFIX/examples" #fallback
2759 QT_INSTALL_EXAMPLES=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_EXAMPLES"`
2762 if [ -z "$QT_INSTALL_TESTS" ]; then #default
2763 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2764 if [ "$BUILD_ON_MAC" = "yes" ]; then
2765 QT_INSTALL_TESTS="/Developer/Tests/Qt"
2768 [ -z "$QT_INSTALL_TESTS" ] && QT_INSTALL_TESTS="$QT_INSTALL_PREFIX/tests" #fallback
2770 QT_INSTALL_TESTS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_TESTS"`
2772 #------- host paths --------
2774 if [ -z "$QT_HOST_PREFIX" ]; then
2775 QT_HOST_PREFIX=$QT_INSTALL_PREFIX
2778 QT_HOST_PREFIX=`"$relpath/config.tests/unix/makeabs" "$QT_HOST_PREFIX"`
2782 if [ -z "$QT_HOST_BINS" ]; then #default
2784 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2785 if [ "$BUILD_ON_MAC" = "yes" ]; then
2786 QT_HOST_BINS="/Developer/Applications/Qt"
2789 [ -z "$QT_HOST_BINS" ] && QT_HOST_BINS="$QT_HOST_PREFIX/bin" #fallback
2791 QT_HOST_BINS="$QT_INSTALL_BINS"
2794 QT_HOST_BINS=`"$relpath/config.tests/unix/makeabs" "$QT_HOST_BINS"`
2796 if [ -z "$QT_HOST_DATA" ]; then #default
2798 QT_HOST_DATA="$QT_HOST_PREFIX"
2800 QT_HOST_DATA="$QT_INSTALL_DATA"
2803 QT_HOST_DATA=`"$relpath/config.tests/unix/makeabs" "$QT_HOST_DATA"`
2806 #-------------------------------------------------------------------------------
2807 # help - interactive parts of the script _after_ this section please
2808 #-------------------------------------------------------------------------------
2810 # next, emit a usage message if something failed.
2811 if [ "$OPT_HELP" = "yes" ]; then
2812 [ "x$ERROR" = "xyes" ] && echo
2813 if [ "$CFG_NIS" = "no" ]; then
2820 if [ "$CFG_CUPS" = "no" ]; then
2827 if [ "$CFG_ICONV" = "no" ]; then
2834 if [ "$CFG_LARGEFILE" = "no" ]; then
2841 if [ "$CFG_PRECOMPILE" = "auto" ] || [ "$CFG_PRECOMPILE" = "no" ]; then
2849 if [ "$CFG_XCB" = "no" ]; then
2857 if [ "$CFG_EGLFS" = "no" ]; then
2865 if [ "$CFG_DIRECTFB" = "no" ]; then
2873 if [ "$CFG_LINUXFB" = "no" ]; then
2881 if [ "$CFG_KMS" = "no" ]; then
2889 if [ "$CFG_XINPUT2" = "no" ]; then
2897 if [ "$CFG_DBUS" = "no" ]; then
2905 if [ "$CFG_SEPARATE_DEBUG_INFO" = "no" ]; then
2913 if [ "$CFG_GLIB" = "no" ]; then
2922 Usage: $relconf [options]
2924 Installation options:
2926 These are optional, but you may specify install directories.
2928 -prefix <dir> ...... This will install everything relative to <dir>
2929 (default $QT_INSTALL_PREFIX)
2931 -hostprefix [dir] .. Tools and libraries needed when developing
2932 applications are installed in [dir]. If [dir] is
2933 not given, the current build directory will be used.
2936 * -prefix-install .... Force a sandboxed "local" installation of
2937 Qt. This will install into
2938 $QT_INSTALL_PREFIX, if this option is
2939 disabled then some platforms will attempt a
2940 "system" install by placing default values to
2941 be placed in a system location other than
2944 You may use these to separate different parts of the install:
2946 -bindir <dir> ......... Executables will be installed to <dir>
2947 (default PREFIX/bin)
2948 -libdir <dir> ......... Libraries will be installed to <dir>
2949 (default PREFIX/lib)
2950 -docdir <dir> ......... Documentation will be installed to <dir>
2951 (default PREFIX/doc)
2952 -headerdir <dir> ...... Headers will be installed to <dir>
2953 (default PREFIX/include)
2954 -plugindir <dir> ...... Plugins will be installed to <dir>
2955 (default PREFIX/plugins)
2956 -importdir <dir> ...... Imports for QML will be installed to <dir>
2957 (default PREFIX/imports)
2958 -datadir <dir> ........ Data used by Qt programs will be installed to <dir>
2960 -translationdir <dir> . Translations of Qt programs will be installed to <dir>
2961 (default PREFIX/translations)
2962 -sysconfdir <dir> ..... Settings used by Qt programs will be looked for in <dir>
2963 (default PREFIX/etc/settings)
2964 -examplesdir <dir> .... Examples will be installed to <dir>
2965 (default PREFIX/examples)
2966 -testsdir <dir> ....... Tests will be installed to <dir>
2967 (default PREFIX/tests)
2969 -hostbindir <dir> .. Host executables will be installed to <dir>
2970 (default HOSTPREFIX/bin)
2971 -hostdatadir <dir> . Data used by qmake will be installed to <dir>
2972 (default HOSTPREFIX)
2976 The defaults (*) are usually acceptable. A plus (+) denotes a default value
2977 that needs to be evaluated. If the evaluation succeeds, the feature is
2978 included. Here is a short explanation of each option:
2980 * -release ........... Compile and link Qt with debugging turned off.
2981 -debug ............. Compile and link Qt with debugging turned on.
2982 -debug-and-release . Compile and link two versions of Qt, with and without
2983 debugging turned on (Mac only).
2985 -force-debug-info .. Create symbol files for release builds.
2987 -developer-build ... Compile and link Qt with Qt developer options (including auto-tests exporting)
2989 -opensource ........ Compile and link the Open-Source Edition of Qt.
2990 -commercial ........ Compile and link the Commercial Edition of Qt.
2992 -no-c++11 .......... Do not compile Qt with C++11 support enabled.
2993 + -c++11 ............. Compile Qt with C++11 support enabled.
2995 * -shared ............ Create and use shared Qt libraries.
2996 -static ............ Create and use static Qt libraries.
2998 * -process ........... Generate only a top-level Makefile.
2999 -fully-process ..... Generate Makefiles for the entire Qt tree.
3000 -dont-process ...... Do not generate any Makefiles.
3002 * -no-fast ........... Configure Qt normally by generating Makefiles for all
3004 -fast .............. Configure Qt quickly by generating Makefiles only for
3005 library and subdirectory targets. All other Makefiles
3006 are created as wrappers, which will in turn run qmake.
3008 -no-largefile ...... Disables large file support.
3009 + -largefile ......... Enables Qt to access files larger than 4 GB.
3011 -no-accessibility .. Do not compile Accessibility support.
3012 + -accessibility ..... Compile Accessibility support.
3014 -no-sql-<driver> ... Disable SQL <driver> entirely.
3015 -qt-sql-<driver> ... Enable a SQL <driver> in the QtSql library, by default
3017 -plugin-sql-<driver> Enable SQL <driver> as a plugin to be linked to
3020 Possible values for <driver>:
3021 [ $CFG_SQL_AVAILABLE ]
3023 -system-sqlite ..... Use sqlite from the operating system.
3025 -no-javascript-jit . Do not build the JavaScriptCore JIT compiler.
3026 + -javascript-jit .... Build the JavaScriptCore JIT compiler.
3028 -no-qml-debug ...... Do not build the in-process QML debugging support.
3029 + -qml-debug ......... Build the QML debugging support.
3031 -platform target ... The operating system and compiler you are building
3034 See the README file for a list of supported
3035 operating systems and compilers.
3037 -no-sse2 ........... Do not compile with use of SSE2 instructions.
3038 -no-sse3 ........... Do not compile with use of SSE3 instructions.
3039 -no-ssse3 .......... Do not compile with use of SSSE3 instructions.
3040 -no-sse4.1.......... Do not compile with use of SSE4.1 instructions.
3041 -no-sse4.2.......... Do not compile with use of SSE4.2 instructions.
3042 -no-avx ............ Do not compile with use of AVX instructions.
3043 -no-avx2 ........... Do not compile with use of AVX2 instructions.
3044 -no-neon ........... Do not compile with use of NEON instructions.
3045 -no-mips_dsp ....... Do not compile with use of MIPS DSP instructions.
3046 -no-mips_dspr2 ..... Do not compile with use of MIPS DSP rev2 instructions.
3048 -qtnamespace <name> Wraps all Qt library code in 'namespace <name> {...}'.
3049 -qtlibinfix <infix> Renames all libQt*.so to libQt*<infix>.so.
3051 -testcocoon Instrument Qt with the TestCocoon code coverage tool.
3053 -D <string> ........ Add an explicit define to the preprocessor.
3054 -I <string> ........ Add an explicit include path.
3055 -L <string> ........ Add an explicit library path.
3057 + -pkg-config ........ Use pkg-config to detect include and library paths. By default,
3058 configure determines whether to use pkg-config or not with
3059 some heuristics such as checking the environment variables.
3060 -no-pkg-config ..... Disable use of pkg-config.
3061 -force-pkg-config .. Force usage of pkg-config (skips pkg-config usability
3062 detection heuristic).
3064 -help, -h .......... Display this information.
3066 Third Party Libraries:
3068 -qt-zlib ........... Use the zlib bundled with Qt.
3069 + -system-zlib ....... Use zlib from the operating system.
3070 See http://www.gzip.org/zlib
3072 -no-gif ............ Do not compile GIF reading support.
3074 -no-libpng ......... Do not compile PNG support.
3075 -qt-libpng ......... Use the libpng bundled with Qt.
3076 + -system-libpng ..... Use libpng from the operating system.
3077 See http://www.libpng.org/pub/png
3079 -no-libjpeg ........ Do not compile JPEG support.
3080 -qt-libjpeg ........ Use the libjpeg bundled with Qt.
3081 + -system-libjpeg .... Use libjpeg from the operating system.
3082 See http://www.ijg.org
3084 -no-openssl ........ Do not compile support for OpenSSL.
3085 + -openssl ........... Enable run-time OpenSSL support.
3086 -openssl-linked .... Enabled linked OpenSSL support.
3088 -qt-pcre ........... Use the PCRE library bundled with Qt.
3089 + -system-pcre ....... Use the PCRE library from the operating system.
3093 -make <part> ....... Add part to the list of parts to be built at make time.
3094 ($QT_DEFAULT_BUILD_PARTS)
3095 -nomake <part> ..... Exclude part from the list of parts to be built.
3097 -R <string> ........ Add an explicit runtime library path to the Qt
3099 -l <string> ........ Add an explicit library.
3101 -no-rpath .......... Do not use the library install path as a runtime
3103 + -rpath ............. Link Qt libraries and executables using the library
3104 install path as a runtime library path. Equivalent
3105 to -R install_libpath
3107 -continue .......... Continue as far as possible if an error occurs.
3109 -verbose, -v ....... Print verbose information about each step of the
3112 -silent ............ Reduce the build output so that warnings and errors
3113 can be seen more easily.
3115 * -no-optimized-qmake ... Do not build qmake optimized.
3116 -optimized-qmake ...... Build qmake optimized.
3118 -no-gui ............ Don't build the Qt GUI library
3120 $NSN -no-nis ............ Do not compile NIS support.
3121 $NSY -nis ............... Compile NIS support.
3123 $CUN -no-cups ........... Do not compile CUPS support.
3124 $CUY -cups .............. Compile CUPS support.
3125 Requires cups/cups.h and libcups.so.2.
3127 $CIN -no-iconv .......... Do not compile support for iconv(3).
3128 $CIY -iconv ............. Compile support for iconv(3).
3130 $PHN -no-pch ............ Do not use precompiled header support.
3131 $PHY -pch ............... Use precompiled header support.
3133 $DBN -no-dbus ........... Do not compile the QtDBus module.
3134 $DBY -dbus .............. Compile the QtDBus module and dynamically load libdbus-1.
3135 -dbus-linked ....... Compile the QtDBus module and link to libdbus-1.
3137 -reduce-relocations ..... Reduce relocations in the libraries through extra
3138 linker optimizations (Qt/X11 and Qt for Embedded Linux only;
3139 experimental; needs GNU ld >= 2.18).
3141 -force-asserts ........ Force Q_ASSERT to be enabled even in release builds.
3143 -device <name> ............... Cross-compile for device <name> (experimental)
3144 -device-option <key=value> ... Add device specific options for the device mkspec
3147 $SBN -no-separate-debug-info . Do not store debug information in a separate file.
3148 $SBY -separate-debug-info .... Strip debug information into a separate .debug file.
3150 $XCBN -no-xcb ............ Do not compile Xcb (X protocol C-language Binding) support.
3151 $XCBY -xcb ............... Compile Xcb support.
3153 $EGLFSN -no-eglfs .......... Do not compile EGLFS (EGL Full Screen/Single Surface) support.
3154 $EGLFSY -eglfs ............. Compile EGLFS support (Requires OpenGL ES 2 support).
3156 $DFBN -no-directfb ....... Do not compile DirectFB support.
3157 $DFBY -directfb .......... Compile DirectFB support.
3159 $LFBN -no-linuxfb ........ Do not compile Linux Framebuffer support.
3160 $LFBY -linuxfb ........... Compile Linux Framebuffer support.
3162 $KMSN -no-kms ............ Do not compile KMS support.
3163 $KMSY -kms ............... Compile KMS support (Requires EGL and OpenGL ES 2 support).
3165 -qpa <name> ......... Sets the default QPA platform (e.g xcb, cocoa, windows).
3167 -xplatform target ... The target platform when cross-compiling.
3169 -sysroot <dir> ...... Sets <dir> as the target compiler's and qmake's sysroot and also sets pkg-config paths.
3170 -no-gcc-sysroot ..... When using -sysroot, it disables the passing of --sysroot to the compiler
3172 -no-feature-<feature> Do not compile in <feature>.
3173 -feature-<feature> .. Compile in <feature>. The available features
3174 are described in src/corelib/global/qfeatures.txt
3176 -no-freetype ........ Do not compile in Freetype2 support.
3177 -qt-freetype ........ Use the libfreetype bundled with Qt.
3178 * -system-freetype .... Use libfreetype from the operating system.
3179 See http://www.freetype.org/
3181 -qconfig local ...... Use src/corelib/global/qconfig-local.h rather than the
3182 default ($CFG_QCONFIG).
3184 -no-opengl .......... Do not support OpenGL.
3185 -opengl <api> ....... Enable OpenGL support
3186 With no parameter, this will attempt to auto-detect
3187 OpenGL ES 2, or regular desktop OpenGL.
3188 Use es2 for <api> to override auto-detection.
3190 $GBN -no-glib ........... Do not compile Glib support.
3191 $GBY -glib .............. Compile Glib support.
3194 if [ "$XPLATFORM_MAEMO" = "yes" ]; then
3197 $X2N -no-xinput2......... Do not compile XInput2 support.
3198 $X2Y -xinput2............ Compile XInput2 support.
3204 if [ "$BUILD_ON_MAC" = "yes" ]; then
3209 -Fstring ........... Add an explicit framework path.
3210 -fw string ......... Add an explicit framework.
3212 * -framework ......... Build Qt as a series of frameworks and
3213 link tools against those frameworks.
3214 -no-framework ...... Do not build Qt as a series of frameworks.
3216 -sdk <sdk> ......... Build Qt using Apple provided SDK <sdk>. This option requires gcc 4.
3217 To use a different SDK with gcc 3.3, set the SDKROOT environment variable.
3219 -harfbuzz .......... Use HarfBuzz to do text layout instead of Core Text when possible.
3220 * -no-harfbuzz ....... Disable HarfBuzz on Mac. It can still be enabled by setting
3221 QT_ENABLE_HARFBUZZ environment variable.
3226 [ "x$ERROR" = "xyes" ] && exit 1
3231 # -----------------------------------------------------------------------------
3232 # LICENSING, INTERACTIVE PART
3233 # -----------------------------------------------------------------------------
3236 echo "This is the Qt ${EditionString} Edition."
3239 if [ "$Edition" = "OpenSource" ]; then
3241 echo "You are licensed to use this software under the terms of"
3242 echo "the Lesser GNU General Public License (LGPL) versions 2.1."
3243 if [ -f "$relpath/LICENSE.GPL3" ]; then
3244 echo "You are also licensed to use this software under the terms of"
3245 echo "the GNU General Public License (GPL) versions 3."
3251 if [ "$OPT_CONFIRM_LICENSE" = "yes" ]; then
3252 echo "You have already accepted the terms of the $LicenseType license."
3255 if [ -f "$relpath/LICENSE.GPL3" ]; then
3256 echo "Type '3' to view the GNU General Public License version 3."
3258 echo "Type 'L' to view the Lesser GNU General Public License version 2.1."
3259 echo "Type 'yes' to accept this license offer."
3260 echo "Type 'no' to decline this license offer."
3262 echo $ECHO_N "Do you accept the terms of $affix license? $ECHO_C"
3266 if [ "$acceptance" = "yes" ] || [ "$acceptance" = "y" ]; then
3268 elif [ "$acceptance" = "no" ]; then
3269 echo "You are not licensed to use this software."
3272 elif [ "$acceptance" = "3" ]; then
3273 more "$relpath/LICENSE.GPL3"
3274 elif [ "$acceptance" = "L" ]; then
3275 more "$relpath/LICENSE.LGPL"
3278 elif [ "$Edition" = "Preview" ]; then
3279 TheLicense=`head -n 1 "$relpath/LICENSE.PREVIEW.COMMERCIAL"`
3282 if [ "$OPT_CONFIRM_LICENSE" = "yes" ]; then
3283 echo "You have already accepted the terms of the $LicenseType license."
3286 echo "You are licensed to use this software under the terms of"
3287 echo "the $TheLicense"
3289 echo "Type '?' to read the Preview License."
3290 echo "Type 'yes' to accept this license offer."
3291 echo "Type 'no' to decline this license offer."
3293 echo $ECHO_N "Do you accept the terms of the license? $ECHO_C"
3297 if [ "$acceptance" = "yes" ]; then
3299 elif [ "$acceptance" = "no" ] ;then
3300 echo "You are not licensed to use this software."
3303 elif [ "$acceptance" = "?" ]; then
3304 more "$relpath/LICENSE.PREVIEW.COMMERCIAL"
3307 elif [ "$Edition" != "OpenSource" ]; then
3308 if [ -n "$ExpiryDate" ]; then
3309 ExpiryDate=`echo $ExpiryDate | sed -e "s,-,,g" | tr -d "\n\r"`
3310 [ -z "$ExpiryDate" ] && ExpiryDate="0"
3311 Today=`date +%Y%m%d`
3312 if [ "$Today" -gt "$ExpiryDate" ]; then
3313 case "$LicenseType" in
3314 Commercial|Academic|Educational)
3315 if [ "$QT_PACKAGEDATE" -gt "$ExpiryDate" ]; then
3317 echo "NOTICE NOTICE NOTICE NOTICE"
3319 echo " Your support and upgrade period has expired."
3321 echo " You are no longer licensed to use this version of Qt."
3322 echo " Please contact qt-info@nokia.com to renew your support"
3323 echo " and upgrades for this license."
3325 echo "NOTICE NOTICE NOTICE NOTICE"
3330 echo "WARNING WARNING WARNING WARNING"
3332 echo " Your support and upgrade period has expired."
3334 echo " You may continue to use your last licensed release"
3335 echo " of Qt under the terms of your existing license"
3336 echo " agreement. But you are not entitled to technical"
3337 echo " support, nor are you entitled to use any more recent"
3338 echo " Qt releases."
3340 echo " Please contact qt-info@nokia.com to renew your"
3341 echo " support and upgrades for this license."
3343 echo "WARNING WARNING WARNING WARNING"
3350 echo "NOTICE NOTICE NOTICE NOTICE"
3352 echo " Your Evaluation license has expired."
3354 echo " You are no longer licensed to use this software. Please"
3355 echo " contact qt-info@nokia.com to purchase license, or install"
3356 echo " the Qt Open Source Edition if you intend to develop free"
3359 echo "NOTICE NOTICE NOTICE NOTICE"
3366 TheLicense=`head -n 1 "$outpath/LICENSE"`
3368 if [ "$OPT_CONFIRM_LICENSE" = "yes" ]; then
3369 echo "You have already accepted the terms of the $TheLicense."
3372 echo "You are licensed to use this software under the terms of"
3373 echo "the $TheLicense."
3375 echo "Type '?' to view the $TheLicense."
3376 echo "Type 'yes' to accept this license offer."
3377 echo "Type 'no' to decline this license offer."
3379 echo $ECHO_N "Do you accept the terms of the $TheLicense? $ECHO_C"
3383 if [ "$acceptance" = "yes" ]; then
3385 elif [ "$acceptance" = "no" ]; then
3386 echo "You are not licensed to use this software."
3389 else [ "$acceptance" = "?" ]
3390 more "$outpath/LICENSE"
3395 # this should be moved somewhere else
3398 AIX_VERSION=`uname -v`
3399 if [ "$AIX_VERSION" -lt "5" ]; then
3400 QMakeVar add QMAKE_LIBS_X11 -lbind
3407 #-------------------------------------------------------------------------------
3408 # generate qconfig.cpp
3409 #-------------------------------------------------------------------------------
3410 [ -d "$outpath/src/corelib/global" ] || mkdir -p "$outpath/src/corelib/global"
3412 cat > "$outpath/src/corelib/global/qconfig.cpp.new" <<EOF
3414 static const char qt_configure_licensee_str [256 + 12] = "qt_lcnsuser=$Licensee";
3415 static const char qt_configure_licensed_products_str [256 + 12] = "qt_lcnsprod=$Edition";
3417 /* Installation date */
3418 static const char qt_configure_installation [12+11] = "qt_instdate=`date +%Y-%m-%d`";
3420 /* Installation Info */
3421 static const char qt_configure_prefix_path_strs[][256 + 12] = {
3422 "qt_prfxpath=$QT_INSTALL_PREFIX",
3423 "qt_docspath=$QT_INSTALL_DOCS",
3424 "qt_hdrspath=$QT_INSTALL_HEADERS",
3425 "qt_libspath=$QT_INSTALL_LIBS",
3426 "qt_binspath=$QT_INSTALL_BINS",
3427 "qt_plugpath=$QT_INSTALL_PLUGINS",
3428 "qt_impspath=$QT_INSTALL_IMPORTS",
3429 "qt_datapath=$QT_INSTALL_DATA",
3430 "qt_trnspath=$QT_INSTALL_TRANSLATIONS",
3431 "qt_xmplpath=$QT_INSTALL_EXAMPLES",
3432 "qt_tstspath=$QT_INSTALL_TESTS",
3433 #ifdef QT_BUILD_QMAKE
3434 "qt_ssrtpath=$CFG_SYSROOT",
3435 "qt_hpfxpath=$QT_HOST_PREFIX",
3436 "qt_hbinpath=$QT_HOST_BINS",
3437 "qt_hdatpath=$QT_HOST_DATA",
3440 static const char qt_configure_settings_path_str[256 + 12] = "qt_stngpath=$QT_INSTALL_SETTINGS";
3443 cat >> "$outpath/src/corelib/global/qconfig.cpp.new" <<EOF
3445 /* strlen( "qt_lcnsxxxx" ) == 12 */
3446 #define QT_CONFIGURE_LICENSEE qt_configure_licensee_str + 12;
3447 #define QT_CONFIGURE_LICENSED_PRODUCTS qt_configure_licensed_products_str + 12;
3449 #define QT_CONFIGURE_SETTINGS_PATH qt_configure_settings_path_str + 12;
3452 # avoid unecessary rebuilds by copying only if qconfig.cpp has changed
3453 if cmp -s "$outpath/src/corelib/global/qconfig.cpp" "$outpath/src/corelib/global/qconfig.cpp.new"; then
3454 rm -f "$outpath/src/corelib/global/qconfig.cpp.new"
3456 [ -f "$outpath/src/corelib/global/qconfig.cpp" ] && chmod +w "$outpath/src/corelib/global/qconfig.cpp"
3457 mv "$outpath/src/corelib/global/qconfig.cpp.new" "$outpath/src/corelib/global/qconfig.cpp"
3458 chmod -w "$outpath/src/corelib/global/qconfig.cpp"
3461 # -----------------------------------------------------------------------------
3462 if [ "$LicenseType" = "Evaluation" ]; then
3463 EVALKEY=qt_qevalkey=$LicenseKeyExt
3464 elif echo "$DEFINES" | grep QT_EVAL >/dev/null 2>&1; then
3465 EVALKEY=qt_qevalkey=
3468 if [ -n "$EVALKEY" ]; then
3469 rm -f "$outpath/src/corelib/global/qconfig_eval.cpp"
3470 cat > "$outpath/src/corelib/global/qconfig_eval.cpp" <<EOF
3471 /* Evaluation license key */
3472 static const volatile char qt_eval_key_data [512 + 12] = "$EVALKEY";
3474 chmod -w "$outpath/src/corelib/global/qconfig_eval.cpp"
3478 # -----------------------------------------------------------------------------
3480 # -----------------------------------------------------------------------------
3483 if [ -n "$PERL" ] && [ -x "$relpath/bin/syncqt" ]; then
3485 [ "$CFG_DEV" = "yes" ] && SYNCQT_OPTS="$SYNCQT_OPTS -check-includes"
3486 if [ "$OPT_SHADOW" = "yes" ]; then
3487 "$outpath/bin/syncqt" $SYNCQT_OPTS "$relpath" || exit 1
3488 elif [ "$CFG_DEV" = "yes" ] || [ ! -d $relpath/include ] || [ -d $relpath/.git ]; then
3489 QTDIR="$relpath" perl "$outpath/bin/syncqt" $SYNCQT_OPTS || exit 1
3493 # $1: input variable name (awk regexp)
3494 # $2: optional output variable name
3495 # $3: optional value transformation (sed command)
3496 # relies on $QMAKESPEC, $COMPILER_CONF and $mkfile being set correctly, as the latter
3497 # is where the resulting variable is written to
3498 setBootstrapVariable()
3500 getQMakeConf "$1" | echo ${2-$1} = `if [ -n "$3" ]; then sed "$3"; else cat; fi` >> "$mkfile"
3504 if true; then ###[ '!' -f "$outpath/bin/qmake" ];
3505 echo "Creating qmake. Please wait..."
3508 QCONFIG_H="$outpath/src/corelib/global/qconfig.h"
3509 QMAKE_QCONFIG_H="${QCONFIG_H}.qmake"
3510 if [ -f "$QCONFIG_H" ]; then
3511 OLD_QCONFIG_H=$QCONFIG_H
3512 mv -f "$OLD_QCONFIG_H" "${OLD_QCONFIG_H}.old"
3515 # create temporary qconfig.h for compiling qmake, if it doesn't exist
3516 # when building qmake, we use #defines for the install paths,
3517 # however they are real functions in the library
3518 if [ '!' -f "$QMAKE_QCONFIG_H" ]; then
3519 mkdir -p "$outpath/src/corelib/global"
3520 [ -f "$QCONFIG_H" ] && chmod +w "$QCONFIG_H"
3521 echo "/* All features enabled while building qmake */" >"$QMAKE_QCONFIG_H"
3524 mv -f "$QMAKE_QCONFIG_H" "$QCONFIG_H"
3526 #mkspecs/default is used as a (gasp!) default mkspec so QMAKESPEC needn't be set once configured
3527 rm -rf mkspecs/default mkspecs/default-host
3528 ln -s `echo $XQMAKESPEC | sed "s,^${relpath}/mkspecs/,,"` mkspecs/default
3529 ln -s `echo $QMAKESPEC | sed "s,^${relpath}/mkspecs/,,"` mkspecs/default-host
3530 mkdir -p "$outpath/qmake" || exit
3532 for mkfile in GNUmakefile Makefile; do
3535 in_mkfile="${mkfile}.in"
3536 if [ "$mkfile" = "Makefile" ]; then
3537 # if which qmake >/dev/null 2>&1 && [ -f qmake/qmake.pro ]; then
3538 # (cd qmake && qmake) >/dev/null 2>&1 && continue
3540 in_mkfile="${mkfile}.unix"
3542 in_mkfile="$relpath/qmake/$in_mkfile"
3543 mkfile="$outpath/qmake/$mkfile"
3544 if [ -f "$mkfile" ]; then
3545 [ "$CFG_DEV" = "yes" ] && "$WHICH" chflags >/dev/null 2>&1 && chflags nouchg "$mkfile"
3548 [ -f "$in_mkfile" ] || continue
3550 echo "########################################################################" > "$mkfile"
3551 echo "## This file was autogenerated by configure, all changes will be lost ##" >> "$mkfile"
3552 echo "########################################################################" >> "$mkfile"
3555 EXTRA_CFLAGS="\$(QMAKE_CFLAGS)"
3556 EXTRA_CXXFLAGS="\$(QMAKE_CXXFLAGS)"
3557 EXTRA_LFLAGS="\$(QMAKE_LFLAGS)"
3559 if [ "$PLATFORM" = "irix-cc" ] || [ "$PLATFORM" = "irix-cc-64" ]; then
3560 EXTRA_LFLAGS="$EXTRA_LFLAGS -lm"
3563 [ "$CFG_SILENT" = "yes" ] && CC_TRANSFORM='s,^,\@,' || CC_TRANSFORM=
3564 setBootstrapVariable QMAKE_CC CC "$CC_TRANSFORM"
3565 setBootstrapVariable QMAKE_CXX CXX "$CC_TRANSFORM"
3566 setBootstrapVariable QMAKE_CFLAGS
3567 setBootstrapVariable QMAKE_CXXFLAGS
3568 setBootstrapVariable QMAKE_LFLAGS
3570 if [ $QT_EDITION = "QT_EDITION_OPENSOURCE" ]; then
3571 EXTRA_CFLAGS="$EXTRA_CFLAGS -DQMAKE_OPENSOURCE_EDITION"
3572 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -DQMAKE_OPENSOURCE_EDITION"
3574 if [ "$CFG_RELEASE_QMAKE" = "yes" ]; then
3575 setBootstrapVariable QMAKE_CFLAGS_RELEASE
3576 setBootstrapVariable QMAKE_CXXFLAGS_RELEASE
3577 EXTRA_CFLAGS="$EXTRA_CFLAGS \$(QMAKE_CFLAGS_RELEASE)"
3578 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(QMAKE_CXXFLAGS_RELEASE)"
3579 elif [ "$CFG_DEBUG" = "yes" ]; then
3580 setBootstrapVariable QMAKE_CFLAGS_DEBUG
3581 setBootstrapVariable QMAKE_CXXFLAGS_DEBUG
3582 EXTRA_CFLAGS="$EXTRA_CFLAGS \$(QMAKE_CFLAGS_DEBUG)"
3583 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(QMAKE_CXXFLAGS_DEBUG)"
3586 if [ -n "$RPATH_FLAGS" ] && [ -n "`getQMakeConf 'QMAKE_(LFLAGS_)?RPATH'`" ]; then
3587 setBootstrapVariable "QMAKE_(LFLAGS_)?RPATH" QMAKE_LFLAGS_RPATH
3588 for rpath in $RPATH_FLAGS; do
3589 EXTRA_LFLAGS="\$(QMAKE_LFLAGS_RPATH)\"$rpath\" $EXTRA_LFLAGS"
3592 if [ "$BUILD_ON_MAC" = "yes" ]; then
3593 echo "export MACOSX_DEPLOYMENT_TARGET = 10.6" >> "$mkfile"
3594 echo "CARBON_LFLAGS =-framework ApplicationServices" >>"$mkfile"
3595 echo "CARBON_CFLAGS =-fconstant-cfstrings" >>"$mkfile"
3596 EXTRA_LFLAGS="$EXTRA_LFLAGS \$(CARBON_LFLAGS)"
3597 EXTRA_CFLAGS="$EXTRA_CFLAGS \$(CARBON_CFLAGS)"
3598 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(CARBON_CFLAGS)"
3599 EXTRA_OBJS="qsettings_mac.o qcore_mac.o"
3600 EXTRA_SRCS="\"$relpath/src/corelib/io/qsettings_mac.cpp\" \"$relpath/src/corelib/kernel/qcore_mac.cpp\""
3601 if [ '!' -z "$CFG_SDK" ]; then
3602 echo "SDK_LFLAGS =-Wl,-syslibroot,$CFG_SDK" >>"$mkfile"
3603 echo "SDK_CFLAGS =-isysroot $CFG_SDK" >>"$mkfile"
3604 EXTRA_CFLAGS="$EXTRA_CFLAGS \$(SDK_CFLAGS)"
3605 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(SDK_CFLAGS)"
3606 EXTRA_LFLAGS="$EXTRA_LFLAGS \$(SDK_LFLAGS)"
3609 if [ '!' -z "$D_FLAGS" ]; then
3610 EXTRA_CFLAGS="$EXTRA_CFLAGS $D_FLAGS"
3612 QMAKE_BIN_DIR="$QT_INSTALL_BINS"
3613 [ -z "$QMAKE_BIN_DIR" ] && QMAKE_BIN_DIR="${QT_INSTALL_PREFIX}/bin"
3614 QMAKE_DATA_DIR="$QT_INSTALL_DATA"
3615 [ -z "$QMAKE_DATA_DIR" ] && QMAKE_DATA_DIR="${QT_INSTALL_PREFIX}"
3617 adjrelpath=`echo "$relpath" | sed 's/ /\\\\\\\\ /g'`
3618 adjoutpath=`echo "$outpath" | sed 's/ /\\\\\\\\ /g'`
3619 adjqmakespec=`echo "$QMAKESPEC" | sed 's/ /\\\\\\\\ /g'`
3620 sed -e "s,@SOURCE_PATH@,$adjrelpath,g" -e "s,@BUILD_PATH@,$adjoutpath,g" \
3621 -e "s,@QMAKE_CFLAGS@,$EXTRA_CFLAGS,g" -e "s,@QMAKE_LFLAGS@,$EXTRA_LFLAGS,g" \
3622 -e "s,@QMAKE_CXXFLAGS@,$EXTRA_CXXFLAGS,g" \
3623 -e "s,@QT_INSTALL_BINS@,\$(INSTALL_ROOT)$QMAKE_BIN_DIR,g" \
3624 -e "s,@QT_INSTALL_DATA@,\$(INSTALL_ROOT)$QMAKE_DATA_DIR,g" \
3625 -e "s,@QMAKE_QTOBJS@,$EXTRA_OBJS,g" -e "s,@QMAKE_QTSRCS@,$EXTRA_SRCS,g" \
3626 -e "s,@QMAKESPEC@,$adjqmakespec,g" -e "s,@QT_VERSION@,$QT_VERSION,g" "$in_mkfile" >>"$mkfile"
3628 if "$WHICH" makedepend >/dev/null 2>&1 && grep 'depend:' "$mkfile" >/dev/null 2>&1; then
3629 (cd "$outpath/qmake" && "$MAKE" -f "$mkfile" depend) >/dev/null 2>&1
3630 sed "s,^.*/\([^/]*.o\):,\1:,g" "$mkfile" >"$mkfile.tmp"
3631 sed "s,$outpath,$adjoutpath,g" "$mkfile.tmp" >"$mkfile"
3636 QMAKE_BUILD_ERROR=no
3637 (cd "$outpath/qmake"; "$MAKE") || QMAKE_BUILD_ERROR=yes
3638 [ '!' -z "$QCONFIG_H" ] && mv -f "$QCONFIG_H" "$QMAKE_QCONFIG_H" #move qmake's qconfig.h to qconfig.h.qmake
3639 [ '!' -z "$OLD_QCONFIG_H" ] && mv -f "${OLD_QCONFIG_H}.old" "$OLD_QCONFIG_H" #put back qconfig.h
3640 [ "$QMAKE_BUILD_ERROR" = "yes" ] && exit 2
3643 #-------------------------------------------------------------------------------
3644 # create a qt.conf for the Qt build tree itself
3645 #-------------------------------------------------------------------------------
3647 QTCONFFILE="$outpath/bin/qt.conf"
3648 cat > "$QTCONFFILE" <<EOF
3653 #-------------------------------------------------------------------------------
3655 #-------------------------------------------------------------------------------
3656 if [ -z "$PKG_CONFIG" ]; then
3657 # See if PKG_CONFIG is set in the mkspec:
3658 PKG_CONFIG=`getXQMakeConf PKG_CONFIG`
3660 if [ -z "$PKG_CONFIG" ]; then
3661 PKG_CONFIG=`"$WHICH" pkg-config 2>/dev/null`
3664 if [ "$CFG_PKGCONFIG" = "no" ]; then
3666 elif [ "$CFG_PKGCONFIG" = "force" ]; then
3668 echo >&2 "You have asked to use pkg-config. Please make sure you have"
3669 echo >&2 "a correctly setup pkg-config environment!"
3671 elif [ -n "$PKG_CONFIG" ]; then
3672 # found a pkg-config
3673 if [ "$QT_CROSS_COMPILE" = "yes" ]; then
3674 # when xcompiling, check environment to see if it's actually usable
3675 if [ -z "$PKG_CONFIG_LIBDIR" ]; then
3676 if [ -n "$CFG_SYSROOT" ] && [ -d "$CFG_SYSROOT/usr/lib/pkgconfig" ]; then
3677 PKG_CONFIG_LIBDIR=$CFG_SYSROOT/usr/lib/pkgconfig:$CFG_SYSROOT/usr/share/pkgconfig
3678 if [ -n "$GCC_MACHINE_DUMP" ]; then
3679 PKG_CONFIG_LIBDIR=$PKG_CONFIG_LIBDIR:$CFG_SYSROOT/usr/lib/$GCC_MACHINE_DUMP/pkgconfig
3681 export PKG_CONFIG_LIBDIR
3682 echo >&2 "Note: PKG_CONFIG_LIBDIR automatically set to $PKG_CONFIG_LIBDIR"
3683 elif [ "$CFG_PKGCONFIG" = "yes" ]; then
3684 echo >&2 "Error: PKG_CONFIG_LIBDIR has not been set. This could mean"
3685 echo >&2 "the host's .pc files will be used (even if you set PKG_CONFIG_PATH)."
3686 echo >&2 "Set this variable to the directory that contains target .pc files"
3687 echo >&2 "for pkg-config to function correctly when cross-compiling or"
3688 echo >&2 "use -force-pkg-config to override this test."
3692 echo >&2 "Warning: Disabling pkg-config since PKG_CONFIG_LIBDIR is not set."
3695 if [ -z "$PKG_CONFIG_SYSROOT_DIR" ]; then
3696 if [ -n "$CFG_SYSROOT" ]; then
3697 PKG_CONFIG_SYSROOT_DIR=$CFG_SYSROOT
3698 export PKG_CONFIG_SYSROOT_DIR
3699 echo >&2 "Note: PKG_CONFIG_SYSROOT_DIR automatically set to $PKG_CONFIG_SYSROOT_DIR"
3700 elif [ "$CFG_PKGCONFIG" = "yes" ]; then
3701 echo >&2 "Error: PKG_CONFIG_SYSROOT_DIR has not been set. Set this variable"
3702 echo >&2 "to your sysroot for pkg-config to function correctly when cross-compiling"
3703 echo >&2 "or use -force-pkg-config to override this test."
3707 echo >&2 "Warning: Disabling pkg-config since PKG_CONFIG_SYSROOT_DIR is not set."
3711 elif [ "$CFG_PKGCONFIG" = "yes" ]; then
3712 echo >&2 "Could not detect pkg-config from mkspec or PATH."
3716 if [ -z "$PKG_CONFIG" ]; then
3717 QT_CONFIG="$QT_CONFIG no-pkg-config"
3720 #-------------------------------------------------------------------------------
3721 # write out device config before we run the test.
3722 #-------------------------------------------------------------------------------
3723 DEVICE_VARS_OUTFILE="$outpath/mkspecs/qdevice.pri"
3724 if cmp -s "$DEVICE_VARS_FILE" "$DEVICE_VARS_OUTFILE"; then
3725 rm -f "$DEVICE_VARS_FILE"
3727 mv -f $DEVICE_VARS_FILE "$DEVICE_VARS_OUTFILE"
3728 DEVICE_VARS_FILE="$DEVICE_VARS_OUTFILE"
3731 #-------------------------------------------------------------------------------
3732 # tests that need qmake
3733 #-------------------------------------------------------------------------------
3735 # parameters: path, name, extra args
3738 path=config.tests/$1
3741 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" "$path" "$name" $I_FLAGS $D_FLAGS $L_FLAGS $MAC_CONFIG_TEST_COMMANDLINE "$@"
3744 #-------------------------------------------------------------------------------
3745 # determine the target and host architectures
3746 #-------------------------------------------------------------------------------
3748 # Use config.tests/arch/arch.pro to have the compiler tell us what the target architecture is
3749 OUTFILE=$outpath/arch.result
3750 "$unixtests/arch.test" "$XQMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath" "$OUTFILE" "CFG" $MAC_CONFIG_TEST_COMMANDLINE
3751 if [ $? -eq 0 ]; then
3752 eval `cat "$OUTFILE"`
3755 echo "Could not determine the target architecture!"
3756 echo "Turn on verbose messaging (-v) to see the final report."
3758 rm -f "$OUTFILE" 2>/dev/null
3759 [ -z "$CFG_ARCH" ] && CFG_ARCH="unknown"
3761 if [ "$QMAKESPEC" != "$XQMAKESPEC" ]; then
3762 # Do the same test again, using the host compiler
3763 SYSROOT_FLAG= "$unixtests/arch.test" "$QMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath" "$OUTFILE" "CFG_HOST" $MAC_CONFIG_TEST_COMMANDLINE
3764 if [ $? -eq 0 ]; then
3765 eval `cat "$OUTFILE"`
3768 echo "Could not determine the host architecture!"
3769 echo "Turn on verbose messaging (-v) to see the final report."
3771 rm -f "$OUTFILE" 2>/dev/null
3772 [ -z "$CFG_HOST_ARCH" ] && CFG_HOST_ARCH="unknown"
3774 # not cross compiling, host == target
3775 CFG_HOST_ARCH="$CFG_ARCH"
3776 CFG_HOST_CPUFEATURES="$CFG_CPUFEATURES"
3780 if [ "$OPT_VERBOSE" = "yes" ]; then
3781 echo "System architecture: '$CFG_ARCH'"
3782 echo "Host architecture: '$CFG_HOST_ARCH'"
3785 #-------------------------------------------------------------------------------
3786 # functionality tests
3787 #-------------------------------------------------------------------------------
3789 # Detect C++11 support
3790 if [ "$CFG_CXX11" != "no" ]; then
3791 if compileTest unix/c++11 "C++11"; then
3793 elif [ "$CFG_CXX11" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
3794 echo "C++11 support cannot be enabled due to functionality tests!"
3795 echo " Turn on verbose messaging (-v) to $0 to see the final report."
3796 echo " If you believe this message is in error you may use the continue"
3797 echo " switch (-continue) to $0 to continue."
3804 # detect availability of float math.h functions
3805 if compileTest unix/floatmath "floatmath"; then
3806 CFG_USE_FLOATMATH=yes
3808 CFG_USE_FLOATMATH=no
3811 # detect sse2 support
3812 if [ "${CFG_SSE2}" = "auto" ]; then
3813 if compileTest common/sse2 "sse2"; then
3820 # detect sse3 support
3821 if [ "${CFG_SSE3}" = "auto" ]; then
3822 if compileTest common/sse3 "sse3"; then
3829 # detect ssse3 support
3830 if [ "${CFG_SSSE3}" = "auto" ]; then
3831 if compileTest common/ssse3 "ssse3"; then
3838 # detect sse4.1 support
3839 if [ "${CFG_SSE4_1}" = "auto" ]; then
3840 if compileTest common/sse4_1 "sse4_1"; then
3847 # detect sse4.2 support
3848 if [ "${CFG_SSE4_2}" = "auto" ]; then
3849 if compileTest common/sse4_2 "sse4_2"; then
3856 # detect avx support
3857 if [ "${CFG_AVX}" = "auto" ]; then
3858 if compileTest common/avx "avx"; then
3859 case "$XQMAKESPEC" in
3861 # Some clang versions produce internal compiler errors compiling Qt AVX code
3862 case `$TEST_COMPILER --version` in
3863 Apple\ clang\ version\ 2*|Apple\ clang\ version\ 3.0*)
3865 if [ "$OPT_VERBOSE" = "yes" ]; then
3866 echo 'AVX support disabled for blacklisted clang compiler'
3883 # detect avx2 support
3884 if [ "${CFG_AVX}" = "no" ]; then
3887 if [ "${CFG_AVX2}" = "auto" ]; then
3888 if compileTest common/avx2 "avx2"; then
3895 # check iWMMXt support
3896 if [ "$CFG_IWMMXT" = "yes" ]; then
3897 compileTest unix/iwmmxt "iwmmxt"
3898 if [ $? != "0" ]; then
3899 echo "The iWMMXt functionality test failed!"
3900 echo " Please make sure your compiler supports iWMMXt intrinsics!"
3905 # detect neon support
3906 if [ "$CFG_ARCH" = "arm" ] && [ "${CFG_NEON}" = "auto" ]; then
3907 if compileTest unix/neon "neon"; then
3912 elif [ "$CFG_ARCH" != "arm" ]; then
3916 # detect mips_dsp support
3917 if [ "${CFG_ARCH}" = "mips" ] && [ "${CFG_MIPS_DSP}" = "yes" ]; then
3923 # detect mips_dspr2 support
3924 if [ "${CFG_ARCH}" = "mips" ] && [ "${CFG_MIPS_DSPR2}" = "yes" ]; then
3930 [ "$XPLATFORM_MINGW" = "yes" ] && QMakeVar add styles "windowsxp windowsvista"
3933 if [ "$CFG_ZLIB" = "no" ]; then
3934 # Note: Qt no longer support builds without zlib
3935 # So we force a "no" to be "auto" here.
3936 # If you REALLY really need no zlib support, you can still disable
3937 # it by doing the following:
3938 # add "no-zlib" to mkspecs/qconfig.pri
3939 # #define QT_NO_COMPRESS (probably by adding to src/corelib/global/qconfig.h)
3941 # There's no guarantee that Qt will build under those conditions
3946 if [ "$CFG_ZLIB" = "auto" ]; then
3947 if compileTest unix/zlib "zlib"; then
3954 if [ "$CFG_LARGEFILE" = "auto" ]; then
3955 #Large files should be enabled for all Linux systems
3959 if [ "$CFG_GUI" = "no" ]; then
3960 QPA_PLATFORM_GUARD=no
3963 # detect how jpeg should be built
3964 if [ "$CFG_JPEG" = "auto" ]; then
3965 if [ "$CFG_SHARED" = "yes" ]; then
3972 if [ "$CFG_LIBJPEG" = "auto" ]; then
3973 if compileTest unix/libjpeg "libjpeg"; then
3980 # detect how gif should be built
3981 if [ "$CFG_GIF" = "auto" ]; then
3982 if [ "$CFG_SHARED" = "yes" ]; then
3990 if [ "$CFG_LIBPNG" = "auto" ]; then
3991 if compileTest unix/libpng "libpng"; then
3998 if [ "$CFG_EGLFS" = "yes" ]; then
3999 if [ "$CFG_EGL" = "no" ]; then
4000 echo "The EGLFS plugin requires EGL support and cannot be built"
4003 if [ "$CFG_OPENGL" != "es2" ]; then
4004 echo "The EGLFS plugin requires OpenGL ES 2 support and cannot be built"
4011 if [ "$CFG_KMS" = "yes" ]; then
4012 if [ "$CFG_EGL" = "no" ]; then
4013 echo "The KMS plugin requires EGL support and cannot be built"
4016 if [ "$CFG_OPENGL" != "es2" ]; then
4017 echo "The KMS plugin requires OpenGL ES 2 support and cannot be built"
4022 # auto-detect SQL-modules support
4023 for _SQLDR in $CFG_SQL_AVAILABLE; do
4026 if [ "$CFG_SQL_mysql" != "no" ]; then
4027 [ -z "$CFG_MYSQL_CONFIG" ] && CFG_MYSQL_CONFIG=`"$WHICH" mysql_config`
4028 if [ -x "$CFG_MYSQL_CONFIG" ]; then
4029 QT_CFLAGS_MYSQL=`$CFG_MYSQL_CONFIG --include 2>/dev/null`
4030 QT_LFLAGS_MYSQL_R=`$CFG_MYSQL_CONFIG --libs_r 2>/dev/null`
4031 QT_LFLAGS_MYSQL=`$CFG_MYSQL_CONFIG --libs 2>/dev/null`
4032 QT_MYSQL_VERSION=`$CFG_MYSQL_CONFIG --version 2>/dev/null`
4033 QT_MYSQL_VERSION_MAJOR=`echo $QT_MYSQL_VERSION | cut -d . -f 1`
4035 if [ -n "$QT_MYSQL_VERSION" ] && [ "$QT_MYSQL_VERSION_MAJOR" -lt 4 ]; then
4036 if [ "$CFG_SQL_mysql" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4037 echo "This version of MySql is not supported ($QT_MYSQL_VERSION)."
4038 echo " You need MySql 4 or higher."
4039 echo " If you believe this message is in error you may use the continue"
4040 echo " switch (-continue) to $0 to continue."
4045 QT_LFLAGS_MYSQL_R=""
4049 if compileTest unix/mysql_r "MySQL (thread-safe)" $QT_LFLAGS_MYSQL_R $QT_CFLAGS_MYSQL; then
4050 QMakeVar add CONFIG use_libmysqlclient_r
4051 if [ "$CFG_SQL_mysql" = "auto" ]; then
4052 CFG_SQL_mysql=plugin
4054 QT_LFLAGS_MYSQL="$QT_LFLAGS_MYSQL_R"
4055 elif compileTest unix/mysql "MySQL (thread-unsafe)" $QT_LFLAGS_MYSQL $QT_CFLAGS_MYSQL; then
4056 if [ "$CFG_SQL_mysql" = "auto" ]; then
4057 CFG_SQL_mysql=plugin
4060 if [ "$CFG_SQL_mysql" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4061 echo "MySQL support cannot be enabled due to functionality tests!"
4062 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4063 echo " If you believe this message is in error you may use the continue"
4064 echo " switch (-continue) to $0 to continue."
4069 QT_LFLAGS_MYSQL_R=""
4077 if [ "$CFG_SQL_psql" != "no" ]; then
4078 # Be careful not to use native pg_config when cross building.
4079 if [ "$XPLATFORM_MINGW" != "yes" ] && "$WHICH" pg_config >/dev/null 2>&1; then
4080 QT_CFLAGS_PSQL=`pg_config --includedir 2>/dev/null`
4081 QT_LFLAGS_PSQL=`pg_config --libdir 2>/dev/null`
4083 [ -z "$QT_CFLAGS_PSQL" ] || QT_CFLAGS_PSQL="-I$QT_CFLAGS_PSQL"
4084 [ -z "$QT_LFLAGS_PSQL" ] || QT_LFLAGS_PSQL="-L$QT_LFLAGS_PSQL"
4085 # But, respect PSQL_LIBS if set
4086 [ -z "$PSQL_LIBS" ] || QT_LFLAGS_PSQL="$PSQL_LIBS"
4087 if compileTest unix/psql "PostgreSQL" $QT_LFLAGS_PSQL $QT_CFLAGS_PSQL; then
4088 if [ "$CFG_SQL_psql" = "auto" ]; then
4092 if [ "$CFG_SQL_psql" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4093 echo "PostgreSQL support cannot be enabled due to functionality tests!"
4094 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4095 echo " If you believe this message is in error you may use the continue"
4096 echo " switch (-continue) to $0 to continue."
4107 if [ "$CFG_SQL_odbc" != "no" ]; then
4108 if ( [ "$BUILD_ON_MAC" != "yes" ] || [ "$XPLATFORM_MINGW" = "yes" ] ) && compileTest unix/odbc "ODBC"; then
4109 if [ "$CFG_SQL_odbc" = "auto" ]; then
4113 if compileTest unix/iodbc "iODBC"; then
4114 QT_LFLAGS_ODBC="-liodbc"
4115 if [ "$CFG_SQL_odbc" = "auto" ]; then
4119 if [ "$CFG_SQL_odbc" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4120 echo "ODBC support cannot be enabled due to functionality tests!"
4121 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4122 echo " If you believe this message is in error you may use the continue"
4123 echo " switch (-continue) to $0 to continue."
4133 if [ "$CFG_SQL_oci" != "no" ]; then
4134 if compileTest unix/oci "OCI"; then
4135 if [ "$CFG_SQL_oci" = "auto" ]; then
4139 if [ "$CFG_SQL_oci" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4140 echo "Oracle (OCI) support cannot be enabled due to functionality tests!"
4141 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4142 echo " If you believe this message is in error you may use the continue"
4143 echo " switch (-continue) to $0 to continue."
4152 if [ "$CFG_SQL_tds" != "no" ]; then
4153 [ -z "$SYBASE" ] || QT_LFLAGS_TDS="-L$SYBASE/lib"
4154 [ -z "$SYBASE_LIBS" ] || QT_LFLAGS_TDS="$QT_LFLAGS_TDS $SYBASE_LIBS"
4155 if compileTest unix/tds "TDS" $QT_LFLAGS_TDS; then
4156 if [ "$CFG_SQL_tds" = "auto" ]; then
4160 if [ "$CFG_SQL_tds" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4161 echo "TDS support cannot be enabled due to functionality tests!"
4162 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4163 echo " If you believe this message is in error you may use the continue"
4164 echo " switch (-continue) to $0 to continue."
4173 if [ "$CFG_SQL_db2" != "no" ]; then
4174 if compileTest unix/db2 "DB2"; then
4175 if [ "$CFG_SQL_db2" = "auto" ]; then
4179 if [ "$CFG_SQL_db2" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4180 echo "ODBC support cannot be enabled due to functionality tests!"
4181 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4182 echo " If you believe this message is in error you may use the continue"
4183 echo " switch (-continue) to $0 to continue."
4192 if [ "$CFG_SQL_ibase" != "no" ]; then
4193 if compileTest unix/ibase "InterBase"; then
4194 if [ "$CFG_SQL_ibase" = "auto" ]; then
4195 CFG_SQL_ibase=plugin
4198 if [ "$CFG_SQL_ibase" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4199 echo "InterBase support cannot be enabled due to functionality tests!"
4200 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4201 echo " If you believe this message is in error you may use the continue"
4202 echo " switch (-continue) to $0 to continue."
4211 if [ "$CFG_SQL_sqlite2" != "no" ]; then
4212 if compileTest unix/sqlite2 "SQLite2"; then
4213 if [ "$CFG_SQL_sqlite2" = "auto" ]; then
4214 CFG_SQL_sqlite2=plugin
4217 if [ "$CFG_SQL_sqlite2" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4218 echo "SQLite2 support cannot be enabled due to functionality tests!"
4219 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4220 echo " If you believe this message is in error you may use the continue"
4221 echo " switch (-continue) to $0 to continue."
4230 if [ "$CFG_SQL_sqlite" != "no" ]; then
4231 SQLITE_AUTODETECT_FAILED="no"
4232 if [ "$CFG_SQLITE" = "system" ]; then
4233 if [ -n "$PKG_CONFIG" ]; then
4234 QT_CFLAGS_SQLITE=`$PKG_CONFIG --cflags sqlite3 2>/dev/null`
4235 QT_LFLAGS_SQLITE=`$PKG_CONFIG --libs sqlite3 2>/dev/null`
4238 QT_LFLAGS_SQLITE="-lsqlite3 -lz"
4240 if compileTest unix/sqlite "SQLite" $QT_LFLAGS_SQLITE $QT_CFLAGS_SQLITE; then
4241 if [ "$CFG_SQL_sqlite" = "auto" ]; then
4242 CFG_SQL_sqlite=plugin
4244 QMAKE_CONFIG="$QMAKE_CONFIG system-sqlite"
4246 SQLITE_AUTODETECT_FAILED="yes"
4249 elif [ -f "$relpath/src/3rdparty/sqlite/sqlite3.h" ]; then
4250 if [ "$CFG_SQL_sqlite" = "auto" ]; then
4251 CFG_SQL_sqlite=plugin
4254 SQLITE_AUTODETECT_FAILED="yes"
4258 if [ "$SQLITE_AUTODETECT_FAILED" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4259 echo "SQLite support cannot be enabled due to functionality tests!"
4260 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4261 echo " If you believe this message is in error you may use the continue"
4262 echo " switch (-continue) to $0 to continue."
4268 if [ "$OPT_VERBOSE" = "yes" ]; then
4269 echo "unknown SQL driver: $_SQLDR"
4275 # auto-detect NIS support
4276 if [ "$CFG_NIS" != "no" ]; then
4277 if compileTest unix/nis "NIS"; then
4280 if [ "$CFG_NIS" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4281 echo "NIS support cannot be enabled due to functionality tests!"
4282 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4283 echo " If you believe this message is in error you may use the continue"
4284 echo " switch (-continue) to $0 to continue."
4292 # auto-detect CUPS support
4293 if [ "$CFG_CUPS" != "no" ]; then
4294 if compileTest unix/cups "Cups"; then
4297 if [ "$CFG_CUPS" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4298 echo "Cups support cannot be enabled due to functionality tests!"
4299 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4300 echo " If you believe this message is in error you may use the continue"
4301 echo " switch (-continue) to $0 to continue."
4309 # auto-detect iconv(3) support
4310 if [ "$CFG_ICONV" != "no" ]; then
4311 if [ "$XPLATFORM_MINGW" = "yes" ]; then
4313 elif compileTest unix/iconv "POSIX iconv"; then
4315 elif compileTest unix/sun-libiconv "SUN libiconv"; then
4317 elif compileTest unix/gnu-libiconv "GNU libiconv"; then
4320 if [ "$CFG_ICONV" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4321 echo "Iconv support cannot be enabled due to functionality tests!"
4322 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4323 echo " If you believe this message is in error you may use the continue"
4324 echo " switch (-continue) to $0 to continue."
4332 # auto-detect libdbus-1 support
4333 if [ "$CFG_DBUS" != "no" ]; then
4334 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --atleast-version="$MIN_DBUS_1_VERSION" dbus-1 2>/dev/null; then
4335 QT_CFLAGS_DBUS=`$PKG_CONFIG --cflags dbus-1 2>/dev/null`
4336 QT_LIBS_DBUS=`$PKG_CONFIG --libs dbus-1 2>/dev/null`
4338 if compileTest unix/dbus "D-Bus" $QT_CFLAGS_DBUS $QT_LIBS_DBUS; then
4339 [ "$CFG_DBUS" = "auto" ] && CFG_DBUS=yes
4340 QMakeVar set QT_CFLAGS_DBUS "$QT_CFLAGS_DBUS"
4341 QMakeVar set QT_LIBS_DBUS "$QT_LIBS_DBUS"
4343 if [ "$CFG_DBUS" = "auto" ]; then
4345 elif [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4346 # CFG_DBUS is "yes" or "linked" here
4348 echo "The QtDBus module cannot be enabled because libdbus-1 version $MIN_DBUS_1_VERSION was not found."
4349 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4350 echo " If you believe this message is in error you may use the continue"
4351 echo " switch (-continue) to $0 to continue."
4357 # auto-detect Glib support
4358 if [ "$CFG_GLIB" != "no" ]; then
4359 if [ -n "$PKG_CONFIG" ]; then
4360 QT_CFLAGS_GLIB=`$PKG_CONFIG --cflags glib-2.0 gthread-2.0 2>/dev/null`
4361 QT_LIBS_GLIB=`$PKG_CONFIG --libs glib-2.0 gthread-2.0 2>/dev/null`
4363 if compileTest unix/glib "Glib" $QT_CFLAGS_GLIB $QT_LIBS_GLIB; then
4365 QMakeVar set QT_CFLAGS_GLIB "$QT_CFLAGS_GLIB"
4366 QMakeVar set QT_LIBS_GLIB "$QT_LIBS_GLIB"
4368 if [ "$CFG_GLIB" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4369 echo "Glib support cannot be enabled due to functionality tests!"
4370 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4371 echo " If you believe this message is in error you may use the continue"
4372 echo " switch (-continue) to $0 to continue."
4380 # auto-detect GTK style support
4381 if [ "$CFG_GLIB" = "yes" -a "$CFG_QGTKSTYLE" != "no" ]; then
4382 if [ -n "$PKG_CONFIG" ]; then
4383 QT_CFLAGS_QGTKSTYLE=`$PKG_CONFIG --cflags gtk+-2.0 ">=" 2.10 atk 2>/dev/null`
4384 QT_LIBS_QGTKSTYLE=`$PKG_CONFIG --libs gobject-2.0 2>/dev/null`
4386 if [ -n "$QT_CFLAGS_QGTKSTYLE" ] ; then
4388 QT_CONFIG="$QT_CONFIG gtkstyle"
4389 QMakeVar set QT_CFLAGS_QGTKSTYLE "$QT_CFLAGS_QGTKSTYLE"
4390 QMakeVar set QT_LIBS_QGTKSTYLE "$QT_LIBS_QGTKSTYLE"
4392 if [ "$CFG_QGTKSTYLE" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4393 echo "Gtk theme support cannot be enabled due to functionality tests!"
4394 echo " Turn on verbose messaging (-v) to $0 to see the fin al report."
4395 echo " If you believe this message is in error you may use the continue"
4396 echo " switch (-continue) to $0 to continue."
4402 elif [ "$CFG_GLIB" = "no" ]; then
4407 if [ "$CFG_GLIB" = "yes" -a "$CFG_GSTREAMER" != "no" ]; then
4408 if [ -n "$PKG_CONFIG" ]; then
4409 QT_CFLAGS_GSTREAMER=`$PKG_CONFIG --cflags gstreamer-0.10 gstreamer-plugins-base-0.10 2>/dev/null`
4410 QT_LIBS_GSTREAMER=`$PKG_CONFIG --libs gstreamer-0.10 gstreamer-plugins-base-0.10 2>/dev/null`
4412 if compileTest unix/gstreamer "GStreamer" $QT_CFLAGS_GSTREAMER $QT_LIBS_GSTREAMER; then
4414 QMakeVar set QT_CFLAGS_GSTREAMER "$QT_CFLAGS_GSTREAMER"
4415 QMakeVar set QT_LIBS_GSTREAMER "$QT_LIBS_GSTREAMER"
4417 if [ "$CFG_GSTREAMER" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4418 echo "Gstreamer support cannot be enabled due to functionality tests!"
4419 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4420 echo " If you believe this message is in error you may use the continue"
4421 echo " switch (-continue) to $0 to continue."
4427 elif [ "$CFG_GLIB" = "no" ]; then
4431 # auto-detect libicu support
4432 if [ "$CFG_ICU" != "no" ]; then
4433 if compileTest unix/icu "ICU"; then
4434 [ "$CFG_ICU" = "auto" ] && CFG_ICU=yes
4436 if [ "$CFG_ICU" = "auto" ]; then
4438 elif [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4441 echo "The ICU library support cannot be enabled."
4442 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4443 echo " If you believe this message is in error you may use the continue"
4444 echo " switch (-continue) to $0 to continue."
4450 # Auto-detect PulseAudio support
4451 if [ "$CFG_PULSEAUDIO" != "no" ]; then
4452 if [ -n "$PKG_CONFIG" ]; then
4453 QT_CFLAGS_PULSEAUDIO=`$PKG_CONFIG --cflags libpulse '>=' 0.9.10 libpulse-mainloop-glib 2>/dev/null`
4454 QT_LIBS_PULSEAUDIO=`$PKG_CONFIG --libs libpulse '>=' 0.9.10 libpulse-mainloop-glib 2>/dev/null`
4456 if compileTest unix/pulseaudio "PulseAudio" $QT_CFLAGS_PULSEAUDIO $QT_LIBS_PULSEAUDIO; then
4458 QMakeVar set QT_CFLAGS_PULSEAUDIO "$QT_CFLAGS_PULSEAUDIO"
4459 QMakeVar set QT_LIBS_PULSEAUDIO "$QT_LIBS_PULSEAUDIO"
4461 if [ "$CFG_PULSEAUDIO" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4462 echo "PulseAudio support cannot be enabled due to functionality tests!"
4463 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4464 echo " If you believe this message is in error you may use the continue"
4465 echo " switch (-continue) to $0 to continue."
4474 if [ "$XPLATFORM_MINGW" = "yes" ]; then
4475 # auto-detect OpenGL support (es2 = OpenGL ES 2.x)
4476 if [ "$CFG_GUI" = "no" ]; then
4477 if [ "$CFG_OPENGL" = "auto" ]; then
4480 if [ "$CFG_OPENGL" != "no" ]; then
4481 echo "OpenGL enabled, but GUI disabled."
4482 echo " You might need to either enable the GUI or disable OpenGL"
4486 if [ "$CFG_OPENGL" = "auto" ] || [ "$CFG_OPENGL" = "yes" ]; then
4487 if compileTest x11/opengl "OpenGL"; then
4489 elif compileTest unix/opengles2 "OpenGL ES 2.x"; then
4492 if [ "$CFG_OPENGL" = "yes" ]; then
4493 echo "All the OpenGL functionality tests failed!"
4494 echo " You might need to modify the include and library search paths by editing"
4495 echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in"
4496 echo " ${XQMAKESPEC}."
4503 # HP-UX have buggy glx headers; check if we really need to define the GLXFBConfig struct.
4504 if [ "$CFG_OPENGL" = "desktop" ]; then
4505 compileTest x11/glxfbconfig "OpenGL"
4506 if [ $? != "0" ]; then
4507 QMakeVar add DEFINES QT_DEFINE_GLXFBCONFIG_STRUCT
4514 elif [ "$CFG_OPENGL" = "es2" ]; then
4516 compileTest unix/opengles2 "OpenGL ES 2.x"
4517 if [ $? != "0" ]; then
4518 echo "The OpenGL ES 2.0 functionality test failed!"
4519 echo " You might need to modify the include and library search paths by editing"
4520 echo " QMAKE_INCDIR_OPENGL_ES2, QMAKE_LIBDIR_OPENGL_ES2 and QMAKE_LIBS_OPENGL_ES2 in"
4521 echo " ${XQMAKESPEC}."
4524 elif [ "$CFG_OPENGL" = "desktop" ]; then
4525 # Desktop OpenGL support
4526 compileTest x11/opengl "OpenGL"
4527 if [ $? != "0" ]; then
4528 echo "The OpenGL functionality test failed!"
4529 echo " You might need to modify the include and library search paths by editing"
4530 echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in"
4531 echo " ${XQMAKESPEC}."
4536 # HP-UX have buggy glx headers; check if we really need to define the GLXFBConfig struct.
4537 compileTest x11/glxfbconfig "OpenGL"
4538 if [ $? != "0" ]; then
4539 QMakeVar add DEFINES QT_DEFINE_GLXFBCONFIG_STRUCT
4546 fi # X11/MINGW OpenGL
4548 if [ "$BUILD_ON_MAC" = "yes" ]; then
4549 if [ "$CFG_COREWLAN" = "auto" ]; then
4550 if compileTest mac/corewlan "CoreWlan"; then
4558 # auto-detect OpenGL support (es2 = OpenGL ES 2.x)
4559 if [ "$CFG_OPENGL" = "auto" ] || [ "$CFG_OPENGL" = "yes" ]; then
4560 if compileTest unix/opengldesktop "OpenGL"; then
4562 elif compileTest unix/opengles2 "OpenGL ES 2.x"; then
4565 if [ "$CFG_OPENGL" = "yes" ]; then
4566 echo "All the OpenGL functionality tests failed!"
4567 echo " You might need to modify the include and library search paths by editing"
4568 echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in"
4569 echo " ${XQMAKESPEC}."
4574 elif [ "$CFG_OPENGL" = "es2" ]; then
4576 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists glesv2 2>/dev/null; then
4577 QMAKE_INCDIR_OPENGL_ES2=`$PKG_CONFIG --cflags-only-I glesv2 2>/dev/null | sed -e 's,^-I,,g' -e 's, -I, ,g'`
4578 QMAKE_LIBDIR_OPENGL_ES2=`$PKG_CONFIG --libs-only-L glesv2 2>/dev/null | sed -e 's,^-L,,g' -e 's, -L, ,g'`
4579 QMAKE_LIBS_OPENGL_ES2=`$PKG_CONFIG --libs glesv2 2>/dev/null`
4580 QMAKE_CFLAGS_OPENGL_ES2=`$PKG_CONFIG --cflags glesv2 2>/dev/null`
4581 QMakeVar set QMAKE_INCDIR_OPENGL_ES2 "`shellArgumentListToQMakeList "$QMAKE_INCDIR_OPENGL_ES2"`"
4582 QMakeVar set QMAKE_LIBDIR_OPENGL_ES2 "`shellArgumentListToQMakeList "$QMAKE_LIBDIR_OPENGL_ES2"`"
4583 QMakeVar set QMAKE_LIBS_OPENGL_ES2 "`shellArgumentListToQMakeList "$QMAKE_LIBS_OPENGL_ES2"`"
4586 compileTest unix/opengles2 "OpenGL ES 2.x" $QMAKE_LIBS_OPENGL_ES2 $QMAKE_CFLAGS_OPENGL_ES2
4587 if [ $? != "0" ]; then
4588 echo "The OpenGL ES 2.0 functionality test failed!"
4589 echo " You might need to modify the include and library search paths by editing"
4590 echo " QMAKE_INCDIR_OPENGL_ES2, QMAKE_LIBDIR_OPENGL_ES2 and QMAKE_LIBS_OPENGL_ES2 in"
4591 echo " ${XQMAKESPEC}."
4594 elif [ "$CFG_OPENGL" = "desktop" ]; then
4595 # Desktop OpenGL support
4596 compileTest unix/opengldesktop "OpenGL"
4597 if [ $? != "0" ]; then
4598 echo "The OpenGL functionality test failed!"
4599 echo " You might need to modify the include and library search paths by editing"
4600 echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in"
4601 echo " ${XQMAKESPEC}."
4606 # auto-detect FontConfig support
4607 if [ "$CFG_FONTCONFIG" != "no" ]; then
4608 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists fontconfig --exists freetype2 2>/dev/null; then
4609 QT_CFLAGS_FONTCONFIG=`$PKG_CONFIG --cflags fontconfig --cflags freetype2 2>/dev/null`
4610 QT_LIBS_FONTCONFIG=`$PKG_CONFIG --libs fontconfig --libs freetype2 2>/dev/null`
4612 QT_CFLAGS_FONTCONFIG=
4613 QT_LIBS_FONTCONFIG="-lfreetype -lfontconfig"
4615 if compileTest unix/fontconfig "FontConfig" $QT_CFLAGS_FONTCONFIG $QT_LIBS_FONTCONFIG; then
4616 QT_CONFIG="$QT_CONFIG fontconfig"
4617 QMakeVar set QMAKE_CFLAGS_FONTCONFIG "$QT_CFLAGS_FONTCONFIG"
4618 QMakeVar set QMAKE_LIBS_FONTCONFIG "$QT_LIBS_FONTCONFIG"
4620 CFG_LIBFREETYPE=system
4627 # Save these for a check later
4628 ORIG_CFG_XCB="$CFG_XCB"
4629 ORIG_CFG_EGLFS="$CFG_EGLFS"
4630 ORIG_CFG_DIRECTFB="$CFG_DIRECTFB"
4631 ORIG_CFG_LINUXFB="$CFG_LINUXFB"
4632 ORIG_CFG_KMS="$CFG_KMS"
4634 if [ "$CFG_LIBUDEV" != "no" ]; then
4635 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists libudev 2>/dev/null; then
4636 QMAKE_INCDIR_LIBUDEV=`$PKG_CONFIG --cflags-only-I libudev 2>/dev/null | sed -e 's,^-I,,g' -e 's, -I, ,g'`
4637 QMAKE_LIBS_LIBUDEV=`$PKG_CONFIG --libs libudev 2>/dev/null`
4638 QMakeVar set QMAKE_INCDIR_LIBUDEV "$QMAKE_INCDIR_LIBUDEV"
4639 QMakeVar set QMAKE_LIBS_LIBUDEV "$QMAKE_LIBS_LIBUDEV"
4641 if compileTest unix/libudev "libudev" $QMAKE_INCDIR_LIBUDEV $QMAKE_LIBS_LIBUDEV; then
4643 QT_CONFIG="$QT_CONFIG libudev"
4644 elif [ "$CFG_LIBUDEV" = "yes" ]; then
4645 echo "The libudev functionality test failed!"
4651 if [ "$CFG_LIBUDEV" = "no" ]; then
4652 QMakeVar add DEFINES QT_NO_LIBUDEV
4655 if [ "$CFG_EVDEV" != "no" ]; then
4656 if compileTest unix/evdev "evdev"; then
4658 QT_CONFIG="$QT_CONFIG evdev"
4659 elif [ "$CFG_EVDEV" = "yes" ]; then
4660 echo "The evdev functionality test failed!"
4666 if [ "$CFG_EVDEV" = "no" ]; then
4667 QMakeVar add DEFINES QT_NO_EVDEV
4670 # Check we actually have X11 :-)
4671 if compileTest x11/xlib "XLib"; then
4672 QT_CONFIG="$QT_CONFIG xlib"
4675 # auto-detect Xrender support
4676 if [ "$CFG_XRENDER" != "no" ]; then
4677 if compileTest x11/xrender "Xrender"; then
4679 QT_CONFIG="$QT_CONFIG xrender"
4681 if [ "$CFG_XRENDER" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4682 echo "Xrender support cannot be enabled due to functionality tests!"
4683 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4684 echo " If you believe this message is in error you may use the continue"
4685 echo " switch (-continue) to $0 to continue."
4693 if [ "$CFG_XCB" != "no" ]; then
4694 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists "xcb >= 1.5" 2>/dev/null; then
4695 QMAKE_CFLAGS_XCB="`$PKG_CONFIG --cflags xcb 2>/dev/null`"
4696 QMAKE_LIBS_XCB="`$PKG_CONFIG --libs xcb 2>/dev/null`"
4698 if compileTest qpa/xcb "xcb" $QMAKE_CFLAGS_XCB $QMAKE_LIBS_XCB; then
4700 if compileTest qpa/xcb-render "xcb-render" $QMAKE_CFLAGS_XCB $QMAKE_LIBS_XCB; then
4701 QT_CONFIG="$QT_CONFIG xcb-render"
4704 if compileTest qpa/xcb-poll-for-queued-event "xcb-poll-for-queued-event" $QMAKE_CFLAGS_XCB $QMAKE_LIBS_XCB; then
4706 QT_CONFIG="$QT_CONFIG xcb-poll-for-queued-event"
4709 if compileTest qpa/xcb-xlib "xcb-xlib" $QMAKE_CFLAGS_XCB $QMAKE_LIBS_XCB; then
4710 QT_CONFIG="$QT_CONFIG xcb-xlib"
4713 # auto-detect XInput2 support. Needed by xcb too.
4714 if [ "$CFG_XINPUT2" != "no" ]; then
4715 if compileTest x11/xinput2 "XInput2"; then
4719 if [ "$CFG_XINPUT2" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4720 echo "XInput2 support cannot be enabled due to functionality tests!"
4721 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4722 echo " If you believe this message is in error you may use the continue"
4723 echo " switch (-continue) to $0 to continue."
4731 if [ "$CFG_XCB" = "yes" ]; then
4732 echo "The XCB test failed!"
4733 echo " You might need to install dependency packages."
4734 echo " See src/plugins/platforms/xcb/README."
4740 if [ "$CFG_XCB" = "no" ]; then
4741 QMakeVar add DEFINES QT_NO_XCB
4744 if [ "$CFG_DIRECTFB" != "no" ]; then
4745 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists directfb 2>/dev/null; then
4746 QMAKE_CFLAGS_DIRECTFB=`$PKG_CONFIG --cflags directfb 2>/dev/null`
4747 QMAKE_LIBS_DIRECTFB=`$PKG_CONFIG --libs directfb 2>/dev/null`
4748 if compileTest qpa/directfb "DirectFB" $QMAKE_CFLAGS_DIRECTFB $QMAKE_LIBS_DIRECTFB; then
4750 elif [ "$CFG_DIRECTFB" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4751 echo " DirectFB support cannot be enabled due to functionality tests!"
4752 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4753 echo " If you believe this message is in error you may use the continue"
4754 echo " switch (-continue) to $0 to continue."
4764 if [ "$CFG_LINUXFB" != "no" ]; then
4765 if compileTest qpa/linuxfb "LinuxFB"; then
4767 elif [ "$CFG_LINUXFB" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4768 echo " Linux Framebuffer support cannot be enabled due to functionality tests!"
4769 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4770 echo " If you believe this message is in error you may use the continue"
4771 echo " switch (-continue) to $0 to continue."
4778 if [ "$CFG_KMS" != "no" ]; then
4779 if compileTest qpa/kms "KMS"; then
4781 elif [ "$CFG_KMS" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4782 echo " KMS support cannot be enabled due to functionality tests!"
4783 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4784 echo " If you believe this message is in error you may use the continue"
4785 echo " switch (-continue) to $0 to continue."
4792 # Detect libxkbcommon
4793 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists xkbcommon 2>/dev/null; then
4794 QMAKE_CFLAGS_XKBCOMMON="`$PKG_CONFIG --cflags xkbcommon 2>/dev/null`"
4795 QMAKE_LIBS_XKBCOMMON="`$PKG_CONFIG --libs xkbcommon 2>/dev/null`"
4796 QMAKE_CFLAGS_XCB="$QMAKE_CFLAGS_XCB $QMAKE_CFLAGS_XKBCOMMON"
4797 QMAKE_LIBS_XCB="$QMAKE_LIBS_XCB $QMAKE_LIBS_XKBCOMMON"
4799 QMAKE_DEFINES_XCB=QT_NO_XCB_XKB
4803 if [ "$CFG_EGL" != "no" ] && [ "$CFG_OPENGL" != "desktop" ]; then
4804 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists egl 2>/dev/null; then
4805 QMAKE_INCDIR_EGL=`$PKG_CONFIG --cflags-only-I egl 2>/dev/null | sed -e 's,^-I,,g' -e 's, -I, ,g'`
4806 QMAKE_LIBS_EGL=`$PKG_CONFIG --libs egl 2>/dev/null`
4807 QMAKE_CFLAGS_EGL=`$PKG_CONFIG --cflags egl 2>/dev/null`
4808 QMakeVar set QMAKE_INCDIR_EGL "$QMAKE_INCDIR_EGL"
4809 QMakeVar set QMAKE_LIBS_EGL "$QMAKE_LIBS_EGL"
4810 fi # detect EGL support
4811 if compileTest qpa/egl "EGL" $QMAKE_CFLAGS_EGL $QMAKE_LIBS_EGL; then
4813 elif [ "$CFG_EGL" = "yes" ]; then
4814 echo " The EGL functionality test failed; EGL is required by some QPA plugins to manage contexts & surfaces."
4815 echo " You might need to modify the include and library search paths by editing"
4816 echo " QMAKE_INCDIR_EGL, QMAKE_LIBDIR_EGL and QMAKE_LIBS_EGL in ${XQMAKESPEC}."
4821 elif [ "$CFG_OPENGL" = "desktop" ]; then
4822 if [ "$CFG_EGL" = "yes" ]; then
4823 echo "EGL support was requested but Qt is being configured for desktop OpenGL."
4824 echo "Either disable EGL support or enable OpenGL ES support."
4830 if [ "$CFG_EGLFS" != "no" ]; then
4831 if [ "$CFG_OPENGL" = "es2" ] && [ "$CFG_EVDEV" = "yes" ]; then
4832 CFG_EGLFS="$CFG_EGL"
4838 if [ "$CFG_KMS" = "yes" ]; then
4839 if [ "$CFG_OPENGL" = "es2" ] && [ "$CFG_EGL" = "yes" ]; then
4846 # Detect accessibility support
4847 if [ "$CFG_ACCESSIBILITY" != "no" ]; then
4848 if [ "$CFG_XCB" = "no" ]; then
4849 CFG_ACCESSIBILITY=yes
4851 # linux/xcb accessibility needs dbus and atspi-2
4852 if [ "$CFG_DBUS" != "no" ] && [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists "atspi-2" 2>/dev/null; then
4853 CFG_ACCESSIBILITY=yes
4855 if [ "$CFG_ACCESSIBILITY" = "auto" ]; then
4856 CFG_ACCESSIBILITY=no
4858 echo "Accessibility support needs pkg-config and libatspi2."
4865 # Determine the default QPA platform
4866 if [ -z "$QT_QPA_DEFAULT_PLATFORM" ]; then
4868 QT_QPA_DEFAULT_PLATFORM=`getXQMakeConf QT_QPA_DEFAULT_PLATFORM`
4869 if [ -z "$QT_QPA_DEFAULT_PLATFORM" ]; then
4870 if [ "$XPLATFORM_MINGW" = "yes" ]; then
4871 QT_QPA_DEFAULT_PLATFORM="windows"
4872 elif [ "$BUILD_ON_MAC" = "yes" ]; then
4873 QT_QPA_DEFAULT_PLATFORM="cocoa"
4874 elif [ "$UNAME_SYSTEM" = "QNX" ]; then
4875 QT_QPA_DEFAULT_PLATFORM="qnx"
4877 QT_QPA_DEFAULT_PLATFORM="xcb"
4882 if [ -n "$QMAKE_CFLAGS_XCB" ] || [ -n "$QMAKE_LIBS_XCB" ]; then
4883 QMakeVar set QMAKE_CFLAGS_XCB "$QMAKE_CFLAGS_XCB"
4884 QMakeVar set QMAKE_LIBS_XCB "$QMAKE_LIBS_XCB"
4885 QMakeVar set QMAKE_DEFINES_XCB "$QMAKE_DEFINES_XCB"
4887 if [ "$CFG_DIRECTFB" = "yes" ]; then
4888 QT_CONFIG="$QT_CONFIG directfb"
4889 QMakeVar set QMAKE_CFLAGS_DIRECTFB "$QMAKE_CFLAGS_DIRECTFB"
4890 QMakeVar set QMAKE_LIBS_DIRECTFB "$QMAKE_LIBS_DIRECTFB"
4892 if [ "$CFG_LINUXFB" = "yes" ]; then
4893 QT_CONFIG="$QT_CONFIG linuxfb"
4895 if [ "$CFG_KMS" = "yes" ]; then
4896 QT_CONFIG="$QT_CONFIG kms"
4899 if [ "$BUILD_ON_MAC" = "yes" ]; then
4900 if compileTest mac/coreservices "CoreServices"; then
4901 QT_CONFIG="$QT_CONFIG coreservices"
4903 QMakeVar add DEFINES QT_NO_CORESERVICES
4907 if [ "$BUILD_ON_MAC" = "no" ] && [ "$XPLATFORM_MINGW" = "no" ] && [ "$XPLATFORM_QNX" = "no" ]; then
4908 if [ "$CFG_XCB" = "no" ] && [ "$CFG_EGLFS" = "no" ] && [ "$CFG_DIRECTFB" = "no" ] && [ "$CFG_LINUXFB" = "no" ] && [ "$CFG_KMS" = "no" ]; then
4909 if [ "$QPA_PLATFORM_GUARD" = "yes" ] &&
4910 ( [ "$ORIG_CFG_XCB" = "auto" ] || [ "$ORIG_CFG_EGLFS" = "auto" ] || [ "$ORIG_CFG_DIRECTFB" = "auto" ] || [ "$ORIG_CFG_LINUXFB" = "auto" ] || [ "$ORIG_CFG_KMS" = "auto" ] ); then
4911 echo "No QPA platform plugin enabled!"
4912 echo " If you really want to build without a QPA platform plugin you must pass"
4913 echo " -no-qpa-platform-guard to configure. Doing this will"
4914 echo " produce a Qt that can not run GUI applications."
4915 echo " The dependencies needed for xcb to build are listed in"
4916 echo " src/plugins/platforms/xcb/README"
4923 [ "$XPLATFORM_MINGW" = "yes" ] && [ "$CFG_LIBFREETYPE" = "auto" ] && CFG_LIBFREETYPE=no
4924 if [ "$CFG_LIBFREETYPE" = "auto" ]; then
4925 if compileTest unix/freetype "FreeType"; then
4926 CFG_LIBFREETYPE=system
4932 if ! compileTest unix/stl "STL" &&
4933 [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4934 echo "STL functionality check failed! Cannot build Qt with this STL library."
4935 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4940 # detect POSIX clock_gettime()
4941 if [ "$CFG_CLOCK_GETTIME" = "auto" ]; then
4942 if compileTest unix/clock-gettime "POSIX clock_gettime()"; then
4943 CFG_CLOCK_GETTIME=yes
4945 CFG_CLOCK_GETTIME=no
4949 # detect POSIX monotonic clocks
4950 if [ "$CFG_CLOCK_GETTIME" = "yes" ] && [ "$CFG_CLOCK_MONOTONIC" = "auto" ]; then
4951 if compileTest unix/clock-monotonic "POSIX Monotonic Clock"; then
4952 CFG_CLOCK_MONOTONIC=yes
4954 CFG_CLOCK_MONOTONIC=no
4956 elif [ "$CFG_CLOCK_GETTIME" = "no" ]; then
4957 CFG_CLOCK_MONOTONIC=no
4961 if [ "$CFG_MREMAP" = "auto" ]; then
4962 if compileTest unix/mremap "mremap"; then
4969 # find if the platform provides getaddrinfo (ipv6 dns lookups)
4970 if [ "$CFG_GETADDRINFO" != "no" ]; then
4971 if compileTest unix/getaddrinfo "getaddrinfo"; then
4974 if [ "$CFG_GETADDRINFO" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4975 echo "getaddrinfo support cannot be enabled due to functionality tests!"
4976 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4977 echo " If you believe this message is in error you may use the continue"
4978 echo " switch (-continue) to $0 to continue."
4986 # find if the platform provides inotify
4987 if [ "$CFG_INOTIFY" != "no" ]; then
4988 if compileTest unix/inotify "inotify"; then
4991 if [ "$CFG_INOTIFY" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4992 echo "inotify support cannot be enabled due to functionality tests!"
4993 echo " Turn on verbose messaging (-v) to $0 to see the final report."
4994 echo " If you believe this message is in error you may use the continue"
4995 echo " switch (-continue) to $0 to continue."
5003 # find if the platform provides if_nametoindex (ipv6 interface name support)
5004 if [ "$CFG_IPV6IFNAME" != "no" ]; then
5005 if compileTest unix/ipv6ifname "IPv6 interface name"; then
5008 if [ "$CFG_IPV6IFNAME" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
5009 echo "IPv6 interface name support cannot be enabled due to functionality tests!"
5010 echo " Turn on verbose messaging (-v) to $0 to see the final report."
5011 echo " If you believe this message is in error you may use the continue"
5012 echo " switch (-continue) to $0 to continue."
5020 # find if the platform provides getifaddrs (network interface enumeration)
5021 if [ "$CFG_GETIFADDRS" != "no" ]; then
5022 if compileTest unix/getifaddrs "getifaddrs"; then
5025 if [ "$CFG_GETIFADDRS" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
5026 echo "getifaddrs support cannot be enabled due to functionality tests!"
5027 echo " Turn on verbose messaging (-v) to $0 to see the final report."
5028 echo " If you believe this message is in error you may use the continue"
5029 echo " switch (-continue) to $0 to continue."
5038 if [ "$CFG_OPENSSL" != "no" ]; then
5039 if compileTest unix/openssl "OpenSSL"; then
5040 if [ "$CFG_OPENSSL" = "auto" ]; then
5044 if ( [ "$CFG_OPENSSL" = "yes" ] || [ "$CFG_OPENSSL" = "linked" ] ) && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
5045 echo "OpenSSL support cannot be enabled due to functionality tests!"
5046 echo " Turn on verbose messaging (-v) to $0 to see the final report."
5047 echo " If you believe this message is in error you may use the continue"
5048 echo " switch (-continue) to $0 to continue."
5057 if [ "$CFG_PCRE" != "qt" ]; then
5058 if compileTest unix/pcre "PCRE"; then
5061 if [ "$CFG_PCRE" = "system" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
5062 echo "PCRE support cannot be enabled due to functionality tests!"
5063 echo " Turn on verbose messaging (-v) to $0 to see the final report."
5064 echo " If you believe this message is in error you may use the continue"
5065 echo " switch (-continue) to $0 to continue."
5073 # detect OpenVG support
5074 if [ "$CFG_OPENVG" != "no" ]; then
5075 if compileTest unix/openvg "OpenVG"; then
5076 if [ "$CFG_OPENVG" = "auto" ]; then
5079 elif compileTest unix/openvg "OpenVG" -config openvg_on_opengl; then
5080 if [ "$CFG_OPENVG" = "auto" ]; then
5083 CFG_OPENVG_ON_OPENGL=yes
5084 elif compileTest unix/openvg "OpenVG (lc includes)" -config lower_case_includes; then
5085 if [ "$CFG_OPENVG" = "auto" ]; then
5088 CFG_OPENVG_LC_INCLUDES=yes
5089 elif compileTest unix/openvg "OpenVG (lc includes)" -config "openvg_on_opengl lower_case_includes"; then
5090 if [ "$CFG_OPENVG" = "auto" ]; then
5093 CFG_OPENVG_LC_INCLUDES=yes
5094 CFG_OPENVG_ON_OPENGL=yes
5096 if [ "$CFG_OPENVG" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
5097 echo "$CFG_OPENVG was specified for OpenVG but cannot be enabled due to functionality tests!"
5098 echo " Turn on verbose messaging (-v) to $0 to see the final report."
5099 echo " If you believe this message is in error you may use the continue"
5100 echo " switch (-continue) to $0 to continue."
5106 if [ "$CFG_OPENVG" = "yes" ] && compileTest unix/shivavg "ShivaVG"; then
5107 CFG_OPENVG_SHIVA=yes
5111 if [ "$CFG_ALSA" = "auto" ]; then
5112 if compileTest unix/alsa "alsa"; then
5119 if [ "$CFG_JAVASCRIPTCORE_JIT" = "yes" ] || [ "$CFG_JAVASCRIPTCORE_JIT" = "auto" ]; then
5120 if [ "$CFG_ARCH" = "arm" ]; then
5121 compileTest unix/javascriptcore-jit "javascriptcore-jit"
5122 if [ $? != "0" ]; then
5123 CFG_JAVASCRIPTCORE_JIT=no
5126 case "$XPLATFORM" in
5128 CFG_JAVASCRIPTCORE_JIT=no
5134 if [ "$CFG_JAVASCRIPTCORE_JIT" = "yes" ]; then
5135 QMakeVar set JAVASCRIPTCORE_JIT yes
5136 elif [ "$CFG_JAVASCRIPTCORE_JIT" = "no" ]; then
5137 QMakeVar set JAVASCRIPTCORE_JIT no
5140 if [ "$CFG_AUDIO_BACKEND" = "auto" ]; then
5141 CFG_AUDIO_BACKEND=yes
5144 if [ "$CFG_LARGEFILE" != "yes" ] && [ "$XPLATFORM_MINGW" = "yes" ]; then
5145 echo "Warning: largefile support cannot be disabled for win32."
5149 #-------------------------------------------------------------------------------
5150 # ask for all that hasn't been auto-detected or specified in the arguments
5151 #-------------------------------------------------------------------------------
5153 [ "$CFG_CXX11" = "yes" ] && QT_CONFIG="$QT_CONFIG c++11"
5155 # disable accessibility
5156 if [ "$CFG_ACCESSIBILITY" = "no" ]; then
5157 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ACCESSIBILITY"
5159 QT_CONFIG="$QT_CONFIG accessibility"
5163 if [ "$CFG_EGL" = "yes" ]; then
5164 QT_CONFIG="$QT_CONFIG egl"
5166 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_EGL"
5170 if [ "$CFG_EGLFS" = "yes" ]; then
5171 QT_CONFIG="$QT_CONFIG eglfs"
5173 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_EGLFS"
5177 if [ "$CFG_OPENVG" = "no" ]; then
5178 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENVG"
5180 QT_CONFIG="$QT_CONFIG openvg"
5181 if [ "$CFG_OPENVG_LC_INCLUDES" = "yes" ]; then
5182 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_LOWER_CASE_VG_INCLUDES"
5184 if [ "$CFG_OPENVG_ON_OPENGL" = "yes" ]; then
5185 QT_CONFIG="$QT_CONFIG openvg_on_opengl"
5187 if [ "$CFG_OPENVG_SHIVA" = "yes" ]; then
5188 QT_CONFIG="$QT_CONFIG shivavg"
5189 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_SHIVAVG"
5194 if [ "$CFG_OPENGL" = "no" ]; then
5195 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENGL"
5197 QT_CONFIG="$QT_CONFIG opengl"
5200 if [ "$CFG_OPENGL" = "es2" ]; then
5201 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_OPENGL_ES"
5204 if [ "$CFG_OPENGL" = "es2" ]; then
5205 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_OPENGL_ES_2"
5206 QT_CONFIG="$QT_CONFIG opengles2"
5209 # build up the variables for output
5210 if [ "$CFG_DEBUG" = "yes" ]; then
5211 QMAKE_OUTDIR="${QMAKE_OUTDIR}debug"
5212 elif [ "$CFG_DEBUG" = "no" ]; then
5213 QMAKE_OUTDIR="${QMAKE_OUTDIR}release"
5215 if [ "$CFG_SHARED" = "yes" ]; then
5216 QMAKE_OUTDIR="${QMAKE_OUTDIR}-shared"
5217 QT_CONFIG="$QT_CONFIG shared"
5218 elif [ "$CFG_SHARED" = "no" ]; then
5219 QMAKE_OUTDIR="${QMAKE_OUTDIR}-static"
5220 QT_CONFIG="$QT_CONFIG static"
5223 #FIXME: qpa is implicit this should all be removed
5224 QMAKE_CONFIG="$QMAKE_CONFIG qpa"
5225 QT_CONFIG="$QT_CONFIG qpa"
5226 QTCONFIG_CONFIG="$QTCONFIG_CONFIG qpa"
5227 rm -f "src/.moc/$QMAKE_OUTDIR/allmoc.cpp" # needs remaking if config changes
5229 if [ "$XPLATFORM_MINGW" != "yes" ]; then
5230 # Do not set this here for Windows. Let qmake do it so
5231 # debug and release precompiled headers are kept separate.
5232 QMakeVar set PRECOMPILED_DIR ".pch/$QMAKE_OUTDIR"
5234 QMakeVar set OBJECTS_DIR ".obj/$QMAKE_OUTDIR"
5235 QMakeVar set MOC_DIR ".moc/$QMAKE_OUTDIR"
5236 QMakeVar set RCC_DIR ".rcc/$QMAKE_OUTDIR"
5237 QMakeVar set UI_DIR ".uic/$QMAKE_OUTDIR"
5238 if [ "$CFG_LARGEFILE" = "yes" ] && [ "$XPLATFORM_MINGW" != "yes" ]; then
5239 QMAKE_CONFIG="$QMAKE_CONFIG largefile"
5241 if [ "$CFG_USE_GNUMAKE" = "yes" ]; then
5242 QMAKE_CONFIG="$QMAKE_CONFIG GNUmake"
5244 [ "$CFG_REDUCE_EXPORTS" = "yes" ] && QT_CONFIG="$QT_CONFIG reduce_exports"
5245 [ "$CFG_REDUCE_RELOCATIONS" = "yes" ] && QT_CONFIG="$QT_CONFIG reduce_relocations"
5246 [ "$CFG_PRECOMPILE" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG precompile_header"
5247 if [ "$CFG_SEPARATE_DEBUG_INFO" = "yes" ]; then
5248 QMakeVar add QMAKE_CFLAGS -g
5249 QMakeVar add QMAKE_CXXFLAGS -g
5250 QT_CONFIG="$QT_CONFIG separate_debug_info"
5252 if [ "$CFG_SEPARATE_DEBUG_INFO_NOCOPY" = "yes" ] ; then
5253 QT_CONFIG="$QT_CONFIG separate_debug_info_nocopy"
5255 [ "$CFG_SSE2" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG sse2"
5256 [ "$CFG_SSE3" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG sse3"
5257 [ "$CFG_SSSE3" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG ssse3"
5258 [ "$CFG_SSE4_1" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG sse4_1"
5259 [ "$CFG_SSE4_2" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG sse4_2"
5260 [ "$CFG_AVX" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG avx"
5261 [ "$CFG_AVX2" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG avx2"
5262 [ "$CFG_IWMMXT" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG iwmmxt"
5263 [ "$CFG_NEON" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG neon"
5264 if [ "$CFG_ARCH" = "mips" ]; then
5265 [ "$CFG_MIPS_DSP" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG mips_dsp"
5266 [ "$CFG_MIPS_DSPR2" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG mips_dspr2"
5268 if [ "$CFG_CLOCK_GETTIME" = "yes" ]; then
5269 QT_CONFIG="$QT_CONFIG clock-gettime"
5271 if [ "$CFG_CLOCK_MONOTONIC" = "yes" ]; then
5272 QT_CONFIG="$QT_CONFIG clock-monotonic"
5274 if [ "$CFG_MREMAP" = "yes" ]; then
5275 QT_CONFIG="$QT_CONFIG mremap"
5277 if [ "$CFG_GETADDRINFO" = "yes" ]; then
5278 QT_CONFIG="$QT_CONFIG getaddrinfo"
5280 if [ "$CFG_IPV6IFNAME" = "yes" ]; then
5281 QT_CONFIG="$QT_CONFIG ipv6ifname"
5283 if [ "$CFG_GETIFADDRS" = "yes" ]; then
5284 QT_CONFIG="$QT_CONFIG getifaddrs"
5286 if [ "$CFG_INOTIFY" = "yes" ]; then
5287 QT_CONFIG="$QT_CONFIG inotify"
5289 if [ "$CFG_LIBJPEG" = "no" ]; then
5291 elif [ "$CFG_LIBJPEG" = "system" ]; then
5292 QT_CONFIG="$QT_CONFIG system-jpeg"
5294 if [ "$CFG_JPEG" = "no" ]; then
5295 QT_CONFIG="$QT_CONFIG no-jpeg"
5296 elif [ "$CFG_JPEG" = "yes" ]; then
5297 QT_CONFIG="$QT_CONFIG jpeg"
5299 if [ "$CFG_LIBPNG" = "no" ]; then
5302 if [ "$CFG_LIBPNG" = "system" ]; then
5303 QT_CONFIG="$QT_CONFIG system-png"
5305 if [ "$CFG_PNG" = "no" ]; then
5306 QT_CONFIG="$QT_CONFIG no-png"
5307 elif [ "$CFG_PNG" = "yes" ]; then
5308 QT_CONFIG="$QT_CONFIG png"
5310 if [ "$CFG_GIF" = "no" ]; then
5311 QT_CONFIG="$QT_CONFIG no-gif"
5312 elif [ "$CFG_GIF" = "yes" ]; then
5313 QT_CONFIG="$QT_CONFIG gif"
5315 if [ "$CFG_LIBFREETYPE" = "no" ]; then
5316 QT_CONFIG="$QT_CONFIG no-freetype"
5317 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_FREETYPE"
5318 elif [ "$CFG_LIBFREETYPE" = "system" ]; then
5319 QT_CONFIG="$QT_CONFIG system-freetype"
5321 QT_CONFIG="$QT_CONFIG freetype"
5323 if [ "$CFG_GUI" = "auto" ]; then
5326 if [ "$CFG_GUI" = "no" ]; then
5327 QT_CONFIG="$QT_CONFIG no-gui"
5330 if [ "$CFG_WIDGETS" = "no" ]; then
5331 QT_CONFIG="$QT_CONFIG no-widgets"
5332 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_WIDGETS"
5335 if [ "x$BUILD_ON_MAC" = "xyes" ] && [ "$XPLATFORM_MINGW" != "yes" ]; then
5336 #On Mac we implicitly link against libz, so we
5337 #never use the 3rdparty stuff.
5338 [ "$CFG_ZLIB" = "yes" ] && CFG_ZLIB="system"
5340 if [ "$CFG_ZLIB" = "yes" ]; then
5341 QT_CONFIG="$QT_CONFIG zlib"
5342 elif [ "$CFG_ZLIB" = "system" ]; then
5343 QT_CONFIG="$QT_CONFIG system-zlib"
5346 [ "$CFG_NIS" = "yes" ] && QT_CONFIG="$QT_CONFIG nis"
5347 [ "$CFG_CUPS" = "yes" ] && QT_CONFIG="$QT_CONFIG cups"
5348 [ "$CFG_ICONV" = "yes" ] && QT_CONFIG="$QT_CONFIG iconv"
5349 [ "$CFG_ICONV" = "sun" ] && QT_CONFIG="$QT_CONFIG sun-libiconv"
5350 [ "$CFG_ICONV" = "gnu" ] && QT_CONFIG="$QT_CONFIG gnu-libiconv"
5351 [ "$CFG_GLIB" = "yes" ] && QT_CONFIG="$QT_CONFIG glib"
5352 [ "$CFG_GSTREAMER" = "yes" ] && QT_CONFIG="$QT_CONFIG gstreamer"
5353 [ "$CFG_DBUS" = "yes" ] && QT_CONFIG="$QT_CONFIG dbus"
5354 [ "$CFG_DBUS" = "linked" ] && QT_CONFIG="$QT_CONFIG dbus dbus-linked"
5355 [ "$CFG_OPENSSL" = "yes" ] && QT_CONFIG="$QT_CONFIG openssl"
5356 [ "$CFG_OPENSSL" = "linked" ] && QT_CONFIG="$QT_CONFIG openssl-linked"
5357 [ "$CFG_MAC_HARFBUZZ" = "yes" ] && QT_CONFIG="$QT_CONFIG harfbuzz"
5358 [ "$CFG_XCB" = "yes" ] && QT_CONFIG="$QT_CONFIG xcb"
5359 [ "$CFG_XINPUT2" = "yes" ] && QT_CONFIG="$QT_CONFIG xinput2"
5361 [ '!' -z "$DEFINES" ] && QMakeVar add DEFINES "$DEFINES"
5362 [ '!' -z "$L_FLAGS" ] && QMakeVar add LIBS "$L_FLAGS"
5364 if [ "$PLATFORM_MAC" = "yes" ] && [ "$QT_CROSS_COMPILE" = "no" ]; then
5365 if [ "$CFG_RPATH" = "yes" ]; then
5366 QMAKE_CONFIG="$QMAKE_CONFIG absolute_library_soname"
5368 elif [ -z "`getXQMakeConf 'QMAKE_(LFLAGS_)?RPATH'`" ]; then
5369 if [ -n "$RPATH_FLAGS" ]; then
5371 echo "ERROR: -R cannot be used on this platform as \$QMAKE_LFLAGS_RPATH is"
5375 elif [ "$CFG_RPATH" = "yes" ]; then
5376 RPATH_MESSAGE=" NOTE: This platform does not support runtime library paths, using -no-rpath."
5380 if [ -n "$RPATH_FLAGS" ]; then
5381 # add the user defined rpaths
5382 QMakeVar add QMAKE_RPATHDIR "$RPATH_FLAGS"
5385 if [ "$CFG_RPATH" = "yes" ]; then
5386 QT_CONFIG="$QT_CONFIG rpath"
5389 if [ '!' -z "$I_FLAGS" ]; then
5390 # add the user define include paths
5391 QMakeVar add QMAKE_CFLAGS "$I_FLAGS"
5392 QMakeVar add QMAKE_CXXFLAGS "$I_FLAGS"
5395 if [ '!' -z "$W_FLAGS" ]; then
5396 # add the user defined warning flags
5397 QMakeVar add QMAKE_CFLAGS_WARN_ON "$W_FLAGS"
5398 QMakeVar add QMAKE_CXXFLAGS_WARN_ON "$W_FLAGS"
5399 QMakeVar add QMAKE_OBJECTIVE_CFLAGS_WARN_ON "$W_FLAGS"
5402 if [ "$XPLATFORM_MINGW" = "yes" ]; then
5403 # mkspecs/features/win32/default_pre.prf sets "no-rtti".
5404 # Follow default behavior of configure.exe by overriding with "rtti".
5405 QTCONFIG_CONFIG="$QTCONFIG_CONFIG rtti"
5408 if [ "$CFG_ALSA" = "yes" ]; then
5409 QT_CONFIG="$QT_CONFIG alsa"
5412 if [ "$CFG_PULSEAUDIO" = "yes" ]; then
5413 QT_CONFIG="$QT_CONFIG pulseaudio"
5416 if [ "$CFG_COREWLAN" = "yes" ]; then
5417 QT_CONFIG="$QT_CONFIG corewlan"
5420 if [ "$CFG_ICU" = "yes" ]; then
5421 QT_CONFIG="$QT_CONFIG icu"
5424 if [ "$CFG_FORCE_ASSERTS" = "yes" ]; then
5425 QT_CONFIG="$QT_CONFIG force_asserts"
5428 if [ "$CFG_PCRE" = "qt" ]; then
5429 QMAKE_CONFIG="$QMAKE_CONFIG pcre"
5433 # Some Qt modules are too advanced in C++ for some old compilers
5434 # Detect here the platforms where they are known to work.
5436 # See Qt documentation for more information on which features are
5437 # supported and on which compilers.
5439 canBuildQtConcurrent="yes"
5440 canUseV8Snapshot="yes"
5442 case "$XPLATFORM" in
5444 # PA-RISC's assembly is too limited
5445 # gcc 3.4 on that platform can't build QtXmlPatterns
5446 # the assembly it generates cannot be compiled
5448 # Check gcc's version
5449 case "$(${QMAKE_CONF_COMPILER} -dumpversion)" in
5453 canBuildQtXmlPatterns="no"
5457 canBuildQtXmlPatterns="no"
5461 unsupported/vxworks-*-g++*)
5464 unsupported/vxworks-*-dcc*)
5466 canBuildQtXmlPatterns="no"
5469 # Check gcc's version
5470 case "$(${QMAKE_CONF_COMPILER} -dumpversion)" in
5478 canBuildQtXmlPatterns="no"
5483 # Check the compiler version
5484 case `${QMAKE_CONF_COMPILER} -V 2>&1 | awk '{print $4}'` in
5487 canBuildQtXmlPatterns="no"
5488 canBuildQtConcurrent="no"
5492 canBuildQtConcurrent="no"
5498 canBuildQtXmlPatterns="no"
5499 canBuildQtConcurrent="no"
5505 # Get the xlC version
5506 cat > xlcver.c <<EOF
5510 printf("%d.%d\n", __xlC__ >> 8, __xlC__ & 0xFF);
5515 if ${QMAKE_CONF_COMPILER} -o xlcver xlcver.c >/dev/null 2>/dev/null; then
5516 xlcver=`./xlcver 2>/dev/null`
5519 if [ "$OPT_VERBOSE" = "yes" ]; then
5520 if [ -n "$xlcver" ]; then
5521 echo Found IBM xlC version: $xlcver.
5523 echo Could not determine IBM xlC version, assuming oldest supported.
5530 canBuildQtXmlPatterns="no"
5531 canBuildQtConcurrent="no"
5535 canBuildQtConcurrent="no"
5541 canBuildQtConcurrent="no"
5545 if [ "$CFG_GUI" = "no" ]; then
5546 # WebKit requires QtGui
5550 if [ "$CFG_SHARED" = "no" ]; then
5552 echo "WARNING: Using static linking will disable the WebKit module."
5557 CFG_CONCURRENT="yes"
5558 if [ "$canBuildQtConcurrent" = "no" ]; then
5559 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CONCURRENT"
5562 QT_CONFIG="$QT_CONFIG concurrent"
5566 if [ "$CFG_AUDIO_BACKEND" = "yes" ]; then
5567 QT_CONFIG="$QT_CONFIG audio-backend"
5571 if [ "$CFG_WEBKIT" = "debug" ]; then
5572 QMAKE_CONFIG="$QMAKE_CONFIG webkit-debug"
5576 QT_CONFIG="$QT_CONFIG v8"
5577 # Detect snapshot support
5578 if [ "$CFG_ARCH" != "$CFG_HOST_ARCH" ]; then
5579 case "$CFG_HOST_ARCH,$CFG_ARCH" in
5582 *) canUseV8Snapshot="no"
5586 if [ -n "$_SBOX_DIR" -a "$CFG_ARCH" = "arm" ]; then
5587 # QEMU crashes when building inside Scratchbox with an ARM target
5588 canUseV8Snapshot="no"
5591 if [ "$CFG_V8SNAPSHOT" = "auto" ]; then
5592 CFG_V8SNAPSHOT="$canUseV8Snapshot"
5594 if [ "$CFG_V8SNAPSHOT" = "yes" -a "$canUseV8Snapshot" = "no" ]; then
5595 echo "Error: V8 snapshot was requested, but is not supported on this platform."
5598 if [ "$CFG_V8SNAPSHOT" = "yes" ]; then
5599 QT_CONFIG="$QT_CONFIG v8snapshot"
5603 if [ "$CFG_QML_DEBUG" = "no" ]; then
5604 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_QML_NO_DEBUGGER"
5607 case "$QMAKE_CONF_COMPILER" in
5610 COMPILER_VERSION=`${QMAKE_CONF_COMPILER} -dumpversion 2>/dev/null`
5612 case "$COMPILER_VERSION" in
5614 QT_GCC_MAJOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\1,'`
5615 QT_GCC_MINOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\2,'`
5616 QT_GCC_PATCH_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\3,'`
5619 QT_GCC_MAJOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\).*,\1,'`
5620 QT_GCC_MINOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\).*,\2,'`
5621 QT_GCC_PATCH_VERSION=0
5631 #-------------------------------------------------------------------------------
5632 # part of configuration information goes into qconfig.h
5633 #-------------------------------------------------------------------------------
5635 case "$CFG_QCONFIG" in
5637 echo "/* Everything */" >"$outpath/src/corelib/global/qconfig.h.new"
5640 tmpconfig="$outpath/src/corelib/global/qconfig.h.new"
5641 echo "#ifndef QT_BOOTSTRAPPED" >"$tmpconfig"
5642 if [ -f "$relpath/src/corelib/global/qconfig-$CFG_QCONFIG.h" ]; then
5643 cat "$relpath/src/corelib/global/qconfig-$CFG_QCONFIG.h" >>"$tmpconfig"
5644 elif [ -f `"$relpath/config.tests/unix/makeabs" "${CFG_QCONFIG}"` ]; then
5645 cat `"$relpath/config.tests/unix/makeabs" "${CFG_QCONFIG}"` >>"$tmpconfig"
5647 echo "#endif" >>"$tmpconfig"
5651 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF
5655 # define QT_EDITION $QT_EDITION
5659 echo '/* Compile time features */' >>"$outpath/src/corelib/global/qconfig.h.new"
5660 [ '!' -z "$LicenseKeyExt" ] && echo "#define QT_PRODUCT_LICENSEKEY \"$LicenseKeyExt\"" >>"$outpath/src/corelib/global/qconfig.h.new"
5662 if [ "$CFG_SHARED" = "no" ]; then
5663 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF
5664 /* Qt was configured for a static build */
5665 #if !defined(QT_SHARED) && !defined(QT_STATIC)
5672 if [ "$CFG_LARGEFILE" = "yes" ] && [ "$XPLATFORM_MINGW" != "yes" ]; then
5673 echo "#define QT_LARGEFILE_SUPPORT 64" >>"$outpath/src/corelib/global/qconfig.h.new"
5676 if [ "$CFG_FRAMEWORK" = "yes" ]; then
5677 echo "#define QT_MAC_FRAMEWORK_BUILD" >>"$outpath/src/corelib/global/qconfig.h.new"
5680 if [ "$BUILD_ON_MAC" = "yes" ]; then
5681 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF
5682 #if defined(__LP64__)
5683 # define QT_POINTER_SIZE 8
5685 # define QT_POINTER_SIZE 4
5689 "$unixtests/ptrsize.test" "$XQMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath"
5690 echo "#define QT_POINTER_SIZE $?" >>"$outpath/src/corelib/global/qconfig.h.new"
5693 #REDUCE_RELOCATIONS is a elf/unix only thing, so not in windows configure.exe
5694 if [ "$CFG_REDUCE_RELOCATIONS" = "yes" ]; then
5695 echo "#define QT_REDUCE_RELOCATIONS" >>"$outpath/src/corelib/global/qconfig.h.new"
5699 echo "" >>"$outpath/src/corelib/global/qconfig.h.new"
5701 if [ "$CFG_DEV" = "yes" ]; then
5702 echo "#define QT_BUILD_INTERNAL" >>"$outpath/src/corelib/global/qconfig.h.new"
5705 # Add QPA to config.h
5706 QCONFIG_FLAGS="$QCONFIG_FLAGS"
5708 if [ "${CFG_USE_FLOATMATH}" = "yes" ]; then
5709 QCONFIG_FLAGS="${QCONFIG_FLAGS} QT_USE_MATH_H_FLOATS"
5712 # Add turned on SQL drivers
5713 for DRIVER in $CFG_SQL_AVAILABLE; do
5714 eval "VAL=\$CFG_SQL_$DRIVER"
5717 ONDRIVER=`echo $DRIVER | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
5718 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_SQL_$ONDRIVER"
5719 SQL_DRIVERS="$SQL_DRIVERS $DRIVER"
5722 SQL_PLUGINS="$SQL_PLUGINS $DRIVER"
5728 QMakeVar set sql-drivers "$SQL_DRIVERS"
5729 QMakeVar set sql-plugins "$SQL_PLUGINS"
5731 # Add other configuration options to the qconfig.h file
5732 [ "$CFG_GIF" = "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_BUILTIN_GIF_READER=1"
5733 [ "$CFG_PNG" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IMAGEFORMAT_PNG"
5734 [ "$CFG_JPEG" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IMAGEFORMAT_JPEG"
5735 [ "$CFG_ZLIB" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ZLIB"
5736 [ "$CFG_DBUS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_DBUS"
5738 # X11/Unix/Mac only configs
5739 [ "$CFG_CUPS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CUPS"
5740 [ "$CFG_ICONV" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ICONV"
5741 [ "$CFG_GLIB" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GLIB"
5742 [ "$CFG_GSTREAMER" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GSTREAMER"
5743 [ "$CFG_QGTKSTYLE" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_STYLE_GTK"
5744 [ "$CFG_CLOCK_MONOTONIC" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CLOCK_MONOTONIC"
5745 [ "$CFG_MREMAP" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MREMAP"
5746 [ "$CFG_GETADDRINFO" = "no" ]&& QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GETADDRINFO"
5747 [ "$CFG_IPV6IFNAME" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IPV6IFNAME"
5748 [ "$CFG_GETIFADDRS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GETIFADDRS"
5749 [ "$CFG_INOTIFY" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_INOTIFY"
5750 [ "$CFG_NIS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_NIS"
5751 [ "$CFG_OPENSSL" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENSSL QT_NO_SSL"
5752 [ "$CFG_OPENSSL" = "linked" ]&& QCONFIG_FLAGS="$QCONFIG_FLAGS QT_LINKED_OPENSSL"
5754 [ "$CFG_SM" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SESSIONMANAGER"
5755 [ "$CFG_XCURSOR" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XCURSOR"
5756 [ "$CFG_XFIXES" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XFIXES"
5757 [ "$CFG_FONTCONFIG" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_FONTCONFIG"
5758 [ "$CFG_XINERAMA" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XINERAMA"
5759 [ "$CFG_XKB" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XKB"
5760 [ "$CFG_XRANDR" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XRANDR"
5761 [ "$CFG_XRENDER" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XRENDER"
5762 [ "$CFG_MITSHM" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MITSHM"
5763 [ "$CFG_XSHAPE" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SHAPE"
5764 [ "$CFG_XVIDEO" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XVIDEO"
5765 [ "$CFG_XSYNC" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XSYNC"
5766 [ "$CFG_XINPUT" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XINPUT QT_NO_TABLET"
5768 [ "$CFG_XCURSOR" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XCURSOR"
5769 [ "$CFG_XINERAMA" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XINERAMA"
5770 [ "$CFG_XFIXES" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XFIXES"
5771 [ "$CFG_XRANDR" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XRANDR"
5772 [ "$CFG_XINPUT" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XINPUT"
5773 [ "$CFG_ALSA" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ALSA"
5774 [ "$CFG_PULSEAUDIO" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_PULSEAUDIO"
5775 [ "$CFG_COREWLAN" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_COREWLAN"
5777 # sort QCONFIG_FLAGS for neatness if we can
5778 [ '!' -z "$AWK" ] && QCONFIG_FLAGS=`echo $QCONFIG_FLAGS | $AWK '{ gsub(" ", "\n"); print }' | sort | uniq`
5779 QCONFIG_FLAGS=`echo $QCONFIG_FLAGS`
5781 if [ -n "$QCONFIG_FLAGS" ]; then
5782 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5783 #ifndef QT_BOOTSTRAPPED
5786 for cfg in $QCONFIG_FLAGS; do
5787 cfgd=`echo $cfg | sed 's/=.*$//'` # trim pushed 'Foo=Bar' defines
5788 cfg=`echo $cfg | sed 's/=/ /'` # turn first '=' into a space
5789 # figure out define logic, so we can output the correct
5790 # ifdefs to override the global defines in a project
5792 if [ true ] && echo "$cfgd" | grep 'QT_NO_' >/dev/null 2>&1; then
5793 # QT_NO_option can be forcefully turned on by QT_option
5794 cfgdNeg=`echo $cfgd | sed "s,QT_NO_,QT_,"`
5795 elif [ true ] && echo "$cfgd" | grep 'QT_' >/dev/null 2>&1; then
5796 # QT_option can be forcefully turned off by QT_NO_option
5797 cfgdNeg=`echo $cfgd | sed "s,QT_,QT_NO_,"`
5800 if [ -z $cfgdNeg ]; then
5801 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5808 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5809 #if defined($cfgd) && defined($cfgdNeg)
5811 #elif !defined($cfgd) && !defined($cfgdNeg)
5818 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5819 #endif // QT_BOOTSTRAPPED
5824 if [ "$CFG_REDUCE_EXPORTS" = "yes" ]; then
5825 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5826 #define QT_VISIBILITY_AVAILABLE
5831 if [ -n "$QT_LIBINFIX" ]; then
5832 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5833 #define QT_LIBINFIX "$QT_LIBINFIX"
5838 echo "#define QT_QPA_DEFAULT_PLATFORM_NAME \"$QT_QPA_DEFAULT_PLATFORM\"" >>"$outpath/src/corelib/global/qconfig.h.new"
5840 # avoid unecessary rebuilds by copying only if qconfig.h has changed
5841 if cmp -s "$outpath/src/corelib/global/qconfig.h" "$outpath/src/corelib/global/qconfig.h.new"; then
5842 rm -f "$outpath/src/corelib/global/qconfig.h.new"
5844 [ -f "$outpath/src/corelib/global/qconfig.h" ] && chmod +w "$outpath/src/corelib/global/qconfig.h"
5845 mv "$outpath/src/corelib/global/qconfig.h.new" "$outpath/src/corelib/global/qconfig.h"
5846 chmod -w "$outpath/src/corelib/global/qconfig.h"
5847 if [ ! -f "$outpath/include/QtCore/qconfig.h" ]; then
5848 ln -s "$outpath/src/corelib/global/qconfig.h" "$outpath/include/QtCore/qconfig.h"
5852 #-------------------------------------------------------------------------------
5853 # save configuration into qconfig.pri
5854 #-------------------------------------------------------------------------------
5855 QTCONFIG="$outpath/mkspecs/qconfig.pri"
5856 QTCONFIG_CONFIG="$QTCONFIG_CONFIG no_mocdepend"
5857 [ -f "$QTCONFIG.tmp" ] && rm -f "$QTCONFIG.tmp"
5858 if [ "$CFG_DEBUG" = "yes" ]; then
5859 QTCONFIG_CONFIG="$QTCONFIG_CONFIG debug"
5860 if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then
5861 QT_CONFIG="$QT_CONFIG release"
5863 QT_CONFIG="$QT_CONFIG debug"
5864 elif [ "$CFG_DEBUG" = "no" ]; then
5865 QTCONFIG_CONFIG="$QTCONFIG_CONFIG release"
5866 if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then
5867 QT_CONFIG="$QT_CONFIG debug"
5869 QT_CONFIG="$QT_CONFIG release"
5871 if [ "$CFG_FRAMEWORK" = "no" ]; then
5872 QTCONFIG_CONFIG="$QTCONFIG_CONFIG qt_no_framework"
5874 QT_CONFIG="$QT_CONFIG qt_framework"
5875 QTCONFIG_CONFIG="$QTCONFIG_CONFIG qt_framework"
5877 if [ "$CFG_DEV" = "yes" ]; then
5878 QT_CONFIG="$QT_CONFIG private_tests"
5881 cat >>"$QTCONFIG.tmp" <<EOF
5883 CONFIG += $QTCONFIG_CONFIG
5885 QT_HOST_ARCH = $CFG_HOST_ARCH
5886 QT_CPU_FEATURES = $CFG_CPUFEATURES
5887 QT_HOST_CPU_FEATURES = $CFG_HOST_CPUFEATURES
5888 QT_EDITION = $Edition
5889 QT_CONFIG += $QT_CONFIG
5892 QT_VERSION = $QT_VERSION
5893 QT_MAJOR_VERSION = $QT_MAJOR_VERSION
5894 QT_MINOR_VERSION = $QT_MINOR_VERSION
5895 QT_PATCH_VERSION = $QT_PATCH_VERSION
5898 QT_LIBINFIX = $QT_LIBINFIX
5899 QT_NAMESPACE = $QT_NAMESPACE
5903 if [ -n "$PKG_CONFIG_SYSROOT_DIR" ] || [ -n "$PKG_CONFIG_LIBDIR" ]; then
5904 echo "# pkgconfig" >> "$QTCONFIG.tmp"
5905 echo "PKG_CONFIG_SYSROOT_DIR = $PKG_CONFIG_SYSROOT_DIR" >> "$QTCONFIG.tmp"
5906 echo "PKG_CONFIG_LIBDIR = $PKG_CONFIG_LIBDIR" >> "$QTCONFIG.tmp"
5907 echo >> "$QTCONFIG.tmp"
5910 if [ -n "$CFG_SYSROOT" ] && [ "$CFG_GCC_SYSROOT" = "yes" ]; then
5911 echo "# sysroot" >>"$QTCONFIG.tmp"
5912 echo "!host_build {" >>"$QTCONFIG.tmp"
5913 echo " QMAKE_CFLAGS += --sysroot=\$\$[QT_SYSROOT]" >>"$QTCONFIG.tmp"
5914 echo " QMAKE_CXXFLAGS += --sysroot=\$\$[QT_SYSROOT]" >>"$QTCONFIG.tmp"
5915 echo " QMAKE_LFLAGS += --sysroot=\$\$[QT_SYSROOT]" >>"$QTCONFIG.tmp"
5916 echo "}" >> "$QTCONFIG.tmp"
5917 echo >> "$QTCONFIG.tmp"
5919 if [ -n "$RPATH_FLAGS" ]; then
5920 echo "QMAKE_RPATHDIR += $RPATH_FLAGS" >> "$QTCONFIG.tmp"
5922 if [ -n "$QT_GCC_MAJOR_VERSION" ]; then
5923 echo "QT_GCC_MAJOR_VERSION = $QT_GCC_MAJOR_VERSION" >> "$QTCONFIG.tmp"
5924 echo "QT_GCC_MINOR_VERSION = $QT_GCC_MINOR_VERSION" >> "$QTCONFIG.tmp"
5925 echo "QT_GCC_PATCH_VERSION = $QT_GCC_PATCH_VERSION" >> "$QTCONFIG.tmp"
5928 if [ -n "$QMAKE_INCDIR_OPENGL_ES2" ]; then
5929 echo "#Qt opengl include path" >> "$QTCONFIG.tmp"
5930 echo "QMAKE_INCDIR_OPENGL_ES2 = `shellArgumentListToQMakeList "$QMAKE_INCDIR_OPENGL_ES2"`" >> "$QTCONFIG.tmp"
5933 # replace qconfig.pri if it differs from the newly created temp file
5934 if cmp -s "$QTCONFIG.tmp" "$QTCONFIG"; then
5935 rm -f "$QTCONFIG.tmp"
5937 mv -f "$QTCONFIG.tmp" "$QTCONFIG"
5940 #-------------------------------------------------------------------------------
5941 # save configuration into qmodule.pri
5942 #-------------------------------------------------------------------------------
5943 QTMODULE="$outpath/mkspecs/qmodule.pri"
5945 echo "CONFIG += $QMAKE_CONFIG create_prl link_prl" >> "$QTMODULE.tmp"
5946 echo "QT_BUILD_PARTS += $CFG_BUILD_PARTS" >> "$QTMODULE.tmp"
5948 if [ -n "$QT_CFLAGS_PSQL" ]; then
5949 echo "QT_CFLAGS_PSQL = $QT_CFLAGS_PSQL" >> "$QTMODULE.tmp"
5951 if [ -n "$QT_LFLAGS_PSQL" ]; then
5952 echo "QT_LFLAGS_PSQL = $QT_LFLAGS_PSQL" >> "$QTMODULE.tmp"
5954 if [ -n "$QT_CFLAGS_MYSQL" ]; then
5955 echo "QT_CFLAGS_MYSQL = $QT_CFLAGS_MYSQL" >> "$QTMODULE.tmp"
5957 if [ -n "$QT_LFLAGS_MYSQL" ]; then
5958 echo "QT_LFLAGS_MYSQL = $QT_LFLAGS_MYSQL" >> "$QTMODULE.tmp"
5960 if [ -n "$QT_CFLAGS_SQLITE" ]; then
5961 echo "QT_CFLAGS_SQLITE = $QT_CFLAGS_SQLITE" >> "$QTMODULE.tmp"
5963 if [ -n "$QT_LFLAGS_SQLITE" ]; then
5964 echo "QT_LFLAGS_SQLITE = $QT_LFLAGS_SQLITE" >> "$QTMODULE.tmp"
5966 if [ -n "$QT_LFLAGS_ODBC" ]; then
5967 echo "QT_LFLAGS_ODBC = $QT_LFLAGS_ODBC" >> "$QTMODULE.tmp"
5969 if [ -n "$QT_LFLAGS_TDS" ]; then
5970 echo "QT_LFLAGS_TDS = $QT_LFLAGS_TDS" >> "$QTMODULE.tmp"
5973 if [ "$QT_EDITION" != "QT_EDITION_OPENSOURCE" ]; then
5974 echo "DEFINES *= QT_EDITION=QT_EDITION_DESKTOP" >> "$QTMODULE.tmp"
5977 #dump in the OPENSSL_LIBS info
5978 if [ '!' -z "$OPENSSL_LIBS" ]; then
5979 echo "OPENSSL_LIBS = $OPENSSL_LIBS" >> "$QTMODULE.tmp"
5980 elif [ "$CFG_OPENSSL" = "linked" ]; then
5981 echo "OPENSSL_LIBS = -lssl -lcrypto" >> "$QTMODULE.tmp"
5984 #dump in the SDK info
5985 if [ '!' -z "$CFG_SDK" ]; then
5986 echo "QMAKE_MAC_SDK = $CFG_SDK" >> "$QTMODULE.tmp"
5990 cat "$QMAKE_VARS_FILE" >> "$QTMODULE.tmp"
5991 rm -f "$QMAKE_VARS_FILE" 2>/dev/null
5993 # replace qmodule.pri if it differs from the newly created temp file
5994 if cmp -s "$QTMODULE.tmp" "$QTMODULE"; then
5995 rm -f "$QTMODULE.tmp"
5997 mv -f "$QTMODULE.tmp" "$QTMODULE"
6000 #-------------------------------------------------------------------------------
6001 # save configuration into .qmake.cache
6002 #-------------------------------------------------------------------------------
6004 CACHEFILE="$outpath/.qmake.cache"
6005 [ -f "$CACHEFILE.tmp" ] && rm -f "$CACHEFILE.tmp"
6006 cat >>"$CACHEFILE.tmp" <<EOF
6008 QT_SOURCE_TREE = \$\$quote($relpath)
6009 QT_BUILD_TREE = \$\$quote($outpath)
6011 include(\$\$PWD/mkspecs/qmodule.pri)
6012 CONFIG += dylib depend_includepath fix_output_dirs no_private_qt_headers_warning QTDIR_build
6016 # replace .qmake.cache if it differs from the newly created temp file
6017 if cmp -s "$CACHEFILE.tmp" "$CACHEFILE"; then
6018 rm -f "$CACHEFILE.tmp"
6020 mv -f "$CACHEFILE.tmp" "$CACHEFILE"
6023 #-------------------------------------------------------------------------------
6024 # give feedback on configuration
6025 #-------------------------------------------------------------------------------
6026 exec 3>&1 1>$outpath/config.summary # redirect output temporarily to config.summary
6029 if [ "$XPLATFORM" = "$PLATFORM" ]; then
6030 echo "Build type: $PLATFORM"
6032 echo "Building on: $PLATFORM"
6033 echo "Building for: $XPLATFORM"
6036 # the missing space before $CFG_FEATURES is intentional
6037 echo "Architecture: $CFG_ARCH, features:$CFG_CPUFEATURES"
6038 echo "Host architecture: $CFG_HOST_ARCH, features:$CFG_HOST_CPUFEATURES"
6040 if [ -n "$PLATFORM_NOTES" ]; then
6041 echo "Platform notes:"
6042 echo "$PLATFORM_NOTES"
6047 if [ "$OPT_VERBOSE" = "yes" ]; then
6048 echo $ECHO_N "qmake vars .......... $ECHO_C"
6049 cat "$QMAKE_VARS_FILE" | tr '\n' ' '
6050 echo "qmake switches ......... $QMAKE_SWITCHES"
6053 echo "Build .................. $CFG_BUILD_PARTS"
6054 echo "Configuration .......... $QMAKE_CONFIG $QT_CONFIG"
6055 if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then
6056 echo "Debug .................. yes (combined)"
6057 if [ "$CFG_DEBUG" = "yes" ]; then
6058 echo "Default Link ........... debug"
6060 echo "Default Link ........... release"
6063 echo "Debug .................. $CFG_DEBUG"
6065 if [ "$CFG_RELEASE" = "yes" ] || [ "$CFG_DEBUG_RELEASE" = "yes" ]; then
6066 echo "Force debug info ....... $CFG_FORCEDEBUGINFO"
6068 echo "C++11 support .......... $CFG_CXX11"
6069 if [ -n "$PKG_CONFIG" ]; then
6070 echo "pkg-config ............. yes"
6072 echo "pkg-config ............. no"
6074 [ "$CFG_DBUS" = "no" ] && echo "QtDBus module .......... no"
6075 [ "$CFG_DBUS" = "yes" ] && echo "QtDBus module .......... yes (run-time)"
6076 [ "$CFG_DBUS" = "linked" ] && echo "QtDBus module .......... yes (linked)"
6077 echo "QtConcurrent code ...... $CFG_CONCURRENT"
6078 echo "QtGui module ........... $CFG_GUI"
6079 echo "QtWidgets module ....... $CFG_WIDGETS"
6080 if [ "$CFG_JAVASCRIPTCORE_JIT" = "auto" ]; then
6081 echo "JavaScriptCore JIT ..... To be decided by JavaScriptCore"
6083 echo "JavaScriptCore JIT ..... $CFG_JAVASCRIPTCORE_JIT"
6085 echo "QML debugging .......... $CFG_QML_DEBUG"
6086 echo "PCH support ............ $CFG_PRECOMPILE"
6087 if [ "$CFG_ARCH" = "i386" -o "$CFG_ARCH" = "x86_64" ]; then
6088 echo "SSE2/SSE3/SSSE3......... ${CFG_SSE2}/${CFG_SSE3}/${CFG_SSSE3}"
6089 echo "SSE4.1/SSE4.2........... ${CFG_SSSE3}/${CFG_SSE4_1}/${CFG_SSE4_2}"
6090 echo "AVX/AVX2................ ${CFG_AVX}/${CFG_AVX2}"
6091 elif [ "$CFG_ARCH" = "arm" ]; then
6092 echo "iWMMXt support ......... ${CFG_IWMMXT}"
6093 echo "NEON support ........... ${CFG_NEON}"
6095 if [ "$CFG_ARCH" = "mips" ]; then
6096 echo "MIPS_DSP/MIPS_DSPR2..... ${CFG_MIPS_DSP}/${CFG_MIPS_DSPR2}"
6098 echo "IPv6 ifname support .... $CFG_IPV6IFNAME"
6099 echo "getaddrinfo support .... $CFG_GETADDRINFO"
6100 echo "getifaddrs support ..... $CFG_GETIFADDRS"
6101 echo "Accessibility .......... $CFG_ACCESSIBILITY"
6102 echo "NIS support ............ $CFG_NIS"
6103 echo "CUPS support ........... $CFG_CUPS"
6104 echo "Iconv support .......... $CFG_ICONV"
6105 echo "Glib support ........... $CFG_GLIB"
6106 echo "GStreamer support ...... $CFG_GSTREAMER"
6107 echo "PulseAudio support ..... $CFG_PULSEAUDIO"
6108 echo "Large File support ..... $CFG_LARGEFILE"
6109 echo "GIF support ............ $CFG_GIF"
6110 if [ "$CFG_JPEG" = "no" ]; then
6111 echo "JPEG support ........... $CFG_JPEG"
6113 echo "JPEG support ........... $CFG_JPEG ($CFG_LIBJPEG)"
6115 if [ "$CFG_PNG" = "no" ]; then
6116 echo "PNG support ............ $CFG_PNG"
6118 echo "PNG support ............ $CFG_PNG ($CFG_LIBPNG)"
6120 echo "zlib support ........... $CFG_ZLIB"
6121 echo "Session management ..... $CFG_SM"
6122 echo "libudev support ........ $CFG_LIBUDEV"
6124 if [ "$CFG_OPENGL" = "desktop" ]; then
6125 echo "OpenGL support ......... yes (Desktop OpenGL)"
6126 elif [ "$CFG_OPENGL" = "es2" ]; then
6127 echo "OpenGL support ......... yes (OpenGL ES 2.x)"
6129 echo "OpenGL support ......... no"
6132 if [ "$CFG_OPENVG" ]; then
6133 if [ "$CFG_OPENVG_SHIVA" = "yes" ]; then
6134 echo "OpenVG support ......... ShivaVG"
6136 echo "OpenVG support ......... $CFG_OPENVG"
6140 echo "XShape support ......... $CFG_XSHAPE"
6141 echo "XVideo support ......... $CFG_XVIDEO"
6142 echo "XSync support .......... $CFG_XSYNC"
6143 echo "Xinerama support ....... $CFG_XINERAMA"
6144 echo "Xcursor support ........ $CFG_XCURSOR"
6145 echo "Xfixes support ......... $CFG_XFIXES"
6146 echo "Xrandr support ......... $CFG_XRANDR"
6147 echo "Xi support ............. $CFG_XINPUT"
6148 echo "Xi2 support ............ $CFG_XINPUT2"
6149 echo "MIT-SHM support ........ $CFG_MITSHM"
6150 echo "FontConfig support ..... $CFG_FONTCONFIG"
6151 echo "XKB Support ............ $CFG_XKB"
6152 echo "immodule support ....... $CFG_IM"
6153 echo "GTK theme support ...... $CFG_QGTKSTYLE"
6155 [ "$CFG_SQL_mysql" != "no" ] && echo "MySQL support .......... $CFG_SQL_mysql"
6156 [ "$CFG_SQL_psql" != "no" ] && echo "PostgreSQL support ..... $CFG_SQL_psql"
6157 [ "$CFG_SQL_odbc" != "no" ] && echo "ODBC support ........... $CFG_SQL_odbc"
6158 [ "$CFG_SQL_oci" != "no" ] && echo "OCI support ............ $CFG_SQL_oci"
6159 [ "$CFG_SQL_tds" != "no" ] && echo "TDS support ............ $CFG_SQL_tds"
6160 [ "$CFG_SQL_db2" != "no" ] && echo "DB2 support ............ $CFG_SQL_db2"
6161 [ "$CFG_SQL_ibase" != "no" ] && echo "InterBase support ...... $CFG_SQL_ibase"
6162 [ "$CFG_SQL_sqlite2" != "no" ] && echo "SQLite 2 support ....... $CFG_SQL_sqlite2"
6163 [ "$CFG_SQL_sqlite" != "no" ] && echo "SQLite support ......... $CFG_SQL_sqlite ($CFG_SQLITE)"
6166 if [ "$CFG_OPENSSL" = "yes" ]; then
6167 OPENSSL_LINKAGE="(run-time)"
6168 elif [ "$CFG_OPENSSL" = "linked" ]; then
6169 OPENSSL_LINKAGE="(linked)"
6171 echo "OpenSSL support ........ $CFG_OPENSSL $OPENSSL_LINKAGE"
6172 echo "Alsa support ........... $CFG_ALSA"
6173 if [ "$BUILD_ON_MAC" = "yes" ]; then
6174 echo "CoreWlan support ....... $CFG_COREWLAN"
6176 echo "libICU support ......... $CFG_ICU"
6177 echo "PCRE support ........... $CFG_PCRE"
6178 if [ "$CFG_XCB_LIMITED" = "yes" ] && [ "$CFG_XCB" = "yes" ]; then
6179 echo "Xcb support ............ limited (old version)"
6181 echo "Xcb support ............ $CFG_XCB"
6183 echo "Xrender support ........ $CFG_XRENDER"
6184 if [ "$XPLATFORM_MAEMO" = "yes" ] && [ "$CFG_XCB" = "yes" ]; then
6185 echo "XInput2 support ........ $CFG_XINPUT2"
6187 echo "EGLFS support .......... $CFG_EGLFS"
6188 echo "DirectFB support ....... $CFG_DIRECTFB"
6189 echo "LinuxFB support ........ $CFG_LINUXFB"
6190 echo "KMS support ............ $CFG_KMS"
6193 # complain about not being able to use dynamic plugins if we are using a static build
6194 if [ "$CFG_SHARED" = "no" ]; then
6196 echo "WARNING: Using static linking will disable the use of dynamically"
6197 echo "loaded plugins. Make sure to import all needed static plugins,"
6198 echo "or compile needed modules into the library."
6201 if [ "$CFG_OPENSSL" = "linked" ] && [ "$OPENSSL_LIBS" = "" ]; then
6203 echo "NOTE: When linking against OpenSSL, you can override the default"
6204 echo "library names through OPENSSL_LIBS."
6206 echo " OPENSSL_LIBS='-L/opt/ssl/lib -lssl -lcrypto' ./configure -openssl-linked"
6210 exec 1>&3 3>&- # restore stdout
6211 cat $outpath/config.summary # display config feedback to user
6213 if [ "$BUILD_ON_MAC" = "yes" ] && [ "$CFG_FRAMEWORK" = "yes" ] && [ "$CFG_DEBUG" = "yes" ] && [ "$CFG_DEBUG_RELEASE" = "no" ]; then
6215 echo "Error: debug-only framework builds are not supported. Configure with -no-framework"
6216 echo "if you want a pure debug build."
6221 sepath=`echo "$relpath" | sed -e 's/\\./\\\\./g'`
6226 #-------------------------------------------------------------------------------
6227 # build makefiles based on the configuration
6228 #-------------------------------------------------------------------------------
6230 if [ "$CFG_PROCESS" != "no" ]; then
6232 if [ "$CFG_PROCESS" = "full" ]; then
6233 echo "Creating makefiles. Please wait..."
6234 "$outpath/bin/qmake" -r "$relpath"
6237 "$outpath/bin/qmake" "$relpath"
6240 if [ "$OPT_FAST" = "yes" ]; then
6242 for part in $CFG_BUILD_PARTS; do
6244 examples|tests) PART_ROOTS="$PART_ROOTS $part" ;;
6247 if [ "x$PART_ROOTS" != "x" ]; then
6249 echo "Creating stub makefiles. Please wait..."
6250 QMAKE="$outpath/bin/qmake"
6251 [ "$CFG_DEBUG_RELEASE" = "no" ] && first_tgt="first_target: first" || first_tgt=
6252 (cd "$relpath" && find $PART_ROOTS -name '*.pro') | grep -v /testdata/ | while read p; do
6254 test -f "$outpath/$d/Makefile" && continue
6255 echo " for $relpath/$p"
6257 mkdir -p "$outpath/$d" || exit
6258 cat > "$outpath/$d/Makefile" <<EOF || exit
6259 # $outpath/$d/Makefile: generated by configure
6261 # WARNING: This makefile will be replaced with a real makefile.
6262 # All changes made to this file will be lost.
6267 all clean install qmake first Makefile: FORCE
6268 \$(QMAKE) $QMAKE_SWITCHES "$relpath/$p"
6278 #-------------------------------------------------------------------------------
6279 # check for platforms that we don't yet know about
6280 #-------------------------------------------------------------------------------
6281 if [ "$CFG_ARCH" = "unknown" ]; then
6284 NOTICE: configure was unable to determine the architecture
6285 for the $XQMAKESPEC target.
6287 Qt will not use a specialized implementation for any atomic
6288 operations. Instead a generic implemention based on either GCC
6289 intrinsics or C++11 std::atomic<T> will be used (when
6290 available). The generic implementations are generally as fast
6291 as and always as safe as a specialized implementation.
6293 If no generic implementation is available, Qt will use a
6294 fallback UNIX implementation which uses a single
6295 pthread_mutex_t to protect all atomic operations. This
6296 implementation is the slow (but safe) fallback implementation
6297 for architectures Qt does not yet support.
6301 #-------------------------------------------------------------------------------
6302 # check if the user passed the -no-zlib option, which is no longer supported
6303 #-------------------------------------------------------------------------------
6304 if [ -n "$ZLIB_FORCED" ]; then
6305 which_zlib="supplied"
6306 if [ "$CFG_ZLIB" = "system" ]; then
6312 NOTICE: The -no-zlib option was supplied but is no longer
6315 Qt now requires zlib support in all builds, so the -no-zlib
6316 option was ignored. Qt will be built using the $which_zlib
6321 #-------------------------------------------------------------------------------
6322 # check if the user passed the obsoleted -wayland or -no-wayland flag
6323 #-------------------------------------------------------------------------------
6324 if [ "$CFG_OBSOLETE_WAYLAND" = "yes" ]; then
6327 NOTICE: The -wayland and -no-wayland flags are now obsolete
6329 All configuring of QtWayland plugin and QtCompositor happens in the module
6333 #-------------------------------------------------------------------------------
6334 # check if the user passed the obsoleted -arch or -host-arch options
6335 #-------------------------------------------------------------------------------
6336 if [ "$OPT_OBSOLETE_HOST_ARG" = "yes" ]; then
6339 NOTICE: The -arch and -host-arch options are obsolete.
6341 Qt now detects the target and host architectures based on compiler
6342 output. Qt will be built using $CFG_ARCH for the target architecture
6343 and $CFG_HOST_ARCH for the host architecture (note that these two
6344 will be the same unless you are cross-compiling).
6348 #-------------------------------------------------------------------------------
6349 # finally save the executed command to another script
6350 #-------------------------------------------------------------------------------
6351 if [ `basename $0` != "config.status" ]; then
6352 CONFIG_STATUS="$relpath/$relconf $OPT_CMDLINE"
6354 # add the system variables
6355 for varname in $SYSTEM_VARIABLES; do
6357 'if [ -n "\$'${varname}'" ]; then
6358 CONFIG_STATUS="'${varname}'='"'\\\$${varname}'"' \$CONFIG_STATUS"
6363 echo "$CONFIG_STATUS" | grep '\-confirm\-license' >/dev/null 2>&1 || CONFIG_STATUS="$CONFIG_STATUS -confirm-license"
6365 [ -f "$outpath/config.status" ] && rm -f "$outpath/config.status"
6366 echo "#!/bin/sh" > "$outpath/config.status"
6367 [ -n "$PKG_CONFIG_SYSROOT_DIR" ] && \
6368 echo "export PKG_CONFIG_SYSROOT_DIR=$PKG_CONFIG_SYSROOT_DIR" >> "$outpath/config.status"
6369 [ -n "$PKG_CONFIG_LIBDIR" ] && \
6370 echo "export PKG_CONFIG_LIBDIR=$PKG_CONFIG_LIBDIR" >> "$outpath/config.status"
6371 echo "if [ \"\$#\" -gt 0 ]; then" >> "$outpath/config.status"
6372 echo " $CONFIG_STATUS \"\$@\"" >> "$outpath/config.status"
6373 echo "else" >> "$outpath/config.status"
6374 echo " $CONFIG_STATUS" >> "$outpath/config.status"
6375 echo "fi" >> "$outpath/config.status"
6376 chmod +x "$outpath/config.status"
6379 if [ -n "$RPATH_MESSAGE" ]; then
6381 echo "$RPATH_MESSAGE"
6384 MAKE=`basename "$MAKE"`
6386 echo Qt is now configured for building. Just run \'$MAKE\'.
6387 if [ "$relpath" = "$QT_INSTALL_PREFIX" ]; then
6388 echo Once everything is built, Qt is installed.
6389 echo You should not run \'$MAKE install\'.
6391 echo Once everything is built, you must run \'$MAKE install\'.
6392 echo Qt will be installed into $QT_INSTALL_PREFIX
6395 echo To reconfigure, run \'$MAKE confclean\' and \'configure\'.