fix default platform plugin for windows using configure script
[profile/ivi/qtbase.git] / configure
1 #!/bin/sh
2 #############################################################################
3 ##
4 ## Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
5 ## Contact: http://www.qt-project.org/
6 ##
7 ## This file is the build configuration utility of the Qt Toolkit.
8 ##
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.
17 ##
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.
21 ##
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.
29 ##
30 ## Other Usage
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.
33 ##
34 ##
35 ##
36 ##
37 ##
38 ##
39 ## $QT_END_LICENSE$
40 ##
41 #############################################################################
42
43 #-------------------------------------------------------------------------------
44 # script initialization
45 #-------------------------------------------------------------------------------
46
47 # the name of this script
48 relconf=`basename $0`
49 # the directory of this script is the "source tree"
50 relpath=`dirname $0`
51 relpath=`(cd "$relpath"; /bin/pwd)`
52 # the current directory is the "build tree" or "object tree"
53 outpath=`/bin/pwd`
54
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"
61 fi
62
63 # later cache the command line in config.status
64 OPT_CMDLINE=`echo $@ | sed "s,-v ,,g; s,-v$,,g"`
65
66 # initialize global variables
67 QMAKE_SWITCHES=
68 QMAKE_VARS=
69 QMAKE_CONFIG=
70 QTCONFIG_CONFIG=
71 QT_CONFIG=
72 SUPPORTED=
73 QMAKE_VARS_FILE=.qmake.vars
74 DEVICE_VARS_FILE=.device.vars
75
76 :> "$QMAKE_VARS_FILE"
77 :> "$DEVICE_VARS_FILE"
78
79 #-------------------------------------------------------------------------------
80 # utility functions
81 #-------------------------------------------------------------------------------
82
83 shellEscape()
84 {
85     echo "$@" | sed 's/ /\ /g'
86 }
87
88 # Adds a new qmake variable to the cache
89 # Usage: QMakeVar mode varname contents
90 #   where mode is one of: set, add, del
91 QMakeVar()
92 {
93     case "$1" in
94         set)
95             eq="="
96             ;;
97         add)
98             eq="+="
99             ;;
100         del)
101             eq="-="
102             ;;
103         *)
104             echo >&2 "BUG: wrong command to QMakeVar: $1"
105             ;;
106     esac
107
108     echo "$2" "$eq" "$3" >> "$QMAKE_VARS_FILE"
109 }
110
111 # Helper function for getQMakeConf. It parses include statements in
112 # qmake.conf and prints out the expanded file
113 getQMakeConf1()
114 {
115     while read line; do case "$line" in
116         include*)
117             inc_file=`echo "$line" | sed -n -e "/^include.*(.*)/s/include.*(\(.*\)).*$/\1/p"`
118             current_dir=`dirname "$1"`
119             conf_file="$current_dir/$inc_file"
120             if [ ! -f  "$conf_file" ]; then
121                 echo "WARNING: Unable to find file $conf_file" >&2
122                 continue
123             fi
124             getQMakeConf1 "$conf_file"
125         ;;
126         *load\(device_config\)*)
127             conf_file="$DEVICE_VARS_FILE"
128             if [ ! -f  "$conf_file" ]; then
129                 echo "WARNING: Unable to find file $conf_file" >&2
130                 continue
131             fi
132             getQMakeConf1 "$conf_file"
133         ;;
134         *)
135             echo "$line"
136         ;;
137     esac; done < "$1"
138 }
139
140 getQMakeConf2()
141 {
142     $AWK '
143 BEGIN {
144     values["LITERAL_WHITESPACE"] = " "
145     values["LITERAL_DOLLAR"] = "$"
146 }
147 /^[_A-Z0-9.]+[ \t]*\+?=/ {
148     valStart = index($0, "=") + 1
149
150     append = 0
151     if (substr($0, valStart - 2, 1) == "+") {
152         append = 1
153     }
154
155     variable = substr($0, 0, valStart - 2 - append)
156     value = substr($0, valStart)
157     gsub("[ \t]+", "", variable)
158     gsub("^[ \t]+", "", value)
159     gsub("[ \t]+$", "", value)
160
161     ovalue = ""
162     while (match(value, /\$\$(\{[_A-Z0-9.]+\}|[_A-Z0-9.]+)/)) {
163         ovalue = ovalue substr(value, 1, RSTART - 1)
164         var = substr(value, RSTART + 2, RLENGTH - 2)
165         value = substr(value, RSTART + RLENGTH)
166         if (var ~ /^\{/) {
167             var = substr(var, 2, length(var) - 2)
168         }
169         ovalue = ovalue values[var]
170     }
171     ovalue = ovalue value
172
173     combinedValue = values[variable]
174     if (append == 1 && length(combinedValue) > 0) {
175         combinedValue = combinedValue " " ovalue
176     } else {
177         combinedValue = ovalue
178     }
179     values[variable] = combinedValue
180 }
181 END {
182     for (var in values) {
183         print var "=" values[var]
184     }
185 }
186 '
187 }
188
189 getQMakeConf3()
190 {
191     echo "$2" | $AWK "/^($1)=/ { print substr(\$0, index(\$0, \"=\") + 1) }"
192 }
193
194 # relies on $QMAKESPEC being set correctly. parses include statements in
195 # qmake.conf and prints out the expanded file
196 getQMakeConf()
197 {
198     if [ -z "$specvals" ]; then
199         specvals=`getQMakeConf1 "$QMAKESPEC/qmake.conf" | getQMakeConf2`
200     fi
201     getQMakeConf3 "$1" "$specvals"
202 }
203
204 getXQMakeConf()
205 {
206     if [ -z "$xspecvals" ]; then
207         xspecvals=`getQMakeConf1 "$XQMAKESPEC/qmake.conf" | getQMakeConf2`
208     fi
209     getQMakeConf3 "$1" "$xspecvals"
210 }
211
212 # relies on $TEST_COMPILER being set correctly
213 compilerSupportsFlag()
214 {
215     cat >conftest.cpp <<EOF
216 int main() { return 0; }
217 EOF
218     "$TEST_COMPILER" "$@" -o conftest.o conftest.cpp
219     ret=$?
220     rm -f conftest.cpp conftest.o
221     return $ret
222 }
223
224 # relies on $TEST_COMPILER being set correctly
225 linkerSupportsFlag()
226 {
227     lflags=-Wl
228     for flag
229     do
230         safe_flag=`shellEscape "$flag"`
231         lflags=$lflags,$safe_flag
232     done
233     compilerSupportsFlag "$lflags" >/dev/null 2>&1
234 }
235
236 #-------------------------------------------------------------------------------
237 # device options
238 #-------------------------------------------------------------------------------
239 DeviceVar()
240 {
241     case "$1" in
242         set)
243             eq="="
244             ;;
245         *)
246             echo >&2 "BUG: wrong command to QMakeVar: $1"
247             ;;
248     esac
249
250     echo "$2" "$eq" "$3" >> "$DEVICE_VARS_FILE"
251 }
252
253 resolveDeviceMkspec()
254 {
255     result=$(find "$relpath/mkspecs/devices/" -type d -name "*$VAL*" | sed "s,^$relpath/mkspecs/,,")
256     match_count=$(echo "$result" | wc -w)
257     if [ "$match_count" -gt 1 ]; then
258         echo >&2 "Error: Multiple matches for device '$VAL'. Candidates are:"
259         tabbed_result=$(echo "$result" | sed "s,^,    ,")
260         echo >&2 "$tabbed_result"
261         echo "undefined"
262     elif [ "$match_count" -eq 0 ]; then
263         echo >&2 "Error: No device matching '$VAL'"
264         echo "undefined"
265     else
266         echo "$result"
267     fi
268 }
269
270 #-------------------------------------------------------------------------------
271 # operating system detection
272 #-------------------------------------------------------------------------------
273
274 # need that throughout the script
275 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
276 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
277 UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown
278 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
279
280 # detect the "echo without newline" style. usage: echo $ECHO_N "<string>$ECHO_C"
281 if echo '\c' | grep '\c' >/dev/null; then
282     ECHO_N=-n
283 else
284     ECHO_C='\c'
285 fi
286
287 #-------------------------------------------------------------------------------
288 # window system detection
289 #-------------------------------------------------------------------------------
290
291 BUILD_ON_MAC=no
292 PLATFORM_MAC=no
293 if [ -d /System/Library/Frameworks/Carbon.framework ]; then
294     BUILD_ON_MAC=yes
295     PLATFORM_MAC=maybe
296 fi
297
298 #-----------------------------------------------------------------------------
299 # Qt version detection
300 #-----------------------------------------------------------------------------
301 QT_VERSION=`grep '^# *define *QT_VERSION_STR' "$relpath"/src/corelib/global/qglobal.h`
302 QT_MAJOR_VERSION=
303 QT_MINOR_VERSION=0
304 QT_PATCH_VERSION=0
305 if [ -n "$QT_VERSION" ]; then
306    QT_VERSION=`echo $QT_VERSION | sed 's,^# *define *QT_VERSION_STR *"*\([^ ]*\)"$,\1,'`
307    MAJOR=`echo $QT_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\1,'`
308    if [ -n "$MAJOR" ]; then
309      MINOR=`echo $QT_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\2,'`
310       PATCH=`echo $QT_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\3,'`
311       QT_MAJOR_VERSION="$MAJOR"
312       [ -z "$MINOR" ] || QT_MINOR_VERSION="$MINOR"
313       [ -z "$PATCH" ] || QT_PATCH_VERSION="$PATCH"
314    fi
315 fi
316 if [ -z "$QT_MAJOR_VERSION" ]; then
317    echo "Cannot process version from qglobal.h: $QT_VERSION"
318    echo "Cannot proceed."
319    exit 1
320 fi
321
322 QT_PACKAGEDATE=`grep '^# *define *QT_PACKAGEDATE_STR' "$relpath"/src/corelib/global/qglobal.h | sed -e 's,^# *define *QT_PACKAGEDATE_STR *"\([^ ]*\)"$,\1,' -e s,-,,g`
323 if [ -z "$QT_PACKAGEDATE" ]; then
324    echo "Unable to determine package date from qglobal.h: '$QT_PACKAGEDATE'"
325    echo "Cannot proceed"
326    exit 1
327 fi
328
329 #-------------------------------------------------------------------------------
330 # check the license
331 #-------------------------------------------------------------------------------
332 COMMERCIAL_USER=ask
333 CFG_DEV=no
334 CFG_RTOS_ENABLED=yes
335 EditionString=Commercial
336
337 earlyArgParse()
338 {
339     # parse the arguments, setting things to "yes" or "no"
340     while [ "$#" -gt 0 ]; do
341         CURRENT_OPT="$1"
342         UNKNOWN_ARG=no
343         case "$1" in
344         #Autoconf style options
345         --enable-*)
346             VAR=`echo $1 | sed "s,^--enable-\(.*\),\1,"`
347             VAL=yes
348             ;;
349         --disable-*)
350             VAR=`echo $1 | sed "s,^--disable-\(.*\),\1,"`
351             VAL=no
352             ;;
353         --*=*)
354             VAR=`echo $1 | sed "s,^--\(.*\)=.*,\1,"`
355             VAL=`echo $1 | sed "s,^--.*=\(.*\),\1,"`
356             ;;
357         --no-*)
358             VAR=`echo $1 | sed "s,^--no-\(.*\),\1,"`
359             VAL=no
360             ;;
361         -h|help|--help|-help)
362             if [ "$VAL" = "yes" ]; then
363                 OPT_HELP="$VAL"
364                 COMMERCIAL_USER="no" #doesn't matter we will display the help
365             else
366                 UNKNOWN_OPT=yes
367                 COMMERCIAL_USER="no" #doesn't matter we will display the help
368             fi
369             ;;
370         --*)
371             VAR=`echo $1 | sed "s,^--\(.*\),\1,"`
372             VAL=yes
373             ;;
374         -*)
375             VAR=`echo $1 | sed "s,^-\(.*\),\1,"`
376             VAL="unknown"
377             ;;
378         *)
379             UNKNOWN_ARG=yes
380             ;;
381         esac
382         if [ "$UNKNOWN_ARG" = "yes" ]; then
383             shift
384             continue
385         fi
386         shift
387
388         UNKNOWN_OPT=no
389         case "$VAR" in
390         developer-build)
391             CFG_DEV="yes"
392             ;;
393         commercial)
394             COMMERCIAL_USER="yes"
395             ;;
396         opensource)
397             COMMERCIAL_USER="no"
398             ;;
399         *)
400             UNKNOWN_OPT=yes
401             ;;
402         esac
403     done
404 }
405
406 earlyArgParse "$@"
407
408 if [ "$COMMERCIAL_USER" = "ask" ]; then
409     while true; do
410         echo "Which edition of Qt do you want to use ?"
411         echo
412         echo "Type 'c' if you want to use the Commercial Edition."
413         echo "Type 'o' if you want to use the Open Source Edition."
414         echo
415         read commercial
416         echo
417         if [ "$commercial" = "c" ]; then
418             COMMERCIAL_USER="yes"
419             break
420         elif [ "$commercial" = "o" ]; then
421             COMMERCIAL_USER="no"
422             break
423         fi
424     done
425 fi
426
427 if [ -f "$relpath"/LICENSE.PREVIEW.COMMERCIAL ] && [ $COMMERCIAL_USER = "yes" ]; then
428     # Commercial preview release
429     [ "$PLATFORM_MAC" = "maybe" ] && PLATFORM_MAC=yes
430     Licensee="Preview"
431     Edition="Preview"
432     QT_EDITION="QT_EDITION_DESKTOP"
433     LicenseType="Technology Preview"
434 elif [ $COMMERCIAL_USER = "yes" ]; then
435     # one of commercial editions
436     [ "$PLATFORM_MAC" = "maybe" ] && PLATFORM_MAC=yes
437
438     # read in the license file
439     if [ -f "$LICENSE_FILE" ]; then
440         . "$LICENSE_FILE" >/dev/null 2>&1
441         if [ -z "$LicenseKeyExt" ]; then
442             echo
443             echo "You are using an old license file."
444             echo
445             echo "Please install the license file supplied by Nokia,"
446             echo "or install the Qt Open Source Edition if you intend to"
447             echo "develop free software."
448             exit 1
449         fi
450         if [ -z "$Licensee" ]; then
451             echo
452             echo "Invalid license key. Please check the license key."
453             exit 1
454         fi
455     else
456         if [ -z "$LicenseKeyExt" ]; then
457             echo
458             echo $ECHO_N "Please enter your license key: $ECHO_C"
459             read LicenseKeyExt
460             Licensee="Unknown user"
461         fi
462     fi
463
464     # Key verification
465     echo "$LicenseKeyExt" | grep ".....*-....*-....*-....*-.....*-.....*-...." >/dev/null 2>&1 \
466         && LicenseValid="yes" \
467         || LicenseValid="no"
468     if [ "$LicenseValid" != "yes" ]; then
469         echo
470         echo "Invalid license key. Please check the license key."
471         exit 1
472     fi
473     ProductCode=`echo $LicenseKeyExt | cut -f 1 -d - | cut -b 1`
474     PlatformCode=`echo $LicenseKeyExt | cut -f 2 -d -`
475     LicenseTypeCode=`echo $LicenseKeyExt | cut -f 3 -d -`
476     LicenseFeatureCode=`echo $LicenseKeyExt | cut -f 4 -d - | cut -b 1`
477
478     # determine which edition we are licensed to use
479     case "$LicenseTypeCode" in
480     F4M)
481         LicenseType="Commercial"
482         case $ProductCode in
483         F)
484             Edition="Universal"
485             QT_EDITION="QT_EDITION_UNIVERSAL"
486             ;;
487         B)
488             Edition="FullFramework"
489             EditionString="Full Framework"
490             QT_EDITION="QT_EDITION_DESKTOP"
491             ;;
492         L)
493             Edition="GUIFramework"
494             EditionString="GUI Framework"
495             QT_EDITION="QT_EDITION_DESKTOPLIGHT"
496             ;;
497         esac
498         ;;
499     Z4M|R4M|Q4M)
500         LicenseType="Evaluation"
501         QMakeVar add DEFINES QT_EVAL
502         case $ProductCode in
503          B)
504             Edition="Evaluation"
505             QT_EDITION="QT_EDITION_EVALUATION"
506             ;;
507         esac
508         ;;
509     esac
510     if [ -z "$LicenseType" -o -z "$Edition" -o -z "$QT_EDITION" ]; then
511         echo
512         echo "Invalid license key. Please check the license key."
513         exit 1
514     fi
515
516     # verify that we are licensed to use Qt on this platform
517     LICENSE_EXTENSION=
518     case "$PlatformCode" in
519         *L)
520             CFG_RTOS_ENABLED=yes
521             PlatformCode=`echo "$PlatformCode" | sed 'h;y/8NPQRTZ/UCWX9M7/;x;G;s/\(.\)....\(.\)./\1\2/'`
522             ;;
523         *)
524             CFG_RTOS_ENABLED=no
525             PlatformCode=`echo "$PlatformCode" | sed 's/.$//'`
526             ;;
527     esac
528     ### EMBEDDED_QPA logic missing ###
529     case "$PlatformCode,$PLATFORM_MAC" in
530         X9,* | XC,* | XU,* | XW,* | XM,*)
531             # Qt All-OS
532             LICENSE_EXTENSION="-ALLOS"
533             ;;
534         8M,* | KM,* | S9,* | SC,* | SM,* | SU,* | SW,* | X9,* | XC,* | XU,* | XW,*)
535             # Qt for Embedded Linux
536             LICENSE_EXTENSION="-EMBEDDED"
537             ;;
538         6M,* | N7,* | N9,* | NX,*)
539             # Embedded no-deploy
540             LICENSE_EXTENSION="-EMBEDDED"
541             ;;
542         FM,* | LM,yes | ZM,no)
543             # Desktop
544             LICENSE_EXTENSION="-DESKTOP"
545             ;;
546         *)
547             Platform=Linux/X11
548             [ "$PLATFORM_MAC" = "yes" ] && Platform='Mac OS X'
549             echo
550             echo "You are not licensed for the $Platform platform."
551             echo
552             echo "Please contact qt-info@nokia.com to upgrade your license to"
553             echo "include the $Platform platform, or install the Qt Open Source Edition"
554             echo "if you intend to develop free software."
555             exit 1
556             ;;
557     esac
558
559     if test -r "$relpath/.LICENSE"; then
560         # Generic, non-final license
561         LICENSE_EXTENSION=""
562         line=`sed 'y/a-z/A-Z/;q' "$relpath"/.LICENSE`
563         case "$line" in
564             *BETA*)
565                 Edition=Beta
566                 ;;
567             *TECHNOLOGY?PREVIEW*)
568                 Edition=Preview
569                 ;;
570             *EVALUATION*)
571                 Edition=Evaluation
572                 ;;
573             *)
574                 echo >&2 "Invalid license files; cannot continue"
575                 exit 1
576                 ;;
577         esac
578         Licensee="$Edition"
579         EditionString="$Edition"
580         QT_EDITION="QT_EDITION_DESKTOP"
581     fi
582
583     case "$LicenseFeatureCode" in
584     B|G|L|Y)
585         # US
586         case "$LicenseType" in
587         Commercial)
588             cp -f "$relpath/.LICENSE${LICENSE_EXTENSION}-US" "$outpath/LICENSE"
589             ;;
590         Evaluation)
591             cp -f "$relpath/.LICENSE-EVALUATION-US" "$outpath/LICENSE"
592             ;;
593         esac
594         ;;
595     2|4|5|F)
596         # non-US
597         case "$LicenseType" in
598         Commercial)
599             cp -f "$relpath/.LICENSE${LICENSE_EXTENSION}" "$outpath/LICENSE"
600             ;;
601         Evaluation)
602             cp -f "$relpath/.LICENSE-EVALUATION" "$outpath/LICENSE"
603             ;;
604         esac
605         ;;
606     *)
607         echo
608         echo "Invalid license key. Please check the license key."
609         exit 1
610         ;;
611     esac
612     case "$LicenseFeatureCode" in
613         4|B|F|Y)
614             CFG_RTOS_ENABLED=yes
615             ;;
616         2|5|G|L)
617             CFG_RTOS_ENABLED=no
618             ;;
619     esac
620     if [ '!' -f "$outpath/LICENSE" ]; then
621         echo "The LICENSE, LICENSE.GPL3 LICENSE.LGPL file shipped with"
622         echo "this software has disappeared."
623         echo
624         echo "Sorry, you are not licensed to use this software."
625         echo "Try re-installing."
626         echo
627         exit 1
628     fi
629 elif [ $COMMERCIAL_USER = "no" ]; then
630     # Open Source edition - may only be used under the terms of the GPL or LGPL.
631     [ "$PLATFORM_MAC" = "maybe" ] && PLATFORM_MAC=yes
632     Licensee="Open Source"
633     Edition="OpenSource"
634     EditionString="Open Source"
635     QT_EDITION="QT_EDITION_OPENSOURCE"
636 fi
637
638 #-------------------------------------------------------------------------------
639 # initalize variables
640 #-------------------------------------------------------------------------------
641
642 SYSTEM_VARIABLES="RANLIB STRIP OBJDUMP LD CC CXX CFLAGS CXXFLAGS LDFLAGS"
643 for varname in $SYSTEM_VARIABLES; do
644     qmakevarname="${varname}"
645     # use LDFLAGS for autoconf compat, but qmake uses QMAKE_LFLAGS
646     if [ "${varname}" = "LDFLAGS" ]; then
647         qmakevarname="LFLAGS"
648     elif [ "${varname}" = "LD" ]; then
649         qmakevarname="LINK"
650     fi
651     cmd=`echo \
652 'if [ -n "\$'${varname}'" ]; then
653     QMakeVar set QMAKE_'${qmakevarname}' "\$'${varname}'"
654 fi'`
655     eval "$cmd"
656 done
657 # Use CC/CXX to run config.tests
658 mkdir -p "$outpath/config.tests"
659 rm -f "$outpath/config.tests/.qmake.cache"
660 cp "$QMAKE_VARS_FILE" "$outpath/config.tests/.qmake.cache"
661
662 QMakeVar add styles "cde mac motif plastique cleanlooks windows"
663
664 # QTDIR may be set and point to an old or system-wide Qt installation
665 unset QTDIR
666
667 # the minimum version of libdbus-1 that we require:
668 MIN_DBUS_1_VERSION=0.93
669
670 # initalize internal variables
671 CFG_CONFIGURE_EXIT_ON_ERROR=yes
672 CFG_PROFILE=no
673 CFG_GUI=auto # (yes|no|auto)
674 CFG_WIDGETS=yes
675 CFG_QCONFIG=full
676 CFG_DEBUG=auto
677 CFG_MYSQL_CONFIG=
678 CFG_DEBUG_RELEASE=no
679 CFG_SHARED=yes
680 CFG_SM=auto
681 CFG_XSHAPE=auto
682 CFG_XSYNC=auto
683 CFG_XVIDEO=auto
684 CFG_XINERAMA=runtime
685 CFG_XFIXES=runtime
686 CFG_ZLIB=auto
687 CFG_SQLITE=qt
688 CFG_GIF=auto
689 CFG_PNG=yes
690 CFG_LIBPNG=auto
691 CFG_JPEG=auto
692 CFG_LIBJPEG=auto
693 CFG_XCURSOR=runtime
694 CFG_XRANDR=runtime
695 CFG_XRENDER=auto
696 CFG_MITSHM=auto
697 CFG_OPENGL=auto
698 CFG_OPENVG=auto
699 CFG_OPENVG_LC_INCLUDES=no
700 CFG_OPENVG_SHIVA=auto
701 CFG_OPENVG_ON_OPENGL=auto
702 CFG_EGL=auto
703 CFG_SSE=auto
704 CFG_FONTCONFIG=auto
705 CFG_LIBFREETYPE=auto
706 CFG_SQL_AVAILABLE=
707 QT_DEFAULT_BUILD_PARTS="libs examples"
708 CFG_BUILD_PARTS=""
709 CFG_NOBUILD_PARTS=""
710 CFG_RELEASE_QMAKE=no
711 CFG_AUDIO_BACKEND=auto
712 CFG_V8SNAPSHOT=auto
713 CFG_QML_DEBUG=yes
714 CFG_JAVASCRIPTCORE_JIT=auto
715 CFG_PKGCONFIG=auto
716
717 # Target architecture
718 CFG_ARCH=
719 CFG_CPUFEATURES=
720 # Host architecture, same as CFG_ARCH when not cross-compiling
721 CFG_HOST_ARCH=
722 CFG_HOST_CPUFEATURES=
723 # Set when the -arch or -host-arch arguments are used
724 OPT_OBSOLETE_HOST_ARG=no
725
726 CFG_USE_GNUMAKE=no
727 CFG_IM=yes
728 CFG_XINPUT2=auto
729 CFG_XINPUT=runtime
730 CFG_XKB=auto
731 CFG_XCB=auto
732 CFG_XCB_LIMITED=yes
733 CFG_EGLFS=auto
734 CFG_DIRECTFB=auto
735 CFG_LIBUDEV=auto
736 CFG_OBSOLETE_WAYLAND=no
737 CFG_EVDEV=auto
738 CFG_NIS=auto
739 CFG_CUPS=auto
740 CFG_ICONV=auto
741 CFG_DBUS=auto
742 CFG_GLIB=auto
743 CFG_GSTREAMER=auto
744 CFG_QGTKSTYLE=auto
745 CFG_LARGEFILE=auto
746 CFG_OPENSSL=auto
747 CFG_PRECOMPILE=auto
748 CFG_SEPARATE_DEBUG_INFO=no
749 CFG_SEPARATE_DEBUG_INFO_NOCOPY=no
750 CFG_REDUCE_EXPORTS=auto
751 CFG_SSE2=auto
752 CFG_SSE3=auto
753 CFG_SSSE3=auto
754 CFG_SSE4_1=auto
755 CFG_SSE4_2=auto
756 CFG_AVX=auto
757 CFG_AVX2=auto
758 CFG_REDUCE_RELOCATIONS=auto
759 CFG_ACCESSIBILITY=auto
760 CFG_IWMMXT=no
761 CFG_NEON=auto
762 CFG_MIPS_DSP=yes
763 CFG_MIPS_DSPR2=yes
764 CFG_CLOCK_GETTIME=auto
765 CFG_CLOCK_MONOTONIC=auto
766 CFG_MREMAP=auto
767 CFG_GETADDRINFO=auto
768 CFG_IPV6IFNAME=auto
769 CFG_GETIFADDRS=auto
770 CFG_INOTIFY=auto
771 CFG_RPATH=yes
772 CFG_FRAMEWORK=auto
773 MAC_CONFIG_TEST_COMMANDLINE=  # used to make the configure tests run with the correct arch's and SDK settings
774 CFG_MAC_HARFBUZZ=no
775 CFG_SXE=no
776 CFG_PREFIX_INSTALL=yes
777 CFG_SDK=
778 DEFINES=
779 D_FLAGS=
780 I_FLAGS=
781 L_FLAGS=
782 RPATH_FLAGS=
783 l_FLAGS=
784 W_FLAGS=
785 QCONFIG_FLAGS=
786 XPLATFORM=              # This seems to be the QMAKESPEC, like "linux-g++"
787 XPLATFORM_MINGW=no      # Whether target platform is MinGW (win32-g++*)
788 XPLATFORM_MAEMO=no
789 XPLATFORM_QNX=no
790 PLATFORM=$QMAKESPEC
791 QT_CROSS_COMPILE=no
792 OPT_CONFIRM_LICENSE=no
793 OPT_SHADOW=maybe
794 OPT_FAST=auto
795 OPT_VERBOSE=no
796 OPT_HELP=
797 CFG_SILENT=no
798 CFG_ALSA=auto
799 CFG_PULSEAUDIO=auto
800 CFG_COREWLAN=auto
801 CFG_NOPROCESS=no
802 CFG_ICU=auto
803 CFG_FORCE_ASSERTS=no
804 CFG_PCRE=auto
805 QPA_PLATFORM_GUARD=yes
806 CFG_CXX11=auto
807
808 # initalize variables used for installation
809 QT_INSTALL_PREFIX=
810 QT_INSTALL_DOCS=
811 QT_INSTALL_HEADERS=
812 QT_INSTALL_LIBS=
813 QT_INSTALL_BINS=
814 QT_INSTALL_PLUGINS=
815 QT_INSTALL_IMPORTS=
816 QT_INSTALL_DATA=
817 QT_INSTALL_TRANSLATIONS=
818 QT_INSTALL_SETTINGS=
819 QT_INSTALL_EXAMPLES=
820 QT_INSTALL_TESTS=
821 CFG_SYSROOT=
822 QT_HOST_PREFIX=
823 QT_HOST_BINS=
824 QT_HOST_DATA=
825
826 #flags for SQL drivers
827 QT_CFLAGS_PSQL=
828 QT_LFLAGS_PSQL=
829 QT_CFLAGS_MYSQL=
830 QT_LFLAGS_MYSQL=
831 QT_LFLAGS_MYSQL_R=
832 QT_CFLAGS_SQLITE=
833 QT_LFLAGS_SQLITE=
834 QT_LFLAGS_ODBC="-lodbc"
835 QT_LFLAGS_TDS=
836
837 # flags for libdbus-1
838 QT_CFLAGS_DBUS=
839 QT_LIBS_DBUS=
840
841 # flags for Glib (X11 only)
842 QT_CFLAGS_GLIB=
843 QT_LIBS_GLIB=
844
845 # flags for GStreamer (X11 only)
846 QT_CFLAGS_GSTREAMER=
847 QT_LIBS_GSTREAMER=
848
849 # default qpa platform
850 QT_QPA_DEFAULT_PLATFORM=
851
852 #-------------------------------------------------------------------------------
853 # check SQL drivers available in this package
854 #-------------------------------------------------------------------------------
855
856 # opensource version removes some drivers, so force them to be off
857 CFG_SQL_tds=no
858 CFG_SQL_oci=no
859 CFG_SQL_db2=no
860
861 CFG_SQL_AVAILABLE=
862 if [ -d "$relpath/src/plugins/sqldrivers" ]; then
863   for a in "$relpath/src/plugins/sqldrivers/"*; do
864      if [ -d "$a" ]; then
865          base_a=`basename "$a"`
866          CFG_SQL_AVAILABLE="${CFG_SQL_AVAILABLE} ${base_a}"
867          eval "CFG_SQL_${base_a}=auto"
868      fi
869   done
870 fi
871
872 CFG_IMAGEFORMAT_PLUGIN_AVAILABLE=
873 if [ -d "$relpath/src/plugins/imageformats" ]; then
874     for a in "$relpath/src/plugins/imageformats/"*; do
875         if [ -d "$a" ]; then
876             base_a=`basename "$a"`
877             CFG_IMAGEFORMAT_PLUGIN_AVAILABLE="${CFG_IMAGEFORMAT_PLUGIN_AVAILABLE} ${base_a}"
878         fi
879     done
880 fi
881
882 #-------------------------------------------------------------------------------
883 # parse command line arguments
884 #-------------------------------------------------------------------------------
885
886 # parse the arguments, setting things to "yes" or "no"
887 while [ "$#" -gt 0 ]; do
888     CURRENT_OPT="$1"
889     UNKNOWN_ARG=no
890     case "$1" in
891     #Autoconf style options
892     --enable-*)
893         VAR=`echo $1 | sed "s,^--enable-\(.*\),\1,"`
894         VAL=yes
895         ;;
896     --disable-*)
897         VAR=`echo $1 | sed "s,^--disable-\(.*\),\1,"`
898         VAL=no
899         ;;
900     --*=*)
901         VAR=`echo $1 | sed "s,^--\(.*\)=.*,\1,"`
902         VAL=`echo $1 | sed "s,^--.*=\(.*\),\1,"`
903         ;;
904     --no-*)
905         VAR=`echo $1 | sed "s,^--no-\(.*\),\1,"`
906         VAL=no
907         ;;
908     --*)
909         VAR=`echo $1 | sed "s,^--\(.*\),\1,"`
910         VAL=yes
911         ;;
912     #Qt plugin options
913     -no-*-*|-plugin-*-*|-qt-*-*)
914         VAR=`echo $1 | sed "s,^-[^-]*-\(.*\),\1,"`
915         VAL=`echo $1 | sed "s,^-\([^-]*\).*,\1,"`
916         ;;
917     #Qt style no options
918     -no-*)
919         VAR=`echo $1 | sed "s,^-no-\(.*\),\1,"`
920         VAL=no
921         ;;
922     #Qt style yes options
923     -profile|-shared|-static|-sm|-xinerama|-xshape|-xsync|-xinput|-xinput2|-egl|-reduce-exports|-pch|-separate-debug-info|-freetype|-xcursor|-xfixes|-xrandr|-xrender|-mitshm|-fontconfig|-xkb|-xcb|-eglfs|-directfb|-nis|-dbus|-dbus-linked|-glib|-gstreamer|-gtkstyle|-cups|-iconv|-largefile|-h|-help|-v|-verbose|-debug|-release|-fast|-accessibility|-confirm-license|-gnumake|-framework|-debug-and-release|-harfbuzz|-prefix-install|-silent|-optimized-qmake|-reduce-relocations|-sse|-openssl|-openssl-linked|-phonon-backend|-audio-backend|-qml-debug|-javascript-jit|-rpath|-pkg-config|-force-pkg-config|-icu|-force-asserts|-testcocoon|-c++11)
924         VAR=`echo $1 | sed "s,^-\(.*\),\1,"`
925         VAL=yes
926         ;;
927     #Qt style options that pass an argument
928     -qconfig)
929         CFG_QCONFIG="$VAL"
930         VAR=`echo $1 | sed "s,^-\(.*\),\1,"`
931         shift
932         VAL=$1
933         ;;
934     -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)
935         VAR=`echo $1 | sed "s,^-\(.*\),\1,"`
936         shift
937         VAL="$1"
938         ;;
939     #Qt style complex options in one command
940     -enable-*|-disable-*)
941         VAR=`echo $1 | sed "s,^-\([^-]*\)-.*,\1,"`
942         VAL=`echo $1 | sed "s,^-[^-]*-\(.*\),\1,"`
943         ;;
944     #Qt Builtin/System style options
945     -no-*|-system-*|-qt-*)
946         VAR=`echo $1 | sed "s,^-[^-]*-\(.*\),\1,"`
947         VAL=`echo $1 | sed "s,^-\([^-]*\)-.*,\1,"`
948         ;;
949     #Options that cannot be generalized
950     -k|-continue)
951         VAR=fatal_error
952         VAL=no
953         ;;
954     -opengl)
955         VAR=opengl
956         # this option may or may not be followed by an argument
957         if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then
958             VAL=yes
959         else
960             shift;
961             VAL=$1
962         fi
963         ;;
964     -openvg)
965         VAR=openvg
966         # this option may or may not be followed by an argument
967         if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then
968             VAL=yes
969         else
970             shift;
971             VAL=$1
972         fi
973         ;;
974     -hostprefix)
975         VAR=`echo $1 | sed "s,^-\(.*\),\1,"`
976         # this option may or may not be followed by an argument
977         if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then
978             VAL=$outpath
979         else
980             shift;
981             VAL=$1
982         fi
983         ;;
984     -qtnamespace)
985         VAR="qtnamespace"
986         shift
987         VAL="$1"
988         ;;
989     -qtlibinfix)
990         VAR="qtlibinfix"
991         shift
992         VAL="$1"
993         ;;
994     -D?*|-D)
995         VAR="add_define"
996         if [ "$1" = "-D" ]; then
997             shift
998             VAL="$1"
999         else
1000             VAL=`echo $1 | sed 's,-D,,'`
1001         fi
1002         ;;
1003     -fpu)
1004         VAR="fpu"
1005         # this option may or may not be followed by an argument
1006         if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then
1007             VAL=no
1008         else
1009             shift
1010             VAL=$1
1011         fi
1012         ;;
1013     -I?*|-I)
1014         VAR="add_ipath"
1015         if [ "$1" = "-I" ]; then
1016             shift
1017             VAL="$1"
1018         else
1019             VAL=`echo $1 | sed 's,-I,,'`
1020         fi
1021         ;;
1022     -L?*|-L)
1023         VAR="add_lpath"
1024         if [ "$1" = "-L" ]; then
1025             shift
1026             VAL="$1"
1027         else
1028             VAL=`echo $1 | sed 's,-L,,'`
1029         fi
1030         ;;
1031     -R?*|-R)
1032         VAR="add_rpath"
1033         if [ "$1" = "-R" ]; then
1034             shift
1035             VAL="$1"
1036         else
1037             VAL=`echo $1 | sed 's,-R,,'`
1038         fi
1039         ;;
1040     -l?*|-l)
1041         VAR="add_link"
1042         if [ "$1" = "-l" ]; then
1043             shift
1044             VAL="$1"
1045         else
1046             VAL=`echo $1 | sed 's,-l,,'`
1047         fi
1048         ;;
1049     -F?*|-F)
1050         VAR="add_fpath"
1051         if [ "$1" = "-F" ]; then
1052             shift
1053             VAL="$1"
1054         else
1055             VAL=`echo $1 | sed 's,-F,,'`
1056         fi
1057         ;;
1058     -fw?*|-fw)
1059         VAR="add_framework"
1060         if [ "$1" = "-fw" ]; then
1061             shift
1062             VAL="$1"
1063         else
1064             VAL=`echo $1 | sed 's,-fw,,'`
1065         fi
1066         ;;
1067     -W*)
1068         VAR="add_warn"
1069         VAL="$1"
1070         ;;
1071     -*)
1072         VAR=`echo $1 | sed "s,^-\(.*\),\1,"`
1073         VAL="unknown"
1074         ;;
1075     *)
1076         UNKNOWN_ARG=yes
1077         ;;
1078     esac
1079     if [ "$UNKNOWN_ARG" = "yes" ]; then
1080         echo "$1: unknown argument"
1081         OPT_HELP=yes
1082         ERROR=yes
1083         shift
1084         continue
1085      fi
1086     shift
1087
1088     UNKNOWN_OPT=no
1089     case "$VAR" in
1090     accessibility)
1091         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1092             CFG_ACCESSIBILITY="$VAL"
1093         else
1094             UNKNOWN_OPT=yes
1095         fi
1096         ;;
1097     license)
1098         LICENSE_FILE="$VAL"
1099         ;;
1100     gnumake)
1101         CFG_USE_GNUMAKE="$VAL"
1102         ;;
1103     mysql_config)
1104         CFG_MYSQL_CONFIG="$VAL"
1105         ;;
1106     prefix)
1107         QT_INSTALL_PREFIX="$VAL"
1108         ;;
1109     hostprefix)
1110         QT_HOST_PREFIX="$VAL"
1111         ;;
1112     hostdatadir)
1113         QT_HOST_DATA="$VAL"
1114         ;;
1115     hostbindir)
1116         QT_HOST_BINS="$VAL"
1117         ;;
1118     pkg-config)
1119         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1120             CFG_PKGCONFIG="$VAL"
1121         else
1122             UNKNOWN_OPT=yes
1123         fi
1124         ;;
1125     force-pkg-config)
1126         CFG_PKGCONFIG="force"
1127         ;;
1128     docdir)
1129         QT_INSTALL_DOCS="$VAL"
1130         ;;
1131     headerdir)
1132         QT_INSTALL_HEADERS="$VAL"
1133         ;;
1134     plugindir)
1135         QT_INSTALL_PLUGINS="$VAL"
1136         ;;
1137     importdir)
1138         QT_INSTALL_IMPORTS="$VAL"
1139         ;;
1140     datadir)
1141         QT_INSTALL_DATA="$VAL"
1142         ;;
1143     libdir)
1144         QT_INSTALL_LIBS="$VAL"
1145         ;;
1146     qtnamespace)
1147         QT_NAMESPACE="$VAL"
1148         ;;
1149     qtlibinfix)
1150         QT_LIBINFIX="$VAL"
1151         ;;
1152     translationdir)
1153         QT_INSTALL_TRANSLATIONS="$VAL"
1154         ;;
1155     sysconfdir|settingsdir)
1156         QT_INSTALL_SETTINGS="$VAL"
1157         ;;
1158     examplesdir)
1159         QT_INSTALL_EXAMPLES="$VAL"
1160         ;;
1161     testsdir)
1162         QT_INSTALL_TESTS="$VAL"
1163         ;;
1164     qconfig)
1165         CFG_QCONFIG="$VAL"
1166         ;;
1167     sysroot)
1168         CFG_SYSROOT="$VAL"
1169         ;;
1170     bindir)
1171         QT_INSTALL_BINS="$VAL"
1172         ;;
1173     sxe)
1174         CFG_SXE="$VAL"
1175         ;;
1176     sse)
1177         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1178             CFG_SSE="$VAL"
1179         else
1180             UNKNOWN_OPT=yes
1181         fi
1182         ;;
1183     opengl)
1184         if  [ "$VAL" = "auto" ] || [ "$VAL" = "desktop" ] ||
1185             [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] ||
1186             [ "$VAL" = "es2" ]; then
1187             CFG_OPENGL="$VAL"
1188         else
1189             UNKNOWN_OPT=yes
1190         fi
1191         ;;
1192     openvg)
1193         if [ "$VAL" = "auto" ] || [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1194             CFG_OPENVG="$VAL"
1195         else
1196             UNKNOWN_OPT=yes
1197         fi
1198         ;;
1199     nomake)
1200         CFG_NOBUILD_PARTS="$CFG_NOBUILD_PARTS $VAL"
1201         ;;
1202     make)
1203         CFG_BUILD_PARTS="$CFG_BUILD_PARTS $VAL"
1204         ;;
1205     sdk)
1206         if [ "$BUILD_ON_MAC" = "yes" ]; then
1207             CFG_SDK="$VAL"
1208         else
1209             UNKNOWN_OPT=yes
1210         fi
1211         ;;
1212     arch|host-arch)
1213         OPT_OBSOLETE_HOST_ARG=yes
1214         ;;
1215     harfbuzz)
1216         if [ "$BUILD_ON_MAC" = "yes" ] && [ "$VAL" = "yes" ]; then
1217             CFG_MAC_HARFBUZZ="$VAL"
1218         else
1219             UNKNOWN_OPT=yes
1220         fi
1221         ;;
1222
1223     framework)
1224         if [ "$BUILD_ON_MAC" = "yes" ]; then
1225             CFG_FRAMEWORK="$VAL"
1226         else
1227             UNKNOWN_OPT=yes
1228         fi
1229         ;;
1230     profile)
1231         if [ "$VAL" = "yes" ]; then
1232             CFG_PROFILE=yes
1233             QMakeVar add QMAKE_CFLAGS -pg
1234             QMakeVar add QMAKE_CXXFLAGS -pg
1235             QMakeVar add QMAKE_LFLAGS -pg
1236             QMAKE_VARS="$QMAKE_VARS CONFIG+=nostrip"
1237         else
1238             UNKNOWN_OPT=yes
1239         fi
1240         ;;
1241     testcocoon)
1242         if [ "$VAL" = "yes" ]; then
1243             QTCONFIG_CONFIG="$QTCONFIG_CONFIG testcocoon"
1244         fi
1245         ;;
1246     platform)
1247         PLATFORM="$VAL"
1248         # keep compatibility with old platform names
1249         case $PLATFORM in
1250         aix-64)
1251             PLATFORM=aix-xlc-64
1252             ;;
1253         hpux-o64)
1254             PLATFORM=hpux-acc-o64
1255             ;;
1256         hpux-n64)
1257             PLATFORM=hpux-acc-64
1258             ;;
1259         hpux-acc-n64)
1260             PLATFORM=hpux-acc-64
1261             ;;
1262         irix-n32)
1263             PLATFORM=irix-cc
1264             ;;
1265         irix-64)
1266             PLATFORM=irix-cc-64
1267             ;;
1268         irix-cc-n64)
1269             PLATFORM=irix-cc-64
1270             ;;
1271         reliant-64)
1272             PLATFORM=reliant-cds-64
1273             ;;
1274         solaris-64)
1275             PLATFORM=solaris-cc-64
1276             ;;
1277         openunix-cc)
1278             PLATFORM=unixware-cc
1279             ;;
1280         openunix-g++)
1281             PLATFORM=unixware-g++
1282             ;;
1283         unixware7-cc)
1284             PLATFORM=unixware-cc
1285             ;;
1286         unixware7-g++)
1287             PLATFORM=unixware-g++
1288             ;;
1289         macx-g++-64)
1290             PLATFORM=macx-g++
1291             NATIVE_64_ARCH=
1292             case `uname -p` in
1293             i386) NATIVE_64_ARCH="x86_64" ;;
1294             powerpc) NATIVE_64_ARCH="ppc64" ;;
1295             *)   echo "WARNING: Can't detect CPU architecture for macx-g++-64" ;;
1296             esac
1297             if [ ! -z "$NATIVE_64_ARCH" ]; then
1298                 QTCONFIG_CONFIG="$QTCONFIG_CONFIG $NATIVE_64_ARCH"
1299             fi
1300             ;;
1301         esac
1302         ;;
1303     xplatform)
1304         XPLATFORM="$VAL"
1305         case `basename "$XPLATFORM"` in win32-g++*) XPLATFORM_MINGW=yes;; esac
1306         ;;
1307     device)
1308         XPLATFORM=`resolveDeviceMkspec $VAL`
1309         [ "$XPLATFORM" = "undefined" ] && exit 101
1310         ;;
1311     device-option)
1312         DEV_VAR=`echo $VAL | sed "s,^\(.*\)=.*,\1,"`
1313         DEV_VAL=`echo $VAL | sed "s,^.*=\(.*\),\1,"`
1314         DeviceVar set $DEV_VAR $DEV_VAL
1315         ;;
1316     qpa)
1317         QT_QPA_DEFAULT_PLATFORM="$VAL"
1318         ;;
1319     debug-and-release)
1320         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1321             CFG_DEBUG_RELEASE="$VAL"
1322         else
1323             UNKNOWN_OPT=yes
1324         fi
1325         ;;
1326     optimized-qmake)
1327         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1328             CFG_RELEASE_QMAKE="$VAL"
1329         else
1330             UNKNOWN_OPT=yes
1331         fi
1332         ;;
1333     release)
1334         if [ "$VAL" = "yes" ]; then
1335             CFG_DEBUG=no
1336         elif [ "$VAL" = "no" ]; then
1337             CFG_DEBUG=yes
1338         else
1339             UNKNOWN_OPT=yes
1340         fi
1341         ;;
1342     prefix-install)
1343         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1344             CFG_PREFIX_INSTALL="$VAL"
1345         else
1346             UNKNOWN_OPT=yes
1347         fi
1348         ;;
1349     debug)
1350         CFG_DEBUG="$VAL"
1351         ;;
1352     developer-build|commercial|opensource)
1353         # These switches have been dealt with already
1354         ;;
1355     static)
1356         if [ "$VAL" = "yes" ]; then
1357             CFG_SHARED=no
1358         elif [ "$VAL" = "no" ]; then
1359             CFG_SHARED=yes
1360         else
1361             UNKNOWN_OPT=yes
1362         fi
1363         ;;
1364     fatal_error)
1365         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1366             CFG_CONFIGURE_EXIT_ON_ERROR="$VAL"
1367         else
1368             UNKNOWN_OPT=yes
1369         fi
1370         ;;
1371     feature-*)
1372             FEATURE=`echo $VAR | sed "s,^[^-]*-\([^-]*\),\1," | tr 'abcdefghijklmnopqrstuvwxyz-' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`
1373             if [ "$VAL" = "no" ]; then
1374                 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_$FEATURE"
1375             elif [ "$VAL" = "yes" ] || [ "$VAL" = "unknown" ]; then
1376                 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_$FEATURE"
1377             else
1378                 UNKNOWN_OPT=yes
1379             fi
1380         ;;
1381     shared)
1382         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1383             CFG_SHARED="$VAL"
1384         else
1385             UNKNOWN_OPT=yes
1386         fi
1387         ;;
1388     gif)
1389         if [ "$VAL" = "no" ]; then
1390             CFG_GIF="$VAL"
1391         else
1392             UNKNOWN_OPT=yes
1393         fi
1394         ;;
1395     sm)
1396         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1397             CFG_SM="$VAL"
1398         else
1399             UNKNOWN_OPT=yes
1400         fi
1401
1402         ;;
1403     xinerama)
1404         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then
1405             CFG_XINERAMA="$VAL"
1406         else
1407             UNKNOWN_OPT=yes
1408         fi
1409         ;;
1410     xshape)
1411         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1412             CFG_XSHAPE="$VAL"
1413         else
1414             UNKNOWN_OPT=yes
1415         fi
1416         ;;
1417     xvideo)
1418         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1419             CFG_XVIDEO="$VAL"
1420         else
1421             UNKNOWN_OPT=yes
1422         fi
1423         ;;
1424     xsync)
1425         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1426             CFG_XSYNC="$VAL"
1427         else
1428             UNKNOWN_OPT=yes
1429         fi
1430         ;;
1431      xinput2)
1432         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1433             CFG_XINPUT2="$VAL"
1434         else
1435             UNKNOWN_OPT=yes
1436         fi
1437         ;;
1438     xinput)
1439         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then
1440             CFG_XINPUT="$VAL"
1441         else
1442             UNKNOWN_OPT=yes
1443         fi
1444         ;;
1445     egl)
1446         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1447             CFG_EGL="$VAL"
1448         else
1449             UNKNOWN_OPT=yes
1450         fi
1451         ;;
1452     pch)
1453         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1454             CFG_PRECOMPILE="$VAL"
1455         else
1456             UNKNOWN_OPT=yes
1457         fi
1458         ;;
1459     separate-debug-info)
1460         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1461             CFG_SEPARATE_DEBUG_INFO="$VAL"
1462         elif [ "$VAL" = "nocopy" ] ; then
1463             CFG_SEPARATE_DEBUG_INFO="yes"
1464             CFG_SEPARATE_DEBUG_INFO_NOCOPY="yes"
1465         else
1466             UNKNOWN_OPT=yes
1467         fi
1468         ;;
1469     reduce-exports)
1470         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1471             CFG_REDUCE_EXPORTS="$VAL"
1472         else
1473             UNKNOWN_OPT=yes
1474         fi
1475         ;;
1476     sse2)
1477         if [ "$VAL" = "no" ]; then
1478             CFG_SSE2="$VAL"
1479         else
1480             UNKNOWN_OPT=yes
1481         fi
1482         ;;
1483     sse3)
1484         if [ "$VAL" = "no" ]; then
1485             CFG_SSE3="$VAL"
1486         else
1487             UNKNOWN_OPT=yes
1488         fi
1489         ;;
1490     ssse3)
1491         if [ "$VAL" = "no" ]; then
1492             CFG_SSSE3="$VAL"
1493         else
1494             UNKNOWN_OPT=yes
1495         fi
1496         ;;
1497     sse4.1)
1498         if [ "$VAL" = "no" ]; then
1499             CFG_SSE4_1="$VAL"
1500         else
1501             UNKNOWN_OPT=yes
1502         fi
1503         ;;
1504     sse4.2)
1505         if [ "$VAL" = "no" ]; then
1506             CFG_SSE4_2="$VAL"
1507         else
1508             UNKNOWN_OPT=yes
1509         fi
1510         ;;
1511     avx)
1512         if [ "$VAL" = "no" ]; then
1513             CFG_AVX="$VAL"
1514         else
1515             UNKNOWN_OPT=yes
1516         fi
1517         ;;
1518     avx2)
1519         if [ "$VAL" = "no" ]; then
1520             CFG_AVX2="$VAL"
1521         else
1522             UNKNOWN_OPT=yes
1523         fi
1524         ;;
1525     iwmmxt)
1526         CFG_IWMMXT="yes"
1527         ;;
1528     neon)
1529         if [ "$VAL" = "no" ]; then
1530             CFG_NEON="$VAL"
1531         else
1532             UNKNOWN_OPT=yes
1533         fi
1534         ;;
1535     mips_dsp)
1536         if [ "$VAL" = "no" ]; then
1537             CFG_MIPS_DSP="$VAL"
1538         else
1539             UNKNOWN_OPT=yes
1540         fi
1541         ;;
1542     mips_dspr2)
1543         if [ "$VAL" = "no" ]; then
1544             CFG_MIPS_DSPR2="$VAL"
1545         else
1546             UNKNOWN_OPT=yes
1547         fi
1548         ;;
1549     reduce-relocations)
1550         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1551             CFG_REDUCE_RELOCATIONS="$VAL"
1552         else
1553             UNKNOWN_OPT=yes
1554         fi
1555         ;;
1556     zlib)
1557         [ "$VAL" = "qt" ] && VAL=yes
1558         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then
1559             CFG_ZLIB="$VAL"
1560         else
1561             UNKNOWN_OPT=yes
1562         fi
1563         # No longer supported:
1564         #[ "$VAL" = "no" ] && CFG_LIBPNG=no
1565         ;;
1566     sqlite)
1567         if [ "$VAL" = "system" ]; then
1568             CFG_SQLITE=system
1569         else
1570             UNKNOWN_OPT=yes
1571         fi
1572         ;;
1573     libpng)
1574         [ "$VAL" = "yes" ] && VAL=qt
1575         if [ "$VAL" = "qt" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then
1576             CFG_LIBPNG="$VAL"
1577         else
1578             UNKNOWN_OPT=yes
1579         fi
1580         ;;
1581     libjpeg)
1582         [ "$VAL" = "yes" ] && VAL=qt
1583         if [ "$VAL" = "qt" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then
1584             CFG_LIBJPEG="$VAL"
1585         else
1586             UNKNOWN_OPT=yes
1587         fi
1588         ;;
1589     xcursor)
1590         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then
1591             CFG_XCURSOR="$VAL"
1592         else
1593             UNKNOWN_OPT=yes
1594         fi
1595         ;;
1596     xfixes)
1597         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then
1598             CFG_XFIXES="$VAL"
1599         else
1600             UNKNOWN_OPT=yes
1601         fi
1602         ;;
1603     xrandr)
1604         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then
1605             CFG_XRANDR="$VAL"
1606         else
1607             UNKNOWN_OPT=yes
1608         fi
1609         ;;
1610     xrender)
1611         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1612             CFG_XRENDER="$VAL"
1613         else
1614             UNKNOWN_OPT=yes
1615         fi
1616         ;;
1617     mitshm)
1618         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1619             CFG_MITSHM="$VAL"
1620         else
1621             UNKNOWN_OPT=yes
1622         fi
1623         ;;
1624     fontconfig)
1625         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1626             CFG_FONTCONFIG="$VAL"
1627         else
1628             UNKNOWN_OPT=yes
1629         fi
1630         ;;
1631     xkb)
1632         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1633             CFG_XKB="$VAL"
1634         else
1635             UNKNOWN_OPT=yes
1636         fi
1637         ;;
1638     xcb)
1639         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1640             CFG_XCB="$VAL"
1641         else
1642             UNKNOWN_OPT=yes
1643         fi
1644         ;;
1645     wayland)
1646         CFG_OBSOLETE_WAYLAND=yes
1647         ;;
1648     eglfs)
1649         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1650             CFG_EGLFS="$VAL"
1651         else
1652             UNKNOWN_OPT=yes
1653         fi
1654         ;;
1655     directfb)
1656         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1657             CFG_DIRECTFB="$VAL"
1658         else
1659             UNKNOWN_OPT=yes
1660         fi
1661         ;;
1662     libudev)
1663         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1664             CFG_LIBUDEV="$VAL"
1665         else
1666             UNKNOWN_OPT=yes
1667         fi
1668         ;;
1669     evdev)
1670         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1671             CFG_EVDEV="$VAL"
1672         else
1673             UNKNOWN_OPT=yes
1674         fi
1675         ;;
1676     cups)
1677         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1678             CFG_CUPS="$VAL"
1679         else
1680             UNKNOWN_OPT=yes
1681         fi
1682         ;;
1683     iconv)
1684         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1685             CFG_ICONV="$VAL"
1686         else
1687             UNKNOWN_OPT=yes
1688         fi
1689         ;;
1690     glib)
1691         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1692             CFG_GLIB="$VAL"
1693         else
1694             UNKNOWN_OPT=yes
1695         fi
1696         ;;
1697     gstreamer)
1698         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1699             CFG_GSTREAMER="$VAL"
1700         else
1701             UNKNOWN_OPT=yes
1702         fi
1703         ;;
1704     gtkstyle)
1705         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1706             CFG_QGTKSTYLE="$VAL"
1707         else
1708             UNKNOWN_OPT=yes
1709         fi
1710         ;;
1711     gui)
1712         if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ]; then
1713             CFG_GUI="yes"
1714         else
1715             if [ "$VAL" = "no" ]; then
1716                 CFG_GUI="no"
1717             else
1718                 UNKNOWN_OPT=yes
1719             fi
1720         fi
1721         ;;
1722     widgets)
1723         if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ]; then
1724             CFG_WIDGETS="yes"
1725         elif [ "$VAL" = "no" ]; then
1726             CFG_WIDGETS="no"
1727         else
1728             UNKNOWN_OPT=yes
1729         fi
1730         ;;
1731     qpa-platform-guard)
1732         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1733             QPA_PLATFORM_GUARD="$VAL"
1734         else
1735             UNKNOWN_OPT=yes
1736         fi
1737         ;;
1738     dbus)
1739         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "linked" ]; then
1740             CFG_DBUS="$VAL"
1741         elif [ "$VAL" = "runtime" ]; then
1742             CFG_DBUS="yes"
1743         else
1744             UNKNOWN_OPT=yes
1745         fi
1746         ;;
1747     dbus-linked)
1748         if [ "$VAL" = "yes" ]; then
1749             CFG_DBUS="linked"
1750         else
1751             UNKNOWN_OPT=yes
1752         fi
1753         ;;
1754     nis)
1755         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1756             CFG_NIS="$VAL"
1757         else
1758             UNKNOWN_OPT=yes
1759         fi
1760         ;;
1761     largefile)
1762         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1763             CFG_LARGEFILE="$VAL"
1764         else
1765             UNKNOWN_OPT=yes
1766         fi
1767         ;;
1768     openssl)
1769         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1770             CFG_OPENSSL="$VAL"
1771         else
1772             UNKNOWN_OPT=yes
1773         fi
1774         ;;
1775     openssl-linked)
1776         if [ "$VAL" = "yes" ]; then
1777             CFG_OPENSSL="linked"
1778         else
1779             UNKNOWN_OPT=yes
1780         fi
1781         ;;
1782     qml-debug)
1783         if [ "$VAL" = "yes" ]; then
1784             CFG_QML_DEBUG="yes"
1785         else
1786             if [ "$VAL" = "no" ]; then
1787                 CFG_QML_DEBUG="no"
1788             else
1789                 UNKNOWN_OPT=yes
1790             fi
1791         fi
1792         ;;
1793     javascript-jit)
1794         if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ] || [ "$VAL" = "no" ]; then 
1795             CFG_JAVASCRIPTCORE_JIT="$VAL"
1796         else
1797             UNKNOWN_OPT=yes
1798         fi
1799         ;;
1800     confirm-license)
1801         if [ "$VAL" = "yes" ]; then
1802             OPT_CONFIRM_LICENSE="$VAL"
1803         else
1804             UNKNOWN_OPT=yes
1805         fi
1806         ;;
1807     h|help)
1808         if [ "$VAL" = "yes" ]; then
1809             OPT_HELP="$VAL"
1810         else
1811             UNKNOWN_OPT=yes
1812         fi
1813         ;;
1814     sql-*|imageformat-*)
1815         # if Qt style options were used, $VAL can be "no", "qt", or "plugin"
1816         # if autoconf style options were used, $VAL can be "yes" or "no"
1817         [ "$VAL" = "yes" ] && VAL=qt
1818         # now $VAL should be "no", "qt", or "plugin"... double-check
1819         if [ "$VAL" != "no" ] && [ "$VAL" != "qt" ] && [ "$VAL" != "plugin" ]; then
1820             UNKNOWN_OPT=yes
1821         fi
1822         # now $VAL is "no", "qt", or "plugin"
1823         OPT="$VAL"
1824         VAL=`echo $VAR | sed "s,^[^-]*-\([^-]*\).*,\1,"`
1825         VAR=`echo $VAR | sed "s,^\([^-]*\).*,\1,"`
1826
1827         # Grab the available values
1828         case "$VAR" in
1829         sql)
1830             avail="$CFG_SQL_AVAILABLE"
1831             ;;
1832         imageformat)
1833             avail="$CFG_IMAGEFORMAT_PLUGIN_AVAILABLE"
1834             if [ "$OPT" != "plugin" ]; then
1835                 # png is always built in
1836                 avail="$avail png"
1837             fi
1838             ;;
1839         *)
1840             avail=""
1841             echo "BUG: Unhandled type $VAR used in $CURRENT_OPT"
1842             ;;
1843         esac
1844
1845         # Check that that user's value is available.
1846         found=no
1847         for d in $avail; do
1848             if [ "$VAL" = "$d" ]; then
1849                 found=yes
1850                 break
1851             fi
1852         done
1853         [ "$found" = yes ] || ERROR=yes
1854
1855         if [ "$VAR" = "sql" ]; then
1856             # set the CFG_SQL_driver
1857             eval "CFG_SQL_$VAL=\$OPT"
1858             continue
1859         elif [ "$VAR" = "imageformat" ]; then
1860             [ "$OPT" = "qt" ] && OPT=yes
1861             VAL="`echo $VAL |tr a-z A-Z`"
1862             eval "CFG_$VAL=$OPT"
1863             continue
1864         fi
1865
1866         if [ "$OPT" = "plugin" ] || [ "$OPT" = "qt" ]; then
1867             if [ "$OPT" = "plugin" ]; then
1868                 VAR="${VAR}-${OPT}"
1869             fi
1870             QMakeVar add "${VAR}s" "${VAL}"
1871         elif [ "$OPT" = "no" ]; then
1872             PLUG_VAR="${VAR}-plugin"
1873             IN_VAR="${VAR}"
1874             QMakeVar del "${IN_VAR}s" "$VAL"
1875             QMakeVar del "${PLUG_VAR}s" "$VAL"
1876         fi
1877         if [ "$ERROR" = "yes" ]; then
1878            echo "$CURRENT_OPT: unknown argument"
1879            OPT_HELP=yes
1880         fi
1881         ;;
1882     v|verbose)
1883         if [ "$VAL" = "yes" ]; then
1884             if [ "$OPT_VERBOSE" = "$VAL" ]; then            # takes two verboses to turn on qmake debugs
1885                 QMAKE_SWITCHES="$QMAKE_SWITCHES -d"
1886             else
1887                 OPT_VERBOSE=yes
1888             fi
1889         elif [ "$VAL" = "no" ]; then
1890             if [ "$OPT_VERBOSE" = "$VAL" ] && echo "$QMAKE_SWITCHES" | grep ' -d' >/dev/null 2>&1; then
1891                 QMAKE_SWITCHES=`echo $QMAKE_SWITCHES | sed "s, -d,,"`
1892             else
1893                 OPT_VERBOSE=no
1894             fi
1895         else
1896             UNKNOWN_OPT=yes
1897         fi
1898         ;;
1899     fast)
1900         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1901             OPT_FAST="$VAL"
1902         else
1903             UNKNOWN_OPT=yes
1904         fi
1905         ;;
1906     rpath)
1907         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1908             CFG_RPATH="$VAL"
1909         else
1910             UNKNOWN_OPT=yes
1911         fi
1912         ;;
1913     add_define)
1914         DEFINES="$DEFINES \"$VAL\""
1915         D_FLAGS="$D_FLAGS -D\"$VAL\""
1916         ;;
1917     add_ipath)
1918         I_FLAGS="$I_FLAGS -I\"${VAL}\""
1919         ;;
1920     add_lpath)
1921         L_FLAGS="$L_FLAGS -L\"${VAL}\""
1922         ;;
1923     add_rpath)
1924         RPATH_FLAGS="$RPATH_FLAGS \"${VAL}\""
1925         ;;
1926     add_link)
1927         l_FLAGS="$l_FLAGS -l\"${VAL}\""
1928         ;;
1929     add_fpath)
1930         if [ "$BUILD_ON_MAC" = "yes" ]; then
1931             L_FLAGS="$L_FLAGS -F\"${VAL}\""
1932             I_FLAGS="$I_FLAGS -F\"${VAL}\""
1933         else
1934             UNKNOWN_OPT=yes
1935         fi
1936         ;;
1937     add_framework)
1938         if [ "$BUILD_ON_MAC" = "yes" ]; then
1939             l_FLAGS="$l_FLAGS -framework \"${VAL}\""
1940         else
1941             UNKNOWN_OPT=yes
1942         fi
1943         ;;
1944     add_warn)
1945         W_FLAGS="$W_FLAGS \"${VAL}\""
1946         ;;
1947     silent)
1948         CFG_SILENT="$VAL"
1949         ;;
1950     phonon-backend)
1951         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1952             CFG_PHONON_BACKEND="$VAL"
1953         else
1954             UNKNOWN_OPT=yes
1955         fi
1956         ;;
1957     dont-process)
1958         CFG_NOPROCESS=yes
1959         ;;
1960     process)
1961         CFG_NOPROCESS=no
1962         ;;
1963     audio-backend)
1964         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1965             CFG_AUDIO_BACKEND="$VAL"
1966         else
1967             UNKNOWN_OPT=yes
1968         fi
1969         ;;
1970     icu)
1971         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1972             CFG_ICU="$VAL"
1973         else
1974             UNKNOWN_OPT=yes
1975         fi
1976         ;;
1977     force-asserts)
1978         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1979             CFG_FORCE_ASSERTS="$VAL"
1980         else
1981             UNKNOWN_OPT=yes
1982         fi
1983         ;;
1984     pcre)
1985         if [ "$VAL" = "qt" ] || [ "$VAL" = "system" ]; then
1986             CFG_PCRE="$VAL"
1987         else
1988             UNKNOWN_OPT=yes
1989         fi
1990         ;;
1991     c++11)
1992         if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
1993             CFG_CXX11="$VAL"
1994         else
1995             UNKNOWN_OPT=yes
1996         fi
1997         ;;
1998     *)
1999         UNKNOWN_OPT=yes
2000         ;;
2001     esac
2002     if [ "$UNKNOWN_OPT" = "yes" ]; then
2003         echo "${CURRENT_OPT}: invalid command-line switch"
2004         OPT_HELP=yes
2005         ERROR=yes
2006     fi
2007 done
2008
2009 # update QT_CONFIG to show our current predefined configuration
2010 case "$CFG_QCONFIG" in
2011 minimal|small|medium|large|full)
2012     # these are a sequence of increasing functionality
2013     for c in minimal small medium large full; do
2014         QT_CONFIG="$QT_CONFIG $c-config"
2015         [ "$CFG_QCONFIG" = $c ] && break
2016     done
2017     ;;
2018 *)
2019     # not known to be sufficient for anything
2020     if [ '!' -f "$relpath/src/corelib/global/qconfig-${CFG_QCONFIG}.h" ] && [ '!' -f `"$relpath/config.tests/unix/makeabs" "${CFG_QCONFIG}"` ]; then
2021         echo >&2 "Error: configuration file not found:"
2022         echo >&2 "  $relpath/src/corelib/global/qconfig-${CFG_QCONFIG}.h"
2023         echo >&2 "  or"
2024         echo >&2 "  `"$relpath/config.tests/unix/makeabs" "${CFG_QCONFIG}"`"
2025         OPT_HELP=yes
2026     fi
2027 esac
2028
2029 #-------------------------------------------------------------------------------
2030 # build tree initialization
2031 #-------------------------------------------------------------------------------
2032
2033 # where to find which..
2034 unixtests="$relpath/config.tests/unix"
2035 mactests="$relpath/config.tests/mac"
2036 WHICH="$unixtests/which.test"
2037
2038 PERL=`$WHICH perl 2>/dev/null`
2039
2040 # find out which awk we want to use, prefer gawk, then nawk, then regular awk
2041 AWK=
2042 for e in gawk nawk awk; do
2043     if "$WHICH" $e >/dev/null 2>&1 && ( $e -f /dev/null /dev/null ) >/dev/null 2>&1; then
2044         AWK=$e
2045         break
2046     fi
2047 done
2048
2049 # find perl
2050 PERL="/usr/bin/perl"
2051 if "$WHICH" perl >/dev/null 2>&1 && ( perl /dev/null ) >/dev/null 2>&1; then
2052     PERL=`$WHICH perl`
2053 fi
2054
2055 ### skip this if the user just needs help...
2056 if [ "$OPT_HELP" != "yes" ]; then
2057
2058 # is this a shadow build?
2059 if [ "$OPT_SHADOW" = "maybe" ]; then
2060     OPT_SHADOW=no
2061     if [ "$relpath" != "$outpath" ] && [ '!' -f "$outpath/configure" ]; then
2062         if [ -h "$outpath" ]; then
2063             [ "$relpath" -ef "$outpath" ] || OPT_SHADOW=yes
2064         else
2065             OPT_SHADOW=yes
2066         fi
2067     fi
2068 fi
2069 if [ "$OPT_SHADOW" = "yes" ]; then
2070     if [ -f "$relpath/.qmake.cache" -o -f "$relpath/src/corelib/global/qconfig.h" -o -f "$relpath/src/corelib/global/qconfig.cpp" ]; then
2071         echo >&2 "You cannot make a shadow build from a source tree containing a previous build."
2072         echo >&2 "Cannot proceed."
2073         exit 1
2074     fi
2075     [ "$OPT_VERBOSE" = "yes" ] && echo "Performing shadow build..."
2076 fi
2077
2078 if [ "$PLATFORM_MAC" = "no" -a "$CFG_DEBUG_RELEASE" = "yes" ]; then
2079     echo
2080     echo "WARNING: -debug-and-release is not supported outside of Mac OS X."
2081     echo "Qt can be built in release mode with separate debug information, so"
2082     echo "-debug-and-release is not necessary anymore"
2083     echo
2084 fi
2085
2086 if [ "$CFG_SILENT" = "yes" ]; then
2087     QMAKE_CONFIG="$QMAKE_CONFIG silent"
2088 fi
2089
2090 # if the source tree is different from the build tree,
2091 # symlink or copy part of the sources
2092 if [ "$OPT_SHADOW" = "yes" ]; then
2093     echo "Preparing build tree..."
2094
2095     if [ -z "$PERL" ]; then
2096         echo
2097         echo "You need perl in your PATH to make a shadow build."
2098         echo "Cannot proceed."
2099         exit 1
2100     fi
2101
2102     [ -d "$outpath/bin" ] || mkdir -p "$outpath/bin"
2103
2104     # make a syncqt script that can be used in the shadow
2105     rm -f "$outpath/bin/syncqt"
2106     if [ -x "$relpath/bin/syncqt" ]; then
2107         mkdir -p "$outpath/bin"
2108         echo "#!/bin/sh" >"$outpath/bin/syncqt"
2109         echo "perl \"$relpath/bin/syncqt\" -qtdir \"$outpath\" \"\$@\"" >>"$outpath/bin/syncqt"
2110         chmod 755 "$outpath/bin/syncqt"
2111     fi
2112
2113     for i in elf2e32_qtwrapper createpackage patch_capabilities qtmodule-configtests; do
2114         rm -f "$outpath/bin/$i"
2115         if [ -x "$relpath/bin/$i" ]; then
2116             mkdir -p "$outpath/bin"
2117             echo "#!/bin/sh" >"$outpath/bin/$i"
2118             echo "QTDIR=\"$relpath\"; export QTDIR" >>"$outpath/bin/$i"
2119             echo "\"$relpath/bin/$i\" \"\$@\"" >>"$outpath/bin/$i"
2120             chmod 755 "$outpath/bin/$i"
2121         fi
2122     done
2123
2124     # save a pre-existing mkspecs/modules dir
2125     test -d "$outpath/mkspecs/modules" && \
2126         mv "$outpath/mkspecs/modules" "$outpath/mkspecs-modules"
2127
2128     # symlink the mkspecs directory
2129     mkdir -p "$outpath/mkspecs"
2130     rm -rf "$outpath"/mkspecs/*
2131     ln -s "$relpath"/mkspecs/* "$outpath/mkspecs"
2132     rm -f "$outpath/mkspecs/default"
2133
2134     ShadowMkspecs()
2135     {
2136         rm -rf "$outpath/mkspecs/$1"
2137         find "$relpath/mkspecs/$1" -type d | sed "s,^$relpath,$outpath," | xargs mkdir -p
2138         find "$relpath/mkspecs/$1" -type f | sed "s,^$relpath/,," | while read f; do ln -s "$relpath/$f" "$outpath/$f"; done
2139     }
2140
2141     # Special case for mkspecs/features directory.
2142     # To be able to place .prf files into a shadow build directory,
2143     # we're creating links for files only. The directory structure is reproduced.
2144     ShadowMkspecs features
2145
2146     # The modules dir is special, too.
2147     if test -d "$outpath/mkspecs-modules"; then
2148         rm -rf "$outpath/mkspecs/modules"
2149         mv "$outpath/mkspecs-modules" "$outpath/mkspecs/modules"
2150     else
2151         ShadowMkspecs modules
2152     fi
2153
2154     # symlink the doc directory
2155     rm -rf "$outpath/doc"
2156     ln -s "$relpath/doc" "$outpath/doc"
2157 fi
2158
2159 # symlink fonts to be able to run application from build directory
2160 if [ ! -d "${outpath}/lib/fonts" ]; then
2161     if [ "$PLATFORM" = "$XPLATFORM" ]; then
2162         mkdir -p "${outpath}/lib"
2163         ln -s "${relpath}/lib/fonts" "${outpath}/lib/fonts"
2164     fi
2165 fi
2166
2167 if [ "$OPT_FAST" = "auto" ]; then
2168    if [ '!' -z "$AWK" ] && [ "$CFG_DEV" = "yes" ]; then
2169        OPT_FAST=yes
2170    else
2171        OPT_FAST=no
2172    fi
2173 fi
2174
2175 # find a make command
2176 if [ -z "$MAKE" ]; then
2177     MAKE=
2178     for mk in gmake make; do
2179         if "$WHICH" $mk >/dev/null 2>&1; then
2180             MAKE=`"$WHICH" $mk`
2181             break
2182         fi
2183     done
2184     if [ -z "$MAKE" ]; then
2185         echo >&2 "You don't seem to have 'make' or 'gmake' in your PATH."
2186         echo >&2 "Cannot proceed."
2187         exit 1
2188     fi
2189     # export MAKE, we need it later in the config.tests
2190     export MAKE
2191 fi
2192
2193 fi ### help
2194
2195 #-------------------------------------------------------------------------------
2196 # auto-detect all that hasn't been specified in the arguments
2197 #-------------------------------------------------------------------------------
2198
2199 if [ -z "$PLATFORM" ]; then
2200     PLATFORM_NOTES=
2201     case "$UNAME_SYSTEM:$UNAME_RELEASE" in
2202      Darwin:*)
2203          OSX_VERSION=`uname -r | cut -d. -f1`
2204          # Select compiler. Use g++ unless we find a usable Clang version
2205          PLATFORM=macx-g++
2206          if [ "$OSX_VERSION" -ge 12 ]; then
2207             # We're on Mountain Lion or above. Use Clang. Don't advertise gcc.
2208             PLATFORM=macx-clang
2209          elif [ "$OSX_VERSION" -eq 11 ]; then
2210              # We're on Lion. Check if we have a supported Clang version
2211              case "$(clang -v 2>&1 | grep -Po '(?<=version )\d[\d.]+')" in
2212                  3.*)
2213                      PLATFORM=macx-clang
2214                      PLATFORM_NOTES="\n    - Also available for Mac OS X: macx-g++\n"
2215                      ;;
2216              esac
2217          fi
2218          ;;
2219      AIX:*)
2220         #PLATFORM=aix-g++
2221         #PLATFORM=aix-g++-64
2222         PLATFORM=aix-xlc
2223         #PLATFORM=aix-xlc-64
2224         PLATFORM_NOTES="
2225             - Also available for AIX: aix-g++ aix-g++-64 aix-xlc-64
2226         "
2227         ;;
2228      GNU:*)
2229         PLATFORM=hurd-g++
2230         ;;
2231      dgux:*)
2232         PLATFORM=dgux-g++
2233         ;;
2234 #     DYNIX/ptx:4*)
2235 #       PLATFORM=dynix-g++
2236 #       ;;
2237      ULTRIX:*)
2238         PLATFORM=ultrix-g++
2239         ;;
2240      FreeBSD:*)
2241         PLATFORM=freebsd-g++
2242         PLATFORM_NOTES="
2243             - Also available for FreeBSD: freebsd-icc
2244         "
2245         ;;
2246      OpenBSD:*)
2247         PLATFORM=openbsd-g++
2248         ;;
2249      NetBSD:*)
2250         PLATFORM=netbsd-g++
2251         ;;
2252      BSD/OS:*|BSD/386:*)
2253         PLATFORM=bsdi-g++
2254         ;;
2255      IRIX*:*)
2256         #PLATFORM=irix-g++
2257         PLATFORM=irix-cc
2258         #PLATFORM=irix-cc-64
2259         PLATFORM_NOTES="
2260             - Also available for IRIX: irix-g++ irix-cc-64
2261         "
2262         ;;
2263      HP-UX:*)
2264         case "$UNAME_MACHINE" in
2265             ia64)
2266                 #PLATFORM=hpuxi-acc-32
2267                 PLATFORM=hpuxi-acc-64
2268                 PLATFORM_NOTES="
2269                     - Also available for HP-UXi: hpuxi-acc-32
2270                 "
2271             ;;
2272             *)
2273                 #PLATFORM=hpux-g++
2274                 PLATFORM=hpux-acc
2275                 #PLATFORM=hpux-acc-64
2276                 #PLATFORM=hpux-cc
2277                 #PLATFORM=hpux-acc-o64
2278                 PLATFORM_NOTES="
2279                     - Also available for HP-UX: hpux-g++ hpux-acc-64 hpux-acc-o64
2280                 "
2281             ;;
2282         esac
2283         ;;
2284      OSF1:*)
2285         #PLATFORM=tru64-g++
2286         PLATFORM=tru64-cxx
2287         PLATFORM_NOTES="
2288             - Also available for Tru64: tru64-g++
2289         "
2290         ;;
2291      Linux:*)
2292         case "$UNAME_MACHINE" in
2293             x86_64|s390x|ppc64)
2294                 PLATFORM=linux-g++-64
2295                 ;;
2296             *)
2297                 PLATFORM=linux-g++
2298                 ;;
2299         esac
2300         PLATFORM_NOTES="
2301             - Also available for Linux: linux-kcc linux-icc linux-cxx
2302         "
2303         ;;
2304      SunOS:5*)
2305         if [ "$XPLATFORM_MINGW" = "yes" ]; then
2306             PLATFORM="solaris-g++"
2307         else
2308             #PLATFORM=solaris-g++
2309             PLATFORM=solaris-cc
2310             #PLATFORM=solaris-cc64
2311         fi
2312         PLATFORM_NOTES="
2313             - Also available for Solaris: solaris-g++ solaris-cc-64
2314         "
2315         ;;
2316      ReliantUNIX-*:*|SINIX-*:*)
2317         PLATFORM=reliant-cds
2318         #PLATFORM=reliant-cds-64
2319         PLATFORM_NOTES="
2320             - Also available for Reliant UNIX: reliant-cds-64
2321         "
2322         ;;
2323      CYGWIN*:*)
2324         PLATFORM=cygwin-g++
2325         ;;
2326      LynxOS*:*)
2327         PLATFORM=lynxos-g++
2328         ;;
2329      OpenUNIX:*)
2330         #PLATFORM=unixware-g++
2331         PLATFORM=unixware-cc
2332         PLATFORM_NOTES="
2333             - Also available for OpenUNIX: unixware-g++
2334         "
2335         ;;
2336      UnixWare:*)
2337         #PLATFORM=unixware-g++
2338         PLATFORM=unixware-cc
2339         PLATFORM_NOTES="
2340             - Also available for UnixWare: unixware-g++
2341         "
2342         ;;
2343      SCO_SV:*)
2344         #PLATFORM=sco-g++
2345         PLATFORM=sco-cc
2346         PLATFORM_NOTES="
2347             - Also available for SCO OpenServer: sco-g++
2348         "
2349         ;;
2350      UNIX_SV:*)
2351         PLATFORM=unixware-g++
2352         ;;
2353      QNX:*)
2354         PLATFORM=unsupported/qnx-g++
2355         ;;
2356      *)
2357         if [ "$OPT_HELP" != "yes" ]; then
2358             echo >&2
2359             echo "   The build script does not currently recognize all" >&2
2360             echo "   platforms supported by Qt." >&2
2361             echo "   Rerun this script with a -platform option listed to" >&2
2362             echo "   set the system/compiler combination you use." >&2
2363             echo >&2
2364             exit 2
2365         fi
2366     esac
2367 fi
2368
2369 [ -z "$XPLATFORM" ] && XPLATFORM="$PLATFORM"
2370
2371 case `basename "$XPLATFORM"` in win32-g++*) XPLATFORM_MINGW=yes;; esac
2372 case "$XPLATFORM" in linux-g++-maemo) XPLATFORM_MAEMO=yes;; esac
2373 case "$XPLATFORM" in *qnx-*|*blackberry-*) XPLATFORM_QNX=yes;; esac
2374
2375 if [ -d "$PLATFORM" ]; then
2376   QMAKESPEC="$PLATFORM"
2377 else
2378   QMAKESPEC="$relpath/mkspecs/${PLATFORM}"
2379 fi
2380 if [ -d "$XPLATFORM" ]; then
2381   XQMAKESPEC="$XPLATFORM"
2382 else
2383   XQMAKESPEC="$relpath/mkspecs/${XPLATFORM}"
2384 fi
2385 if [ "$PLATFORM" != "$XPLATFORM" ]; then
2386     QT_CROSS_COMPILE=yes
2387     QMAKE_CONFIG="$QMAKE_CONFIG cross_compile"
2388     QTCONFIG_CONFIG="$QTCONFIG_CONFIG cross_compile"
2389 fi
2390
2391 if [ "$BUILD_ON_MAC" = "yes" ]; then
2392    if [ `basename $QMAKESPEC` = "macx-xcode" ] || [ `basename $XQMAKESPEC` = "macx-xcode" ]; then
2393       echo >&2
2394       echo "   Platform 'macx-xcode' should not be used when building Qt/Mac." >&2
2395       echo "   Please build Qt/Mac with 'macx-g++', then if you would like to" >&2
2396       echo "   use mac-xcode on your application code it can link to a Qt/Mac" >&2
2397       echo "   built with 'macx-g++'" >&2
2398       echo >&2
2399       exit 2
2400     fi
2401 fi
2402
2403 # check specified platforms are supported
2404 if [ '!' -d "$QMAKESPEC" ]; then
2405     echo
2406     echo "   The specified system/compiler is not supported:"
2407     echo
2408     echo "      $QMAKESPEC"
2409     echo
2410     echo "   Please see the README file for a complete list."
2411     echo
2412     exit 2
2413 fi
2414 if [ '!' -d "$XQMAKESPEC" ]; then
2415     echo
2416     echo "   The specified system/compiler is not supported:"
2417     echo
2418     echo "      $XQMAKESPEC"
2419     echo
2420     echo "   Please see the README file for a complete list."
2421     echo
2422     exit 2
2423 fi
2424 if [ '!' -f "${XQMAKESPEC}/qplatformdefs.h" ]; then
2425     echo
2426     echo "   The specified system/compiler port is not complete:"
2427     echo
2428     echo "      $XQMAKESPEC/qplatformdefs.h"
2429     echo
2430     echo "   Please contact qt-info@nokia.com."
2431     echo
2432     exit 2
2433 fi
2434
2435 if [ "$UNAME_SYSTEM" = "SunOS" ]; then
2436     # Solaris 2.5 and 2.6 have libposix4, which was renamed to librt for Solaris 7 and up
2437     if echo $UNAME_RELEASE | grep "^5\.[5|6]" >/dev/null 2>&1; then
2438         sed -e "s,-lrt,-lposix4," "$XQMAKESPEC/qmake.conf" > "$XQMAKESPEC/qmake.conf.new"
2439         mv "$XQMAKESPEC/qmake.conf.new" "$XQMAKESPEC/qmake.conf"
2440     fi
2441 fi
2442
2443 if [ "$CFG_RTOS_ENABLED" = "no" ]; then
2444     case `basename "$XPLATFORM"` in
2445         qnx-* | vxworks-*)
2446             echo ""
2447             echo "You are not licensed for Qt for `basename $XPLATFORM`."
2448             echo ""
2449             echo "Please contact qt-info@nokia.com to upgrade your license to"
2450             echo "include this platform, or install the Qt Open Source Edition"
2451             echo "if you intend to develop free software."
2452             exit 1
2453             ;;
2454     esac
2455 fi
2456
2457 #-------------------------------------------------------------------------------
2458 # tests that don't need qmake (must be run before displaying help)
2459 #-------------------------------------------------------------------------------
2460
2461 # detect build style
2462 if [ "$CFG_DEBUG" = "auto" ]; then
2463     if [ "$PLATFORM_MAC" = "yes" -o "$XPLATFORM_MINGW" = "yes" ]; then
2464         CFG_DEBUG_RELEASE=yes
2465         CFG_DEBUG=yes
2466     elif [ "$CFG_DEV" = "yes" ]; then
2467         CFG_DEBUG_RELEASE=no
2468         CFG_DEBUG=yes
2469     else
2470         CFG_DEBUG_RELEASE=no
2471         CFG_DEBUG=no
2472     fi
2473 fi
2474 if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then
2475     QT_CONFIG="$QT_CONFIG build_all"
2476 fi
2477
2478 # pass on $CFG_SDK to the configure tests.
2479 if [ '!' -z "$CFG_SDK" ]; then
2480     MAC_CONFIG_TEST_COMMANDLINE="$MAC_CONFIG_TEST_COMMANDLINE -sdk $CFG_SDK"
2481 fi
2482
2483 # find the default framework value
2484 if [ "$BUILD_ON_MAC" = "yes" ]; then
2485     if [ "$CFG_FRAMEWORK" = "auto" ]; then
2486         CFG_FRAMEWORK="$CFG_SHARED"
2487     elif [ "$CFG_FRAMEWORK" = "yes" ] && [ "$CFG_SHARED" = "no" ]; then
2488         echo
2489         echo "WARNING: Using static linking will disable the use of Mac frameworks."
2490         echo
2491         CFG_FRAMEWORK="no"
2492     fi
2493 else
2494     CFG_FRAMEWORK=no
2495 fi
2496
2497 QMAKE_CONF_COMPILER=`getXQMakeConf QMAKE_CXX`
2498
2499 TEST_COMPILER=$QMAKE_CONF_COMPILER
2500 if [ "$XPLATFORM_SYMBIAN_SBSV2" = "no" ]; then
2501     if [ -z "$TEST_COMPILER" ]; then
2502         echo "ERROR: Cannot set the compiler for the configuration tests"
2503         exit 1
2504     fi
2505 fi
2506
2507 GCC_MACHINE_DUMP=
2508 case "$TEST_COMPILER" in *g++) GCC_MACHINE_DUMP=$($TEST_COMPILER -dumpmachine);; esac
2509 if [ -n "$GCC_MACHINE_DUMP" ]; then
2510     DeviceVar set GCC_MACHINE_DUMP $($TEST_COMPILER -dumpmachine)
2511 fi
2512
2513 if [ -n "$CFG_SYSROOT" ]; then
2514     SYSROOT_FLAG="--sysroot=$CFG_SYSROOT"
2515 else
2516     SYSROOT_FLAG=
2517 fi
2518 export SYSROOT_FLAG    # used by config.tests/unix/compile.test
2519
2520 # auto-detect precompiled header support
2521 if [ "$CFG_PRECOMPILE" = "auto" ]; then
2522     if "$unixtests/precomp.test" "$TEST_COMPILER" "$OPT_VERBOSE"; then
2523        CFG_PRECOMPILE=no
2524     else
2525        CFG_PRECOMPILE=yes
2526     fi
2527 fi
2528
2529 # auto-detect support for separate debug info in objcopy
2530 if [ "$CFG_SEPARATE_DEBUG_INFO" != "no" ] && [ "$CFG_SHARED" = "yes" ]; then
2531     TEST_COMPILER_CFLAGS=`getXQMakeConf QMAKE_CFLAGS`
2532     TEST_COMPILER_CXXFLAGS=`getXQMakeConf QMAKE_CXXFLAGS`
2533     TEST_OBJCOPY=`getXQMakeConf QMAKE_OBJCOPY`
2534     COMPILER_WITH_FLAGS="$TEST_COMPILER $TEST_COMPILER_CXXFLAGS"
2535     COMPILER_WITH_FLAGS=`echo "$COMPILER_WITH_FLAGS" | sed -e "s%\\$\\$QMAKE_CFLAGS%$TEST_COMPILER_CFLAGS%g"`
2536     if "$unixtests/objcopy.test" "$COMPILER_WITH_FLAGS" "$TEST_OBJCOPY" "$OPT_VERBOSE"; then
2537        CFG_SEPARATE_DEBUG_INFO=no
2538     else
2539        case "$PLATFORM" in
2540        hpux-*)
2541            # binutils on HP-UX is buggy; default to no.
2542            CFG_SEPARATE_DEBUG_INFO=no
2543            ;;
2544        *)
2545            CFG_SEPARATE_DEBUG_INFO=yes
2546            ;;
2547        esac
2548     fi
2549 fi
2550
2551 # auto-detect -fvisibility support
2552 if [ "$CFG_REDUCE_EXPORTS" != "no" ]; then
2553     if "$unixtests/fvisibility.test" "$TEST_COMPILER" "$OPT_VERBOSE"; then
2554        if [ "$CFG_REDUCE_EXPORTS" = "yes" ]; then
2555            echo "-reduce-exports was requested but this compiler does not support it"
2556            echo "Re-run configure with -v for more information"
2557            exit 1
2558        fi
2559        CFG_REDUCE_EXPORTS=no
2560     else
2561        CFG_REDUCE_EXPORTS=yes
2562     fi
2563 fi
2564
2565 # detect the availability of the -Bsymbolic-functions linker optimization
2566 if [ "$CFG_REDUCE_RELOCATIONS" != "no" ]; then
2567     if "$unixtests/bsymbolic_functions.test" "$TEST_COMPILER" "$OPT_VERBOSE"; then
2568        if [ "$CFG_REDUCE_RELOCATIONS" = "yes" ]; then
2569            echo "-reduce-relocations was requested but this compiler does not support it"
2570            echo "Re-run configure with -v for more information"
2571            exit 1
2572        fi
2573         CFG_REDUCE_RELOCATIONS=no
2574     else
2575         CFG_REDUCE_RELOCATIONS=yes
2576     fi
2577 fi
2578
2579 # auto-detect GNU make support
2580 if [ "$CFG_USE_GNUMAKE" = "auto" ] && "$MAKE" -v | grep "GNU Make" >/dev/null 2>&1; then
2581    CFG_USE_GNUMAKE=yes
2582 fi
2583
2584 # find the default framework value
2585 if [ "$BUILD_ON_MAC" = "yes" ]; then
2586     if [ "$CFG_FRAMEWORK" = "auto" ]; then
2587         CFG_FRAMEWORK="$CFG_SHARED"
2588     elif [ "$CFG_FRAMEWORK" = "yes" ] && [ "$CFG_SHARED" = "no" ]; then
2589         echo
2590         echo "WARNING: Using static linking will disable the use of Mac frameworks."
2591         echo
2592         CFG_FRAMEWORK="no"
2593     fi
2594 else
2595     CFG_FRAMEWORK=no
2596 fi
2597
2598 #setup the build parts
2599 if [ -z "$CFG_BUILD_PARTS" ]; then
2600     CFG_BUILD_PARTS="$QT_DEFAULT_BUILD_PARTS"
2601
2602     # build tests by default, if a developer build
2603     if [ "$CFG_DEV" = "yes" ]; then
2604         CFG_BUILD_PARTS="$CFG_BUILD_PARTS tests"
2605     fi
2606
2607     # don't build tools by default when cross-compiling
2608     if [ "$PLATFORM" != "$XPLATFORM" ]; then
2609         CFG_BUILD_PARTS=`echo "$CFG_BUILD_PARTS" | sed "s, tools,,g"`
2610     fi
2611 fi
2612 for nobuild in $CFG_NOBUILD_PARTS; do
2613     CFG_BUILD_PARTS=`echo "$CFG_BUILD_PARTS" | sed "s, $nobuild,,g"`
2614 done
2615 if echo $CFG_BUILD_PARTS | grep -v libs >/dev/null 2>&1; then
2616 #    echo
2617 #    echo "WARNING: libs is a required part of the build."
2618 #    echo
2619     CFG_BUILD_PARTS="$CFG_BUILD_PARTS libs"
2620 fi
2621
2622 #-------------------------------------------------------------------------------
2623 # post process QT_INSTALL_* variables
2624 #-------------------------------------------------------------------------------
2625
2626 if [ -z "$QT_INSTALL_PREFIX" ]; then
2627     if [ "$CFG_DEV" = "yes" ]; then
2628         QT_INSTALL_PREFIX="$outpath" # In Development, we use sandboxed builds by default
2629     else
2630         QT_INSTALL_PREFIX="/usr/local/Qt-${QT_VERSION}" # the default install prefix is /usr/local/Qt-$QT_VERSION
2631     fi
2632 fi
2633 QT_INSTALL_PREFIX=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_PREFIX"`
2634
2635 if [ -z "$QT_INSTALL_DOCS" ]; then #default
2636     if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2637         if [ "$BUILD_ON_MAC" = "yes" ]; then
2638             QT_INSTALL_DOCS="/Developer/Documentation/Qt"
2639         fi
2640     fi
2641     [ -z "$QT_INSTALL_DOCS" ] && QT_INSTALL_DOCS="$QT_INSTALL_PREFIX/doc" #fallback
2642
2643 fi
2644 QT_INSTALL_DOCS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_DOCS"`
2645
2646 if [ -z "$QT_INSTALL_HEADERS" ]; then #default
2647     if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2648         if [ "$BUILD_ON_MAC" = "yes" ]; then
2649             if [ "$CFG_FRAMEWORK" = "yes" ]; then
2650                 QT_INSTALL_HEADERS=
2651             fi
2652         fi
2653     fi
2654     [ -z "$QT_INSTALL_HEADERS" ] && QT_INSTALL_HEADERS="$QT_INSTALL_PREFIX/include"
2655
2656 fi
2657 QT_INSTALL_HEADERS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_HEADERS"`
2658
2659 if [ -z "$QT_INSTALL_LIBS" ]; then #default
2660     if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2661         if [ "$BUILD_ON_MAC" = "yes" ]; then
2662             if [ "$CFG_FRAMEWORK" = "yes" ]; then
2663                 QT_INSTALL_LIBS="/Libraries/Frameworks"
2664             fi
2665         fi
2666     fi
2667     [ -z "$QT_INSTALL_LIBS" ] && QT_INSTALL_LIBS="$QT_INSTALL_PREFIX/lib" #fallback
2668 fi
2669 QT_INSTALL_LIBS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_LIBS"`
2670
2671 if [ -z "$QT_INSTALL_BINS" ]; then #default
2672     if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2673         if [ "$BUILD_ON_MAC" = "yes" ]; then
2674             QT_INSTALL_BINS="/Developer/Applications/Qt"
2675         fi
2676     fi
2677     [ -z "$QT_INSTALL_BINS" ] && QT_INSTALL_BINS="$QT_INSTALL_PREFIX/bin" #fallback
2678 fi
2679 QT_INSTALL_BINS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_BINS"`
2680
2681 if [ -z "$QT_INSTALL_PLUGINS" ]; then #default
2682     if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2683         if [ "$BUILD_ON_MAC" = "yes" ]; then
2684             QT_INSTALL_PLUGINS="/Developer/Applications/Qt/plugins"
2685         fi
2686     fi
2687     [ -z "$QT_INSTALL_PLUGINS" ] && QT_INSTALL_PLUGINS="$QT_INSTALL_PREFIX/plugins" #fallback
2688 fi
2689 QT_INSTALL_PLUGINS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_PLUGINS"`
2690
2691 if [ -z "$QT_INSTALL_IMPORTS" ]; then #default
2692     if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2693         if [ "$BUILD_ON_MAC" = "yes" ]; then
2694             QT_INSTALL_IMPORTS="/Developer/Applications/Qt/imports"
2695         fi
2696     fi
2697     [ -z "$QT_INSTALL_IMPORTS" ] && QT_INSTALL_IMPORTS="$QT_INSTALL_PREFIX/imports" #fallback
2698 fi
2699 QT_INSTALL_IMPORTS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_IMPORTS"`
2700
2701 if [ -z "$QT_INSTALL_DATA" ]; then #default
2702     QT_INSTALL_DATA="$QT_INSTALL_PREFIX"
2703 fi
2704 QT_INSTALL_DATA=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_DATA"`
2705
2706 if [ -z "$QT_INSTALL_TRANSLATIONS" ]; then #default
2707     QT_INSTALL_TRANSLATIONS="$QT_INSTALL_PREFIX/translations"
2708 fi
2709 QT_INSTALL_TRANSLATIONS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_TRANSLATIONS"`
2710
2711 if [ -z "$QT_INSTALL_SETTINGS" ]; then #default
2712     if [ "$BUILD_ON_MAC" = "yes" ]; then
2713         QT_INSTALL_SETTINGS=/Library/Preferences/Qt
2714     else
2715         QT_INSTALL_SETTINGS=/etc/xdg
2716     fi
2717 fi
2718 QT_INSTALL_SETTINGS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_SETTINGS"`
2719
2720 if [ -z "$QT_INSTALL_EXAMPLES" ]; then #default
2721     if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2722         if [ "$BUILD_ON_MAC" = "yes" ]; then
2723             QT_INSTALL_EXAMPLES="/Developer/Examples/Qt"
2724         fi
2725     fi
2726     [ -z "$QT_INSTALL_EXAMPLES" ] && QT_INSTALL_EXAMPLES="$QT_INSTALL_PREFIX/examples" #fallback
2727 fi
2728 QT_INSTALL_EXAMPLES=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_EXAMPLES"`
2729
2730 #tests
2731 if [ -z "$QT_INSTALL_TESTS" ]; then #default
2732     if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2733         if [ "$BUILD_ON_MAC" = "yes" ]; then
2734             QT_INSTALL_TESTS="/Developer/Tests/Qt"
2735         fi
2736     fi
2737     [ -z "$QT_INSTALL_TESTS" ] && QT_INSTALL_TESTS="$QT_INSTALL_PREFIX/tests" #fallback
2738 fi
2739 QT_INSTALL_TESTS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_TESTS"`
2740
2741 #------- host paths --------
2742
2743 if [ -z "$QT_HOST_PREFIX" ]; then
2744     QT_HOST_PREFIX=$QT_INSTALL_PREFIX
2745     haveHpx=false
2746 else
2747     QT_HOST_PREFIX=`"$relpath/config.tests/unix/makeabs" "$QT_HOST_PREFIX"`
2748     haveHpx=true
2749 fi
2750
2751 if [ -z "$QT_HOST_BINS" ]; then #default
2752     if $haveHpx; then
2753         if [ "$CFG_PREFIX_INSTALL" = "no" ]; then
2754             if [ "$BUILD_ON_MAC" = "yes" ]; then
2755                 QT_HOST_BINS="/Developer/Applications/Qt"
2756             fi
2757         fi
2758         [ -z "$QT_HOST_BINS" ] && QT_HOST_BINS="$QT_HOST_PREFIX/bin" #fallback
2759     else
2760         QT_HOST_BINS="$QT_INSTALL_BINS"
2761     fi
2762 fi
2763 QT_HOST_BINS=`"$relpath/config.tests/unix/makeabs" "$QT_HOST_BINS"`
2764
2765 if [ -z "$QT_HOST_DATA" ]; then #default
2766     if $haveHpx; then
2767         QT_HOST_DATA="$QT_HOST_PREFIX"
2768     else
2769         QT_HOST_DATA="$QT_INSTALL_DATA"
2770     fi
2771 else
2772     QT_HOST_DATA=`"$relpath/config.tests/unix/makeabs" "$QT_HOST_DATA"`
2773 fi
2774
2775 #-------------------------------------------------------------------------------
2776 # help - interactive parts of the script _after_ this section please
2777 #-------------------------------------------------------------------------------
2778
2779 # next, emit a usage message if something failed.
2780 if [ "$OPT_HELP" = "yes" ]; then
2781     [ "x$ERROR" = "xyes" ] && echo
2782     if [ "$CFG_NIS" = "no" ]; then
2783         NSY=" "
2784         NSN="*"
2785     else
2786         NSY="*"
2787         NSN=" "
2788     fi
2789     if [ "$CFG_CUPS" = "no" ]; then
2790         CUY=" "
2791         CUN="*"
2792     else
2793         CUY="*"
2794         CUN=" "
2795     fi
2796     if [ "$CFG_ICONV" = "no" ]; then
2797         CIY=" "
2798         CIN="*"
2799     else
2800         CIY="*"
2801         CIN=" "
2802     fi
2803     if [ "$CFG_LARGEFILE" = "no" ]; then
2804         LFSY=" "
2805         LFSN="*"
2806     else
2807         LFSY="*"
2808         LFSN=" "
2809     fi
2810     if [ "$CFG_PRECOMPILE" = "auto" ] || [ "$CFG_PRECOMPILE" = "no" ]; then
2811         PHY=" "
2812         PHN="*"
2813     else
2814         PHY="*"
2815         PHN=" "
2816     fi
2817
2818     if [ "$CFG_XCB" = "no" ]; then
2819         XCBY=" "
2820         XCBN="*"
2821     else
2822         XCBY="*"
2823         XCBN=" "
2824     fi
2825
2826     if [ "$CFG_EGLFS" = "no" ]; then
2827         EGLFSY=" "
2828         EGLFSN="*"
2829     else
2830         EGLFSY="*"
2831         EGLFSN=" "
2832     fi
2833
2834     if [ "$CFG_DIRECTFB" = "no" ]; then
2835         DFBY=" "
2836         DFBN="*"
2837     else
2838         DFBY="*"
2839         DFBN=" "
2840     fi
2841     if [ "$CFG_XINPUT2" = "no" ]; then
2842         X2Y=" "
2843         X2N="*"
2844     else
2845         X2Y="*"
2846         X2N=" "
2847     fi
2848
2849     if [ "$CFG_DBUS" = "no" ]; then
2850         DBY=" "
2851         DBN="+"
2852     else
2853         DBY="+"
2854         DBN=" "
2855     fi
2856
2857     if [ "$CFG_SEPARATE_DEBUG_INFO" = "no" ]; then
2858         SBY=" "
2859         SBN="*"
2860     else
2861         SBY="*"
2862         SBN=" "
2863     fi
2864
2865     if [ "$CFG_GLIB" = "no" ]; then
2866         GBY=" "
2867         GBN="+"
2868     else
2869         GBY="+"
2870         GBN=" "
2871     fi
2872
2873     cat <<EOF
2874 Usage:  $relconf [-h] [-prefix <dir>] [-prefix-install] [-bindir <dir>] [-libdir <dir>]
2875         [-docdir <dir>] [-headerdir <dir>] [-plugindir <dir> ] [-importdir <dir>] [-datadir <dir>]
2876         [-translationdir <dir>] [-sysconfdir <dir>] [-examplesdir <dir>] [-testsdir <dir>]
2877         [-release] [-debug] [-debug-and-release] [-c++11] [-no-c++11]
2878         [-developer-build] [-shared] [-static] [-no-fast] [-fast] [-no-largefile]
2879         [-largefile] [-no-accessibility] [-accessibility] [-no-sql-<driver>] [-sql-<driver>]
2880         [-plugin-sql-<driver>] [-system-sqlite]
2881         [-platform] [-D <string>] [-I <string>] [-L <string>] [-help]
2882         [-qt-zlib] [-system-zlib] [-no-gif] [-no-libpng] [-qt-libpng] [-system-libpng]
2883         [-no-libjpeg] [-qt-libjpeg] [-system-libjpeg] [-make <part>]
2884         [-nomake <part>] [-R <string>]  [-l <string>] [-no-rpath]  [-rpath] [-continue]
2885         [-verbose] [-v] [-silent] [-no-nis] [-nis] [-no-cups] [-cups] [-no-iconv]
2886         [-iconv] [-no-pch] [-pch] [-no-dbus] [-dbus] [-dbus-linked] [-no-gui]
2887         [-no-separate-debug-info] [-no-sse2]
2888         [-no-sse3] [-no-ssse3] [-no-sse4.1] [-no-sse4.2] [-no-avx] [-no-neon]
2889         [-qtnamespace <namespace>] [-qtlibinfix <infix>] [-separate-debug-info]
2890         [-no-phonon-backend] [-phonon-backend] [-no-media-backend] [-media-backend]
2891         [-no-audio-backend] [-audio-backend]
2892         [-no-javascript-jit] [-javascript-jit] [-no-qml-debug] [-qml-debug]
2893         [-no-optimized-qmake] [-optimized-qmake]
2894         [-no-openssl] [-openssl] [-openssl-linked]
2895         [-no-gtkstyle] [-gtkstyle]
2896         [-qt-pcre] [-system-pcre]
2897         [-device <name>] [-device-option <key=value>]
2898         [additional platform specific options (see below)]
2899
2900
2901 Installation options:
2902
2903  These are optional, but you may specify install directories.
2904
2905     -prefix <dir> ...... This will install everything relative to <dir>
2906                          (default $QT_INSTALL_PREFIX)
2907
2908     -hostprefix [dir] .. Tools and libraries needed when developing
2909                          applications are installed in [dir]. If [dir] is
2910                          not given, the current build directory will be used.
2911                          (default PREFIX)
2912
2913   * -prefix-install .... Force a sandboxed "local" installation of
2914                          Qt. This will install into
2915                          $QT_INSTALL_PREFIX, if this option is
2916                          disabled then some platforms will attempt a
2917                          "system" install by placing default values to
2918                          be placed in a system location other than
2919                          PREFIX.
2920
2921  You may use these to separate different parts of the install:
2922
2923     -bindir <dir> ......... Executables will be installed to <dir>
2924                             (default PREFIX/bin)
2925     -libdir <dir> ......... Libraries will be installed to <dir>
2926                             (default PREFIX/lib)
2927     -docdir <dir> ......... Documentation will be installed to <dir>
2928                             (default PREFIX/doc)
2929     -headerdir <dir> ...... Headers will be installed to <dir>
2930                             (default PREFIX/include)
2931     -plugindir <dir> ...... Plugins will be installed to <dir>
2932                             (default PREFIX/plugins)
2933     -importdir <dir> ...... Imports for QML will be installed to <dir>
2934                             (default PREFIX/imports)
2935     -datadir <dir> ........ Data used by Qt programs will be installed to <dir>
2936                             (default PREFIX)
2937     -translationdir <dir> . Translations of Qt programs will be installed to <dir>
2938                             (default PREFIX/translations)
2939     -sysconfdir <dir> ..... Settings used by Qt programs will be looked for in <dir>
2940                             (default PREFIX/etc/settings)
2941     -examplesdir <dir> .... Examples will be installed to <dir>
2942                             (default PREFIX/examples)
2943     -testsdir <dir> ....... Tests will be installed to <dir>
2944                             (default PREFIX/tests)
2945
2946     -hostbindir <dir> .. Host executables will be installed to <dir>
2947                          (default HOSTPREFIX/bin)
2948     -hostdatadir <dir> . Data used by qmake will be installed to <dir>
2949                          (default HOSTPREFIX)
2950
2951 Configure options:
2952
2953  The defaults (*) are usually acceptable. A plus (+) denotes a default value
2954  that needs to be evaluated. If the evaluation succeeds, the feature is
2955  included. Here is a short explanation of each option:
2956
2957  *  -release ........... Compile and link Qt with debugging turned off.
2958     -debug ............. Compile and link Qt with debugging turned on.
2959     -debug-and-release . Compile and link two versions of Qt, with and without
2960                          debugging turned on (Mac only).
2961
2962     -developer-build ... Compile and link Qt with Qt developer options (including auto-tests exporting)
2963
2964     -opensource ........ Compile and link the Open-Source Edition of Qt.
2965     -commercial ........ Compile and link the Commercial Edition of Qt.
2966
2967     -no-c++11 .......... Do not compile Qt with C++11 support enabled.
2968  +  -c++11 ............. Compile Qt with C++11 support enabled.
2969
2970  *  -shared ............ Create and use shared Qt libraries.
2971     -static ............ Create and use static Qt libraries.
2972
2973  *  -no-fast ........... Configure Qt normally by generating Makefiles for all
2974                          project files.
2975     -fast .............. Configure Qt quickly by generating Makefiles only for
2976                          library and subdirectory targets.  All other Makefiles
2977                          are created as wrappers, which will in turn run qmake.
2978
2979     -no-largefile ...... Disables large file support.
2980  +  -largefile ......... Enables Qt to access files larger than 4 GB.
2981
2982     -no-accessibility .. Do not compile Accessibility support.
2983  *  -accessibility ..... Compile Accessibility support.
2984
2985     -no-sql-<driver> ... Disable SQL <driver> entirely.
2986     -qt-sql-<driver> ... Enable a SQL <driver> in the QtSql library, by default
2987                          none are turned on.
2988     -plugin-sql-<driver> Enable SQL <driver> as a plugin to be linked to
2989                          at run time.
2990
2991                          Possible values for <driver>:
2992                          [ $CFG_SQL_AVAILABLE ]
2993
2994     -system-sqlite ..... Use sqlite from the operating system.
2995
2996     -no-phonon-backend.. Do not build the platform phonon plugin.
2997  +  -phonon-backend..... Build the platform phonon plugin.
2998
2999     -no-javascript-jit . Do not build the JavaScriptCore JIT compiler.
3000  +  -javascript-jit .... Build the JavaScriptCore JIT compiler.
3001
3002     -no-qml-debug ...... Do not build the in-process QML debugging support.
3003  +  -qml-debug ......... Build the QML debugging support.
3004
3005     -platform target ... The operating system and compiler you are building
3006                          on ($PLATFORM).
3007
3008                          See the README file for a list of supported
3009                          operating systems and compilers.
3010
3011     -no-sse2 ........... Do not compile with use of SSE2 instructions.
3012     -no-sse3 ........... Do not compile with use of SSE3 instructions.
3013     -no-ssse3 .......... Do not compile with use of SSSE3 instructions.
3014     -no-sse4.1.......... Do not compile with use of SSE4.1 instructions.
3015     -no-sse4.2.......... Do not compile with use of SSE4.2 instructions.
3016     -no-avx ............ Do not compile with use of AVX instructions.
3017     -no-avx2 ........... Do not compile with use of AVX2 instructions.
3018     -no-neon ........... Do not compile with use of NEON instructions.
3019     -no-mips_dsp ....... Do not compile with use of MIPS DSP instructions.
3020     -no-mips_dspr2 ..... Do not compile with use of MIPS DSP rev2 instructions.
3021
3022     -qtnamespace <name>  Wraps all Qt library code in 'namespace <name> {...}'.
3023     -qtlibinfix <infix>  Renames all libQt*.so to libQt*<infix>.so.
3024
3025     -testcocoon          Instrument Qt with the TestCocoon code coverage tool.
3026
3027     -D <string> ........ Add an explicit define to the preprocessor.
3028     -I <string> ........ Add an explicit include path.
3029     -L <string> ........ Add an explicit library path.
3030
3031  +  -pkg-config ........ Use pkg-config to detect include and library paths. By default,
3032                          configure determines whether to use pkg-config or not with
3033                          some heuristics such as checking the environment variables.
3034     -no-pkg-config ..... Disable use of pkg-config.
3035     -force-pkg-config .. Force usage of pkg-config (skips pkg-config usability
3036                          detection heuristic).
3037
3038     -help, -h .......... Display this information.
3039
3040 Third Party Libraries:
3041
3042     -qt-zlib ........... Use the zlib bundled with Qt.
3043  +  -system-zlib ....... Use zlib from the operating system.
3044                          See http://www.gzip.org/zlib
3045
3046     -no-gif ............ Do not compile GIF reading support.
3047
3048     -no-libpng ......... Do not compile PNG support.
3049     -qt-libpng ......... Use the libpng bundled with Qt.
3050  +  -system-libpng ..... Use libpng from the operating system.
3051                          See http://www.libpng.org/pub/png
3052
3053     -no-libjpeg ........ Do not compile JPEG support.
3054     -qt-libjpeg ........ Use the libjpeg bundled with Qt.
3055  +  -system-libjpeg .... Use libjpeg from the operating system.
3056                          See http://www.ijg.org
3057
3058     -no-openssl ........ Do not compile support for OpenSSL.
3059  +  -openssl ........... Enable run-time OpenSSL support.
3060     -openssl-linked .... Enabled linked OpenSSL support.
3061
3062     -qt-pcre ........... Use the PCRE library bundled with Qt.
3063  +  -system-pcre ....... Use the PCRE library from the operating system.
3064
3065 Additional options:
3066
3067     -make <part> ....... Add part to the list of parts to be built at make time.
3068                          ($QT_DEFAULT_BUILD_PARTS)
3069     -nomake <part> ..... Exclude part from the list of parts to be built.
3070
3071     -R <string> ........ Add an explicit runtime library path to the Qt
3072                          libraries.
3073     -l <string> ........ Add an explicit library.
3074
3075     -no-rpath .......... Do not use the library install path as a runtime
3076                          library path.
3077  +  -rpath ............. Link Qt libraries and executables using the library
3078                          install path as a runtime library path. Equivalent
3079                          to -R install_libpath
3080
3081     -continue .......... Continue as far as possible if an error occurs.
3082
3083     -verbose, -v ....... Print verbose information about each step of the
3084                          configure process.
3085
3086     -silent ............ Reduce the build output so that warnings and errors
3087                          can be seen more easily.
3088
3089  *  -no-optimized-qmake ... Do not build qmake optimized.
3090     -optimized-qmake ...... Build qmake optimized.
3091
3092     -no-gui ............ Don't build the Qt GUI library
3093
3094  $NSN  -no-nis ............ Do not compile NIS support.
3095  $NSY  -nis ............... Compile NIS support.
3096
3097  $CUN  -no-cups ........... Do not compile CUPS support.
3098  $CUY  -cups .............. Compile CUPS support.
3099                          Requires cups/cups.h and libcups.so.2.
3100
3101  $CIN  -no-iconv .......... Do not compile support for iconv(3).
3102  $CIY  -iconv ............. Compile support for iconv(3).
3103
3104  $PHN  -no-pch ............ Do not use precompiled header support.
3105  $PHY  -pch ............... Use precompiled header support.
3106
3107  $DBN  -no-dbus ........... Do not compile the QtDBus module.
3108  $DBY  -dbus .............. Compile the QtDBus module and dynamically load libdbus-1.
3109     -dbus-linked ....... Compile the QtDBus module and link to libdbus-1.
3110
3111     -reduce-relocations ..... Reduce relocations in the libraries through extra
3112                               linker optimizations (Qt/X11 and Qt for Embedded Linux only;
3113                               experimental; needs GNU ld >= 2.18).
3114
3115     -force-asserts ........ Force Q_ASSERT to be enabled even in release builds.
3116
3117     -device <name> ............... Cross-compile for device <name> (experimental)
3118     -device-option <key=value> ... Add device specific options for the device mkspec
3119                                    (experimental)
3120
3121  $SBN  -no-separate-debug-info . Do not store debug information in a separate file.
3122  $SBY  -separate-debug-info .... Strip debug information into a separate .debug file.
3123
3124  $XCBN  -no-xcb ............ Do not compile Xcb (X protocol C-language Binding) support.
3125  $XCBY  -xcb ............... Compile Xcb support.
3126
3127  $EGLFSN  -no-eglfs .......... Do not compile EGLFS (EGL Full Screen/Single Surface) support.
3128  $EGLFSY  -eglfs ............. Compile EGLFS support (Requires OpenGL ES 2 support).
3129
3130  $DFBN  -no-directfb ....... Do not compile DirectFB support.
3131  $DFBY  -directfb .......... Compile DirectFB support.
3132
3133     -qpa <name> ......... Sets the default QPA platform (e.g xcb, cocoa, windows).
3134
3135     -xplatform target ... The target platform when cross-compiling.
3136
3137     -sysroot <dir> ...... Sets <dir> as the target compiler's and qmake's sysroot.
3138
3139     -no-feature-<feature> Do not compile in <feature>.
3140     -feature-<feature> .. Compile in <feature>. The available features
3141                           are described in src/corelib/global/qfeatures.txt
3142
3143     -no-freetype ........ Do not compile in Freetype2 support.
3144     -qt-freetype ........ Use the libfreetype bundled with Qt.
3145  *  -system-freetype .... Use libfreetype from the operating system.
3146                           See http://www.freetype.org/
3147
3148     -qconfig local ...... Use src/corelib/global/qconfig-local.h rather than the
3149                           default ($CFG_QCONFIG).
3150
3151     -no-opengl .......... Do not support OpenGL.
3152     -opengl <api> ....... Enable OpenGL support
3153                           With no parameter, this will attempt to auto-detect
3154                           OpenGL ES 2, or regular desktop OpenGL.
3155                           Use es2 for <api> to override auto-detection.
3156
3157  $GBN  -no-glib ........... Do not compile Glib support.
3158  $GBY  -glib .............. Compile Glib support.
3159 EOF
3160
3161 if [ "$XPLATFORM_MAEMO" = "yes" ]; then
3162     cat << EOF
3163
3164  $X2N  -no-xinput2......... Do not compile XInput2 support.
3165  $X2Y  -xinput2............ Compile XInput2 support.
3166
3167 EOF
3168
3169 fi
3170
3171 if [ "$BUILD_ON_MAC" = "yes" ]; then
3172     cat << EOF
3173
3174 Qt/Mac only:
3175
3176     -Fstring ........... Add an explicit framework path.
3177     -fw string ......... Add an explicit framework.
3178
3179  *  -framework ......... Build Qt as a series of frameworks and
3180                          link tools against those frameworks.
3181     -no-framework ...... Do not build Qt as a series of frameworks.
3182
3183     -sdk <sdk> ......... Build Qt using Apple provided SDK <sdk>. This option requires gcc 4.
3184                          To use a different SDK with gcc 3.3, set the SDKROOT environment variable.
3185
3186     -harfbuzz .......... Use HarfBuzz to do text layout instead of Core Text when possible.
3187  *  -no-harfbuzz ....... Disable HarfBuzz on Mac. It can still be enabled by setting
3188                          QT_ENABLE_HARFBUZZ environment variable.
3189
3190 EOF
3191 fi
3192
3193    [ "x$ERROR" = "xyes" ] && exit 1
3194    exit 0
3195 fi # Help
3196
3197
3198 # -----------------------------------------------------------------------------
3199 # LICENSING, INTERACTIVE PART
3200 # -----------------------------------------------------------------------------
3201
3202 echo
3203 echo "This is the Qt ${EditionString} Edition."
3204 echo
3205
3206 if [ "$Edition" = "OpenSource" ]; then
3207     while true; do
3208         echo "You are licensed to use this software under the terms of"
3209         echo "the Lesser GNU General Public License (LGPL) versions 2.1."
3210         if [ -f "$relpath/LICENSE.GPL3" ]; then
3211             echo "You are also licensed to use this software under the terms of"
3212             echo "the GNU General Public License (GPL) versions 3."
3213             affix="either"
3214         else
3215             affix="the"
3216         fi
3217         echo
3218         if [ "$OPT_CONFIRM_LICENSE" = "yes" ]; then
3219             echo "You have already accepted the terms of the $LicenseType license."
3220             acceptance=yes
3221         else
3222             if [ -f "$relpath/LICENSE.GPL3" ]; then
3223                 echo "Type '3' to view the GNU General Public License version 3."
3224             fi
3225             echo "Type 'L' to view the Lesser GNU General Public License version 2.1."
3226             echo "Type 'yes' to accept this license offer."
3227             echo "Type 'no' to decline this license offer."
3228             echo
3229             echo $ECHO_N "Do you accept the terms of $affix license? $ECHO_C"
3230             read acceptance
3231         fi
3232         echo
3233         if [ "$acceptance" = "yes" ] || [ "$acceptance" = "y" ]; then
3234             break
3235         elif [ "$acceptance" = "no" ]; then
3236             echo "You are not licensed to use this software."
3237             echo
3238             exit 1
3239         elif [ "$acceptance" = "3" ]; then
3240             more "$relpath/LICENSE.GPL3"
3241         elif [ "$acceptance" = "L" ]; then
3242             more "$relpath/LICENSE.LGPL"
3243         fi
3244     done
3245 elif [ "$Edition" = "Preview" ]; then
3246     TheLicense=`head -n 1 "$relpath/LICENSE.PREVIEW.COMMERCIAL"`
3247     while true; do
3248
3249         if [ "$OPT_CONFIRM_LICENSE" = "yes" ]; then
3250             echo "You have already accepted the terms of the $LicenseType license."
3251             acceptance=yes
3252         else
3253             echo "You are licensed to use this software under the terms of"
3254             echo "the $TheLicense"
3255             echo
3256             echo "Type '?' to read the Preview License."
3257             echo "Type 'yes' to accept this license offer."
3258             echo "Type 'no' to decline this license offer."
3259             echo
3260             echo $ECHO_N "Do you accept the terms of the license? $ECHO_C"
3261             read acceptance
3262         fi
3263         echo
3264         if [ "$acceptance" = "yes" ]; then
3265             break
3266         elif [ "$acceptance" = "no" ] ;then
3267             echo "You are not licensed to use this software."
3268             echo
3269             exit 0
3270         elif [ "$acceptance" = "?" ]; then
3271             more "$relpath/LICENSE.PREVIEW.COMMERCIAL"
3272         fi
3273     done
3274 elif [ "$Edition" != "OpenSource" ]; then
3275     if [ -n "$ExpiryDate" ]; then
3276         ExpiryDate=`echo $ExpiryDate | sed -e "s,-,,g" | tr -d "\n\r"`
3277         [ -z "$ExpiryDate" ] && ExpiryDate="0"
3278         Today=`date +%Y%m%d`
3279         if [ "$Today" -gt "$ExpiryDate" ]; then
3280             case "$LicenseType" in
3281             Commercial|Academic|Educational)
3282                 if [ "$QT_PACKAGEDATE" -gt "$ExpiryDate" ]; then
3283                     echo
3284                     echo "NOTICE  NOTICE  NOTICE  NOTICE"
3285                     echo
3286                     echo "  Your support and upgrade period has expired."
3287                     echo
3288                     echo "  You are no longer licensed to use this version of Qt."
3289                     echo "  Please contact qt-info@nokia.com to renew your support"
3290                     echo "  and upgrades for this license."
3291                     echo
3292                     echo "NOTICE  NOTICE  NOTICE  NOTICE"
3293                     echo
3294                     exit 1
3295                 else
3296                     echo
3297                     echo "WARNING  WARNING  WARNING  WARNING"
3298                     echo
3299                     echo "  Your support and upgrade period has expired."
3300                     echo
3301                     echo "  You may continue to use your last licensed release"
3302                     echo "  of Qt under the terms of your existing license"
3303                     echo "  agreement. But you are not entitled to technical"
3304                     echo "  support, nor are you entitled to use any more recent"
3305                     echo "  Qt releases."
3306                     echo
3307                     echo "  Please contact qt-info@nokia.com to renew your"
3308                     echo "  support and upgrades for this license."
3309                     echo
3310                     echo "WARNING  WARNING  WARNING  WARNING"
3311                     echo
3312                     sleep 3
3313                 fi
3314                 ;;
3315             Evaluation|*)
3316                 echo
3317                 echo "NOTICE  NOTICE  NOTICE  NOTICE"
3318                 echo
3319                 echo "  Your Evaluation license has expired."
3320                 echo
3321                 echo "  You are no longer licensed to use this software. Please"
3322                 echo "  contact qt-info@nokia.com to purchase license, or install"
3323                 echo "  the Qt Open Source Edition if you intend to develop free"
3324                 echo "  software."
3325                 echo
3326                 echo "NOTICE  NOTICE  NOTICE  NOTICE"
3327                 echo
3328                 exit 1
3329                 ;;
3330             esac
3331         fi
3332     fi
3333     TheLicense=`head -n 1 "$outpath/LICENSE"`
3334     while true; do
3335         if [ "$OPT_CONFIRM_LICENSE" = "yes" ]; then
3336             echo "You have already accepted the terms of the $TheLicense."
3337             acceptance=yes
3338         else
3339             echo "You are licensed to use this software under the terms of"
3340             echo "the $TheLicense."
3341             echo
3342             echo "Type '?' to view the $TheLicense."
3343             echo "Type 'yes' to accept this license offer."
3344             echo "Type 'no' to decline this license offer."
3345             echo
3346             echo $ECHO_N "Do you accept the terms of the $TheLicense? $ECHO_C"
3347             read acceptance
3348         fi
3349         echo
3350         if [ "$acceptance" = "yes" ]; then
3351             break
3352         elif [ "$acceptance" = "no" ]; then
3353             echo "You are not licensed to use this software."
3354             echo
3355             exit 1
3356         else [ "$acceptance" = "?" ]
3357             more "$outpath/LICENSE"
3358         fi
3359     done
3360 fi
3361
3362 # this should be moved somewhere else
3363 case "$PLATFORM" in
3364 aix-*)
3365     AIX_VERSION=`uname -v`
3366     if [ "$AIX_VERSION" -lt "5" ]; then
3367         QMakeVar add QMAKE_LIBS_X11 -lbind
3368     fi
3369     ;;
3370 *)
3371     ;;
3372 esac
3373
3374 #-------------------------------------------------------------------------------
3375 # generate qconfig.cpp
3376 #-------------------------------------------------------------------------------
3377 [ -d "$outpath/src/corelib/global" ] || mkdir -p "$outpath/src/corelib/global"
3378
3379 cat > "$outpath/src/corelib/global/qconfig.cpp.new" <<EOF
3380 /* License Info */
3381 static const char qt_configure_licensee_str          [256 + 12] = "qt_lcnsuser=$Licensee";
3382 static const char qt_configure_licensed_products_str [256 + 12] = "qt_lcnsprod=$Edition";
3383
3384 /* Installation date */
3385 static const char qt_configure_installation          [12+11]    = "qt_instdate=`date +%Y-%m-%d`";
3386
3387 /* Installation Info */
3388 static const char qt_configure_prefix_path_strs[][256 + 12] = {
3389     "qt_prfxpath=$QT_INSTALL_PREFIX",
3390     "qt_docspath=$QT_INSTALL_DOCS",
3391     "qt_hdrspath=$QT_INSTALL_HEADERS",
3392     "qt_libspath=$QT_INSTALL_LIBS",
3393     "qt_binspath=$QT_INSTALL_BINS",
3394     "qt_plugpath=$QT_INSTALL_PLUGINS",
3395     "qt_impspath=$QT_INSTALL_IMPORTS",
3396     "qt_datapath=$QT_INSTALL_DATA",
3397     "qt_trnspath=$QT_INSTALL_TRANSLATIONS",
3398     "qt_xmplpath=$QT_INSTALL_EXAMPLES",
3399     "qt_tstspath=$QT_INSTALL_TESTS",
3400 #ifdef QT_BUILD_QMAKE
3401     "qt_ssrtpath=$CFG_SYSROOT",
3402     "qt_hpfxpath=$QT_HOST_PREFIX",
3403     "qt_hbinpath=$QT_HOST_BINS",
3404     "qt_hdatpath=$QT_HOST_DATA",
3405 #endif
3406 };
3407 static const char qt_configure_settings_path_str[256 + 12] = "qt_stngpath=$QT_INSTALL_SETTINGS";
3408 EOF
3409
3410 cat >> "$outpath/src/corelib/global/qconfig.cpp.new" <<EOF
3411
3412 /* strlen( "qt_lcnsxxxx" ) == 12 */
3413 #define QT_CONFIGURE_LICENSEE qt_configure_licensee_str + 12;
3414 #define QT_CONFIGURE_LICENSED_PRODUCTS qt_configure_licensed_products_str + 12;
3415
3416 #define QT_CONFIGURE_SETTINGS_PATH qt_configure_settings_path_str + 12;
3417 EOF
3418
3419 # avoid unecessary rebuilds by copying only if qconfig.cpp has changed
3420 if cmp -s "$outpath/src/corelib/global/qconfig.cpp" "$outpath/src/corelib/global/qconfig.cpp.new"; then
3421     rm -f "$outpath/src/corelib/global/qconfig.cpp.new"
3422 else
3423     [ -f "$outpath/src/corelib/global/qconfig.cpp" ] && chmod +w "$outpath/src/corelib/global/qconfig.cpp"
3424     mv "$outpath/src/corelib/global/qconfig.cpp.new" "$outpath/src/corelib/global/qconfig.cpp"
3425     chmod -w "$outpath/src/corelib/global/qconfig.cpp"
3426 fi
3427
3428 # -----------------------------------------------------------------------------
3429 if [ "$LicenseType" = "Evaluation" ]; then
3430     EVALKEY=qt_qevalkey=$LicenseKeyExt
3431 elif echo "$DEFINES" | grep QT_EVAL >/dev/null 2>&1; then
3432     EVALKEY=qt_qevalkey=
3433 fi
3434
3435 if [ -n "$EVALKEY" ]; then
3436     rm -f "$outpath/src/corelib/global/qconfig_eval.cpp"
3437     cat > "$outpath/src/corelib/global/qconfig_eval.cpp" <<EOF
3438 /* Evaluation license key */
3439 static const volatile char qt_eval_key_data                   [512 + 12] = "$EVALKEY";
3440 EOF
3441     chmod -w "$outpath/src/corelib/global/qconfig_eval.cpp"
3442 fi
3443
3444
3445 # -----------------------------------------------------------------------------
3446 # build qmake
3447 # -----------------------------------------------------------------------------
3448
3449 # symlink includes
3450 if [ -n "$PERL" ] && [ -x "$relpath/bin/syncqt" ]; then
3451     SYNCQT_OPTS=
3452     [ "$CFG_DEV" = "yes" ] && SYNCQT_OPTS="$SYNCQT_OPTS -check-includes"
3453     if [ "$OPT_SHADOW" = "yes" ]; then
3454         "$outpath/bin/syncqt" $SYNCQT_OPTS "$relpath" || exit 1
3455     elif [ "$CFG_DEV" = "yes" ] || [ ! -d $relpath/include ] || [ -d $relpath/.git ]; then
3456         QTDIR="$relpath" perl "$outpath/bin/syncqt" $SYNCQT_OPTS || exit 1
3457     fi
3458 fi
3459
3460 # $1: input variable name (awk regexp)
3461 # $2: optional output variable name
3462 # $3: optional value transformation (sed command)
3463 # relies on $QMAKESPEC, $COMPILER_CONF and $mkfile being set correctly, as the latter
3464 # is where the resulting variable is written to
3465 setBootstrapVariable()
3466 {
3467     getQMakeConf "$1" | echo ${2-$1} = `if [ -n "$3" ]; then sed "$3"; else cat; fi` >> "$mkfile"
3468 }
3469
3470 # build qmake
3471 if true; then ###[ '!' -f "$outpath/bin/qmake" ];
3472     echo "Creating qmake. Please wait..."
3473
3474     OLD_QCONFIG_H=
3475     QCONFIG_H="$outpath/src/corelib/global/qconfig.h"
3476     QMAKE_QCONFIG_H="${QCONFIG_H}.qmake"
3477     if [ -f "$QCONFIG_H" ]; then
3478          OLD_QCONFIG_H=$QCONFIG_H
3479          mv -f "$OLD_QCONFIG_H" "${OLD_QCONFIG_H}.old"
3480     fi
3481
3482     # create temporary qconfig.h for compiling qmake, if it doesn't exist
3483     # when building qmake, we use #defines for the install paths,
3484     # however they are real functions in the library
3485     if [ '!' -f "$QMAKE_QCONFIG_H" ]; then
3486         mkdir -p "$outpath/src/corelib/global"
3487         [ -f "$QCONFIG_H" ] && chmod +w "$QCONFIG_H"
3488         echo "/* All features enabled while building qmake */" >"$QMAKE_QCONFIG_H"
3489     fi
3490
3491     mv -f "$QMAKE_QCONFIG_H" "$QCONFIG_H"
3492
3493     #mkspecs/default is used as a (gasp!) default mkspec so QMAKESPEC needn't be set once configured
3494     rm -rf mkspecs/default
3495     ln -s `echo $XQMAKESPEC | sed "s,^${relpath}/mkspecs/,,"` mkspecs/default
3496     mkdir -p "$outpath/qmake" || exit
3497     # fix makefiles
3498     for mkfile in GNUmakefile Makefile; do
3499         EXTRA_LFLAGS=
3500         EXTRA_CFLAGS=
3501         in_mkfile="${mkfile}.in"
3502         if [ "$mkfile" = "Makefile" ]; then
3503 #           if which qmake >/dev/null 2>&1 && [ -f qmake/qmake.pro ]; then
3504 #               (cd qmake && qmake) >/dev/null 2>&1 && continue
3505 #           fi
3506             in_mkfile="${mkfile}.unix"
3507         fi
3508         in_mkfile="$relpath/qmake/$in_mkfile"
3509         mkfile="$outpath/qmake/$mkfile"
3510         if [ -f "$mkfile" ]; then
3511             [ "$CFG_DEV" = "yes" ] && "$WHICH" chflags >/dev/null 2>&1 && chflags nouchg "$mkfile"
3512             rm -f "$mkfile"
3513         fi
3514         [ -f "$in_mkfile" ] || continue
3515
3516         echo "########################################################################" > "$mkfile"
3517         echo "## This file was autogenerated by configure, all changes will be lost ##" >> "$mkfile"
3518         echo "########################################################################" >> "$mkfile"
3519         EXTRA_OBJS=
3520         EXTRA_SRCS=
3521         EXTRA_CFLAGS="\$(QMAKE_CFLAGS)"
3522         EXTRA_CXXFLAGS="\$(QMAKE_CXXFLAGS)"
3523         EXTRA_LFLAGS="\$(QMAKE_LFLAGS)"
3524
3525         if [ "$PLATFORM" = "irix-cc" ] || [ "$PLATFORM" = "irix-cc-64" ]; then
3526             EXTRA_LFLAGS="$EXTRA_LFLAGS -lm"
3527         fi
3528
3529         [ "$CFG_SILENT" = "yes" ] && CC_TRANSFORM='s,^,\@,' || CC_TRANSFORM=
3530         setBootstrapVariable QMAKE_CC CC "$CC_TRANSFORM"
3531         setBootstrapVariable QMAKE_CXX CXX "$CC_TRANSFORM"
3532         setBootstrapVariable QMAKE_CFLAGS
3533         setBootstrapVariable QMAKE_CXXFLAGS
3534         setBootstrapVariable QMAKE_LFLAGS
3535
3536         if [ $QT_EDITION = "QT_EDITION_OPENSOURCE" ]; then
3537             EXTRA_CFLAGS="$EXTRA_CFLAGS -DQMAKE_OPENSOURCE_EDITION"
3538             EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -DQMAKE_OPENSOURCE_EDITION"
3539         fi
3540         if [ "$CFG_RELEASE_QMAKE" = "yes" ]; then
3541             setBootstrapVariable QMAKE_CFLAGS_RELEASE
3542             setBootstrapVariable QMAKE_CXXFLAGS_RELEASE
3543             EXTRA_CFLAGS="$EXTRA_CFLAGS \$(QMAKE_CFLAGS_RELEASE)"
3544             EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(QMAKE_CXXFLAGS_RELEASE)"
3545         elif [ "$CFG_DEBUG" = "yes" ]; then
3546             setBootstrapVariable QMAKE_CFLAGS_DEBUG
3547             setBootstrapVariable QMAKE_CXXFLAGS_DEBUG
3548             EXTRA_CFLAGS="$EXTRA_CFLAGS \$(QMAKE_CFLAGS_DEBUG)"
3549             EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(QMAKE_CXXFLAGS_DEBUG)"
3550         fi
3551
3552         if [ -n "$RPATH_FLAGS" ] && [ -n "`getQMakeConf 'QMAKE_(LFLAGS_)?RPATH'`" ]; then
3553             setBootstrapVariable "QMAKE_(LFLAGS_)?RPATH" QMAKE_LFLAGS_RPATH
3554             for rpath in $RPATH_FLAGS; do
3555                 EXTRA_LFLAGS="\$(QMAKE_LFLAGS_RPATH)\"$rpath\" $EXTRA_LFLAGS"
3556             done
3557         fi
3558         if [ "$BUILD_ON_MAC" = "yes" ]; then
3559             echo "export MACOSX_DEPLOYMENT_TARGET = 10.6" >> "$mkfile"
3560             echo "CARBON_LFLAGS =-framework ApplicationServices" >>"$mkfile"
3561             echo "CARBON_CFLAGS =-fconstant-cfstrings" >>"$mkfile"
3562             EXTRA_LFLAGS="$EXTRA_LFLAGS \$(CARBON_LFLAGS)"
3563             EXTRA_CFLAGS="$EXTRA_CFLAGS \$(CARBON_CFLAGS)"
3564             EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(CARBON_CFLAGS)"
3565             EXTRA_OBJS="qsettings_mac.o qcore_mac.o"
3566             EXTRA_SRCS="\"$relpath/src/corelib/io/qsettings_mac.cpp\" \"$relpath/src/corelib/kernel/qcore_mac.cpp\""
3567             if [ '!' -z "$CFG_SDK" ]; then
3568                 echo "SDK_LFLAGS =-Wl,-syslibroot,$CFG_SDK" >>"$mkfile"
3569                 echo "SDK_CFLAGS =-isysroot $CFG_SDK" >>"$mkfile"
3570                 EXTRA_CFLAGS="$EXTRA_CFLAGS \$(SDK_CFLAGS)"
3571                 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(SDK_CFLAGS)"
3572                 EXTRA_LFLAGS="$EXTRA_LFLAGS \$(SDK_LFLAGS)"
3573             fi
3574         fi
3575         if [ '!' -z "$D_FLAGS" ]; then
3576             EXTRA_CFLAGS="$EXTRA_CFLAGS $D_FLAGS"
3577         fi
3578         QMAKE_BIN_DIR="$QT_INSTALL_BINS"
3579         [ -z "$QMAKE_BIN_DIR" ] && QMAKE_BIN_DIR="${QT_INSTALL_PREFIX}/bin"
3580         QMAKE_DATA_DIR="$QT_INSTALL_DATA"
3581         [ -z "$QMAKE_DATA_DIR" ] && QMAKE_DATA_DIR="${QT_INSTALL_PREFIX}"
3582         echo >>"$mkfile"
3583         adjrelpath=`echo "$relpath" | sed 's/ /\\\\\\\\ /g'`
3584         adjoutpath=`echo "$outpath" | sed 's/ /\\\\\\\\ /g'`
3585         adjqmakespec=`echo "$QMAKESPEC" | sed 's/ /\\\\\\\\ /g'`
3586         sed -e "s,@SOURCE_PATH@,$adjrelpath,g" -e "s,@BUILD_PATH@,$adjoutpath,g" \
3587             -e "s,@QMAKE_CFLAGS@,$EXTRA_CFLAGS,g" -e "s,@QMAKE_LFLAGS@,$EXTRA_LFLAGS,g" \
3588             -e "s,@QMAKE_CXXFLAGS@,$EXTRA_CXXFLAGS,g" \
3589             -e "s,@QT_INSTALL_BINS@,\$(INSTALL_ROOT)$QMAKE_BIN_DIR,g" \
3590             -e "s,@QT_INSTALL_DATA@,\$(INSTALL_ROOT)$QMAKE_DATA_DIR,g" \
3591             -e "s,@QMAKE_QTOBJS@,$EXTRA_OBJS,g" -e "s,@QMAKE_QTSRCS@,$EXTRA_SRCS,g" \
3592             -e "s,@QMAKESPEC@,$adjqmakespec,g" -e "s,@QT_VERSION@,$QT_VERSION,g" "$in_mkfile" >>"$mkfile"
3593
3594         if "$WHICH" makedepend >/dev/null 2>&1 && grep 'depend:' "$mkfile" >/dev/null 2>&1; then
3595             (cd "$outpath/qmake" && "$MAKE" -f "$mkfile" depend) >/dev/null 2>&1
3596             sed "s,^.*/\([^/]*.o\):,\1:,g" "$mkfile" >"$mkfile.tmp"
3597             sed "s,$outpath,$adjoutpath,g" "$mkfile.tmp" >"$mkfile"
3598             rm "$mkfile.tmp"
3599         fi
3600     done
3601
3602     QMAKE_BUILD_ERROR=no
3603     (cd "$outpath/qmake"; "$MAKE") || QMAKE_BUILD_ERROR=yes
3604     [ '!' -z "$QCONFIG_H" ] && mv -f "$QCONFIG_H" "$QMAKE_QCONFIG_H" #move qmake's qconfig.h to qconfig.h.qmake
3605     [ '!' -z "$OLD_QCONFIG_H" ] && mv -f "${OLD_QCONFIG_H}.old" "$OLD_QCONFIG_H" #put back qconfig.h
3606     [ "$QMAKE_BUILD_ERROR" = "yes" ] && exit 2
3607 fi # Build qmake
3608
3609 #-------------------------------------------------------------------------------
3610 # Detect pkg-config
3611 #-------------------------------------------------------------------------------
3612 if [ -z "$PKG_CONFIG" ]; then
3613     # See if PKG_CONFIG is set in the mkspec:
3614     PKG_CONFIG=`getXQMakeConf PKG_CONFIG`
3615 fi
3616 if [ -z "$PKG_CONFIG" ]; then
3617     PKG_CONFIG=`"$WHICH" pkg-config 2>/dev/null`
3618 fi
3619
3620 if [ "$CFG_PKGCONFIG" = "no" ]; then
3621     PKG_CONFIG=
3622 elif [ "$CFG_PKGCONFIG" = "force" ]; then
3623     echo >&2 ""
3624     echo >&2 "You have asked to use pkg-config. Please make sure you have"
3625     echo >&2 "a correctly setup pkg-config environment!"
3626     echo >&2 ""
3627 elif [ -n "$PKG_CONFIG" ]; then
3628     # found a pkg-config
3629     if [ "$QT_CROSS_COMPILE" = "yes" ]; then
3630         # when xcompiling, check environment to see if it's actually usable
3631         if [ -z "$PKG_CONFIG_LIBDIR" ]; then
3632             if [ -n "$CFG_SYSROOT" ] && [ -d "$CFG_SYSROOT/usr/lib/pkgconfig" ]; then
3633                 PKG_CONFIG_LIBDIR=$CFG_SYSROOT/usr/lib/pkgconfig:$CFG_SYSROOT/usr/share/pkgconfig
3634                 if [ -n "$GCC_MACHINE_DUMP" ]; then
3635                     PKG_CONFIG_LIBDIR=$PKG_CONFIG_LIBDIR:$CFG_SYSROOT/usr/lib/$GCC_MACHINE_DUMP/pkgconfig
3636                 fi
3637                 export PKG_CONFIG_LIBDIR
3638                 echo >&2 "Note: PKG_CONFIG_LIBDIR automatically set to $PKG_CONFIG_LIBDIR"
3639             elif [ "$CFG_PKGCONFIG" = "yes" ]; then
3640                 echo >&2 "Error: PKG_CONFIG_LIBDIR has not been set. This could mean"
3641                 echo >&2 "the host's .pc files will be used (even if you set PKG_CONFIG_PATH)."
3642                 echo >&2 "Set this variable to the directory that contains target .pc files"
3643                 echo >&2 "for pkg-config to function correctly when cross-compiling or"
3644                 echo >&2 "use -force-pkg-config to override this test."
3645                 exit 101
3646             else
3647                 PKG_CONFIG=
3648                 echo >&2 "Warning: Disabling pkg-config since PKG_CONFIG_LIBDIR is not set."
3649             fi
3650         fi
3651         if [ -z "$PKG_CONFIG_SYSROOT_DIR" ]; then
3652             if [ -n "$CFG_SYSROOT" ]; then
3653                 PKG_CONFIG_SYSROOT_DIR=$CFG_SYSROOT
3654                 export PKG_CONFIG_SYSROOT_DIR
3655                 echo >&2 "Note: PKG_CONFIG_SYSROOT_DIR automatically set to $PKG_CONFIG_SYSROOT_DIR"
3656             elif [ "$CFG_PKGCONFIG" = "yes" ]; then
3657                 echo >&2 "Error: PKG_CONFIG_SYSROOT_DIR has not been set. Set this variable"
3658                 echo >&2 "to your sysroot for pkg-config to function correctly when cross-compiling"
3659                 echo >&2 "or use -force-pkg-config to override this test."
3660                 exit 101
3661             else
3662                 PKG_CONFIG=
3663                 echo >&2 "Warning: Disabling pkg-config since PKG_CONFIG_SYSROOT_DIR is not set."
3664             fi
3665         fi
3666     fi
3667 elif [ "$CFG_PKGCONFIG" = "yes" ]; then
3668     echo >&2 "Could not detect pkg-config from mkspec or PATH."
3669     exit 101
3670 fi
3671
3672 if [ -z "$PKG_CONFIG" ]; then
3673     QT_CONFIG="$QT_CONFIG no-pkg-config"
3674 fi
3675
3676 #-------------------------------------------------------------------------------
3677 # write out device config before we run the test.
3678 #-------------------------------------------------------------------------------
3679 DEVICE_VARS_OUTFILE="$outpath/mkspecs/qdevice.pri"
3680 if cmp -s "$DEVICE_VARS_FILE" "$DEVICE_VARS_OUTFILE"; then
3681     rm -f "$DEVICE_VARS_FILE"
3682 else
3683     mv -f $DEVICE_VARS_FILE "$DEVICE_VARS_OUTFILE"
3684     DEVICE_VARS_FILE="$DEVICE_VARS_OUTFILE"
3685 fi
3686
3687 #-------------------------------------------------------------------------------
3688 # tests that need qmake
3689 #-------------------------------------------------------------------------------
3690
3691 #-------------------------------------------------------------------------------
3692 # determine the target and host architectures
3693 #-------------------------------------------------------------------------------
3694
3695 # Use config.tests/arch/arch.pro to has the compiler tell us what the target architecture is
3696 OUTFILE=$outpath/arch.result
3697 "$unixtests/arch.test" "$XQMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath" "$OUTFILE" "CFG"
3698 if [ $? -eq 0 ]; then
3699     eval `cat "$OUTFILE"`
3700 else
3701     echo
3702     echo "Could not determine the target architecture!"
3703     echo "Turn on verbose messaging (-v) to see the final report."
3704 fi
3705 rm -f "$OUTFILE" 2>/dev/null
3706 [ -z "$CFG_ARCH" ] && CFG_ARCH="unknown"
3707
3708 if [ "$QMAKESPEC" != "$XQMAKESPEC" ]; then
3709     # Do the same test again, using the host compiler
3710     SYSROOT_FLAG= "$unixtests/arch.test" "$QMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath" "$OUTFILE" "CFG_HOST"
3711     if [ $? -eq 0 ]; then
3712         eval `cat "$OUTFILE"`
3713     else
3714         echo
3715         echo "Could not determine the host architecture!"
3716         echo "Turn on verbose messaging (-v) to see the final report."
3717     fi
3718     rm -f "$OUTFILE" 2>/dev/null
3719     [ -z "$CFG_HOST_ARCH" ] && CFG_HOST_ARCH="unknown"
3720 else
3721     # not cross compiling, host == target
3722     CFG_HOST_ARCH="$CFG_ARCH"
3723     CFG_HOST_CPUFEATURES="$CFG_CPUFEATURES"
3724 fi
3725 unset OUTFILE
3726
3727 if [ "$OPT_VERBOSE" = "yes" ]; then
3728     echo "System architecture: '$CFG_ARCH'"
3729     echo "Host architecture: '$CFG_HOST_ARCH'"
3730 fi
3731
3732 #-------------------------------------------------------------------------------
3733 # functionality tests
3734 #-------------------------------------------------------------------------------
3735
3736 # Detect C++11 support
3737 if [ "$CFG_CXX11" != "no" ]; then
3738     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/c++11 "C++11" $L_FLAGS $I_FLAGS $l_FLAGS; then
3739         CFG_CXX11="yes"
3740     elif [ "$CFG_CXX11" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
3741         echo "C++11 support cannot be enabled due to functionality tests!"
3742         echo " Turn on verbose messaging (-v) to $0 to see the final report."
3743         echo " If you believe this message is in error you may use the continue"
3744         echo " switch (-continue) to $0 to continue."
3745         exit 101
3746     else
3747         CFG_CXX11="no"
3748     fi
3749 fi
3750
3751 # detect availability of float math.h functions
3752 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/floatmath "floatmath" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
3753     CFG_USE_FLOATMATH=yes
3754 else
3755     CFG_USE_FLOATMATH=no
3756 fi
3757
3758 # detect sse2 support
3759 if [ "${CFG_SSE2}" = "auto" ]; then
3760     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/common/sse2 "sse2" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
3761        CFG_SSE2=yes
3762     else
3763        CFG_SSE2=no
3764     fi
3765 fi
3766
3767 # detect sse3 support
3768 if [ "${CFG_SSE3}" = "auto" ]; then
3769     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/common/sse3 "sse3" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
3770        CFG_SSE3=yes
3771     else
3772        CFG_SSE3=no
3773     fi
3774 fi
3775
3776 # detect ssse3 support
3777 if [ "${CFG_SSSE3}" = "auto" ]; then
3778     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/common/ssse3 "ssse3" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
3779        CFG_SSSE3=yes
3780     else
3781        CFG_SSSE3=no
3782     fi
3783 fi
3784
3785 # detect sse4.1 support
3786 if [ "${CFG_SSE4_1}" = "auto" ]; then
3787     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/common/sse4_1 "sse4_1" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
3788        CFG_SSE4_1=yes
3789     else
3790        CFG_SSE4_1=no
3791     fi
3792 fi
3793
3794 # detect sse4.2 support
3795 if [ "${CFG_SSE4_2}" = "auto" ]; then
3796     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/common/sse4_2 "sse4_2" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
3797        CFG_SSE4_2=yes
3798     else
3799        CFG_SSE4_2=no
3800     fi
3801 fi
3802
3803 # detect avx support
3804 if [ "${CFG_AVX}" = "auto" ]; then
3805     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/common/avx "avx" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
3806        case "$XQMAKESPEC" in
3807            *g++*|*-clang*)
3808                # Some clang versions produce internal compiler errors compiling Qt AVX code
3809                case `$TEST_COMPILER --version` in
3810                    Apple\ clang\ version\ 2*|Apple\ clang\ version\ 3.0*)
3811                        CFG_AVX=no
3812                        if [ "$OPT_VERBOSE" = "yes" ]; then
3813                            echo 'AVX support disabled for blacklisted clang compiler'
3814                        fi
3815                        ;;
3816                    *)
3817                        CFG_AVX=yes
3818                        ;;
3819                esac
3820                ;;
3821            *)
3822                CFG_AVX=yes
3823                ;;
3824        esac
3825     else
3826        CFG_AVX=no
3827     fi
3828 fi
3829
3830 # detect avx2 support
3831 if [ "${CFG_AVX}" = "no" ]; then
3832     CFG_AVX2=no
3833 fi
3834 if [ "${CFG_AVX2}" = "auto" ]; then
3835     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/common/avx2 "avx2" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
3836        CFG_AVX2=yes
3837     else
3838        CFG_AVX2=no
3839     fi
3840 fi
3841
3842 # check iWMMXt support
3843 if [ "$CFG_IWMMXT" = "yes" ]; then
3844     "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/iwmmxt "iwmmxt" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS
3845     if [ $? != "0" ]; then
3846         echo "The iWMMXt functionality test failed!"
3847         echo " Please make sure your compiler supports iWMMXt intrinsics!"
3848         exit 1
3849     fi
3850 fi
3851
3852 # detect neon support
3853 if [ "$CFG_ARCH" = "arm" ] && [ "${CFG_NEON}" = "auto" ]; then
3854     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/neon "neon" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
3855         CFG_NEON=yes
3856     else
3857         CFG_NEON=no
3858     fi
3859 elif [ "$CFG_ARCH" != "arm" ]; then
3860     CFG_NEON=no
3861 fi
3862
3863 # detect mips_dsp support
3864 if [ "${CFG_ARCH}" = "mips" ] && [ "${CFG_MIPS_DSP}" = "yes" ]; then
3865   CFG_MIPS_DSP=yes
3866     else
3867   CFG_MIPS_DSP=no
3868 fi
3869
3870 # detect mips_dspr2 support
3871 if [ "${CFG_ARCH}" = "mips" ] && [ "${CFG_MIPS_DSPR2}" = "yes" ]; then
3872   CFG_MIPS_DSPR2=yes
3873     else
3874   CFG_MIPS_DSPR2=no
3875 fi
3876
3877 [ "$XPLATFORM_MINGW" = "yes" ] && QMakeVar add styles "windowsxp windowsvista"
3878
3879 # detect zlib
3880 if [ "$CFG_ZLIB" = "no" ]; then
3881     # Note: Qt no longer support builds without zlib
3882     # So we force a "no" to be "auto" here.
3883     # If you REALLY really need no zlib support, you can still disable
3884     # it by doing the following:
3885     #   add "no-zlib" to mkspecs/qconfig.pri
3886     #   #define QT_NO_COMPRESS (probably by adding to src/corelib/global/qconfig.h)
3887     #
3888     # There's no guarantee that Qt will build under those conditions
3889
3890     CFG_ZLIB=auto
3891     ZLIB_FORCED=yes
3892 fi
3893 if [ "$CFG_ZLIB" = "auto" ]; then
3894     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/zlib "zlib" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
3895        CFG_ZLIB=system
3896     else
3897        CFG_ZLIB=yes
3898     fi
3899 fi
3900
3901 if [ "$CFG_LARGEFILE" = "auto" ]; then
3902     #Large files should be enabled for all Linux systems
3903     CFG_LARGEFILE=yes
3904 fi
3905
3906 if [ "$CFG_GUI" = "no" ]; then
3907     QPA_PLATFORM_GUARD=no
3908 fi
3909
3910 # detect how jpeg should be built
3911 if [ "$CFG_JPEG" = "auto" ]; then
3912     if [ "$CFG_SHARED" = "yes" ]; then
3913         CFG_JPEG=plugin
3914     else
3915         CFG_JPEG=yes
3916     fi
3917 fi
3918 # detect jpeg
3919 if [ "$CFG_LIBJPEG" = "auto" ]; then
3920     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/libjpeg "libjpeg" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
3921        CFG_LIBJPEG=system
3922     else
3923        CFG_LIBJPEG=qt
3924     fi
3925 fi
3926
3927 # detect how gif should be built
3928 if [ "$CFG_GIF" = "auto" ]; then
3929     if [ "$CFG_SHARED" = "yes" ]; then
3930         CFG_GIF=plugin
3931     else
3932         CFG_GIF=yes
3933     fi
3934 fi
3935
3936 # detect png
3937 if [ "$CFG_LIBPNG" = "auto" ]; then
3938     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/libpng "libpng" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
3939        CFG_LIBPNG=system
3940     else
3941        CFG_LIBPNG=qt
3942     fi
3943 fi
3944
3945 # detect accessibility
3946 if [ "$CFG_ACCESSIBILITY" = "auto" ]; then
3947     CFG_ACCESSIBILITY=yes
3948 fi
3949
3950 if [ "$CFG_EGLFS" = "yes" ]; then
3951     if [ "$CFG_EGL" = "no" ]; then
3952         echo "The EGLFS plugin requires EGL support and cannot be built"
3953         exit 101
3954     fi
3955     if [ "$CFG_OPENGL" != "es2" ]; then
3956         echo "The EGLFS plugin requires OpenGL ES 2 support and cannot be built"
3957         exit 101
3958     fi
3959     CFG_OPENGL="es2"
3960     CFG_EGL=yes
3961 fi
3962
3963 # auto-detect SQL-modules support
3964 for _SQLDR in $CFG_SQL_AVAILABLE; do
3965         case $_SQLDR in
3966         mysql)
3967             if [ "$CFG_SQL_mysql" != "no" ]; then
3968                 [ -z "$CFG_MYSQL_CONFIG" ] && CFG_MYSQL_CONFIG=`"$WHICH" mysql_config`
3969                 if [ -x "$CFG_MYSQL_CONFIG" ]; then
3970                     QT_CFLAGS_MYSQL=`$CFG_MYSQL_CONFIG --include 2>/dev/null`
3971                     QT_LFLAGS_MYSQL_R=`$CFG_MYSQL_CONFIG --libs_r 2>/dev/null`
3972                     QT_LFLAGS_MYSQL=`$CFG_MYSQL_CONFIG --libs 2>/dev/null`
3973                     QT_MYSQL_VERSION=`$CFG_MYSQL_CONFIG --version 2>/dev/null`
3974                     QT_MYSQL_VERSION_MAJOR=`echo $QT_MYSQL_VERSION | cut -d . -f 1`
3975                 fi
3976                 if [ -n "$QT_MYSQL_VERSION" ] && [ "$QT_MYSQL_VERSION_MAJOR" -lt 4 ]; then
3977                     if [ "$CFG_SQL_mysql" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
3978                         echo "This version of MySql is not supported ($QT_MYSQL_VERSION)."
3979                         echo " You need MySql 4 or higher."
3980                         echo " If you believe this message is in error you may use the continue"
3981                         echo " switch (-continue) to $0 to continue."
3982                         exit 101
3983                     else
3984                         CFG_SQL_mysql="no"
3985                         QT_LFLAGS_MYSQL=""
3986                         QT_LFLAGS_MYSQL_R=""
3987                         QT_CFLAGS_MYSQL=""
3988                     fi
3989                 else
3990                     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/mysql_r "MySQL (thread-safe)" $QT_LFLAGS_MYSQL_R $L_FLAGS $QT_CFLAGS_MYSQL $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
3991                         QMakeVar add CONFIG use_libmysqlclient_r
3992                         if [ "$CFG_SQL_mysql" = "auto" ]; then
3993                             CFG_SQL_mysql=plugin
3994                         fi
3995                         QT_LFLAGS_MYSQL="$QT_LFLAGS_MYSQL_R"
3996                     elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/mysql "MySQL (thread-unsafe)" $QT_LFLAGS_MYSQL $L_FLAGS $QT_CFLAGS_MYSQL $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
3997                         if [ "$CFG_SQL_mysql" = "auto" ]; then
3998                             CFG_SQL_mysql=plugin
3999                         fi
4000                     else
4001                         if [ "$CFG_SQL_mysql" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4002                             echo "MySQL support cannot be enabled due to functionality tests!"
4003                             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4004                             echo " If you believe this message is in error you may use the continue"
4005                             echo " switch (-continue) to $0 to continue."
4006                             exit 101
4007                         else
4008                             CFG_SQL_mysql=no
4009                             QT_LFLAGS_MYSQL=""
4010                             QT_LFLAGS_MYSQL_R=""
4011                             QT_CFLAGS_MYSQL=""
4012                         fi
4013                     fi
4014                 fi
4015             fi
4016             ;;
4017         psql)
4018             if [ "$CFG_SQL_psql" != "no" ]; then
4019                 # Be careful not to use native pg_config when cross building.
4020                 if [ "$XPLATFORM_MINGW" != "yes" ] && "$WHICH" pg_config >/dev/null 2>&1; then
4021                     QT_CFLAGS_PSQL=`pg_config --includedir 2>/dev/null`
4022                     QT_LFLAGS_PSQL=`pg_config --libdir 2>/dev/null`
4023                 fi
4024                 [ -z "$QT_CFLAGS_PSQL" ] || QT_CFLAGS_PSQL="-I$QT_CFLAGS_PSQL"
4025                 [ -z "$QT_LFLAGS_PSQL" ] || QT_LFLAGS_PSQL="-L$QT_LFLAGS_PSQL"
4026                 # But, respect PSQL_LIBS if set
4027                 [ -z "$PSQL_LIBS" ] || QT_LFLAGS_PSQL="$PSQL_LIBS"
4028                 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/psql "PostgreSQL" $QT_LFLAGS_PSQL $L_FLAGS $QT_CFLAGS_PSQL $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4029                     if [ "$CFG_SQL_psql" = "auto" ]; then
4030                         CFG_SQL_psql=plugin
4031                     fi
4032                 else
4033                     if [ "$CFG_SQL_psql" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4034                         echo "PostgreSQL support cannot be enabled due to functionality tests!"
4035                         echo " Turn on verbose messaging (-v) to $0 to see the final report."
4036                         echo " If you believe this message is in error you may use the continue"
4037                         echo " switch (-continue) to $0 to continue."
4038                         exit 101
4039                     else
4040                         CFG_SQL_psql=no
4041                         QT_CFLAGS_PSQL=""
4042                         QT_LFLAGS_PSQL=""
4043                     fi
4044                 fi
4045             fi
4046         ;;
4047         odbc)
4048             if [ "$CFG_SQL_odbc" != "no" ]; then
4049                 if ( [ "$BUILD_ON_MAC" != "yes" ] || [ "$XPLATFORM_MINGW" = "yes" ] ) && "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/odbc "ODBC" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4050                     if [ "$CFG_SQL_odbc" = "auto" ]; then
4051                         CFG_SQL_odbc=plugin
4052                     fi
4053                 else
4054                     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/iodbc "iODBC" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4055                         QT_LFLAGS_ODBC="-liodbc"
4056                         if [ "$CFG_SQL_odbc" = "auto" ]; then
4057                             CFG_SQL_odbc=plugin
4058                         fi
4059                     else
4060                         if [ "$CFG_SQL_odbc" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4061                             echo "ODBC 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."
4065                             exit 101
4066                         else
4067                             CFG_SQL_odbc=no
4068                         fi
4069                     fi
4070                 fi
4071             fi
4072             ;;
4073         oci)
4074             if [ "$CFG_SQL_oci" != "no" ]; then
4075                 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/oci "OCI" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4076                     if [ "$CFG_SQL_oci" = "auto" ]; then
4077                         CFG_SQL_oci=plugin
4078                     fi
4079                 else
4080                     if [ "$CFG_SQL_oci" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4081                         echo "Oracle (OCI) support cannot be enabled due to functionality tests!"
4082                         echo " Turn on verbose messaging (-v) to $0 to see the final report."
4083                         echo " If you believe this message is in error you may use the continue"
4084                         echo " switch (-continue) to $0 to continue."
4085                         exit 101
4086                     else
4087                         CFG_SQL_oci=no
4088                     fi
4089                 fi
4090             fi
4091             ;;
4092         tds)
4093             if [ "$CFG_SQL_tds" != "no" ]; then
4094                 [ -z "$SYBASE" ] || QT_LFLAGS_TDS="-L$SYBASE/lib"
4095                 [ -z "$SYBASE_LIBS" ] || QT_LFLAGS_TDS="$QT_LFLAGS_TDS $SYBASE_LIBS"
4096                 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/tds "TDS" $QT_LFLAGS_TDS $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4097                     if [ "$CFG_SQL_tds" = "auto" ]; then
4098                         CFG_SQL_tds=plugin
4099                     fi
4100                 else
4101                     if [ "$CFG_SQL_tds" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4102                         echo "TDS support cannot be enabled due to functionality tests!"
4103                         echo " Turn on verbose messaging (-v) to $0 to see the final report."
4104                         echo " If you believe this message is in error you may use the continue"
4105                         echo " switch (-continue) to $0 to continue."
4106                         exit 101
4107                     else
4108                         CFG_SQL_tds=no
4109                     fi
4110                 fi
4111             fi
4112             ;;
4113         db2)
4114             if [ "$CFG_SQL_db2" != "no" ]; then
4115                 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/db2 "DB2" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4116                     if [ "$CFG_SQL_db2" = "auto" ]; then
4117                         CFG_SQL_db2=plugin
4118                     fi
4119                 else
4120                     if [ "$CFG_SQL_db2" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4121                         echo "ODBC support cannot be enabled due to functionality tests!"
4122                         echo " Turn on verbose messaging (-v) to $0 to see the final report."
4123                         echo " If you believe this message is in error you may use the continue"
4124                         echo " switch (-continue) to $0 to continue."
4125                         exit 101
4126                     else
4127                         CFG_SQL_db2=no
4128                     fi
4129                 fi
4130             fi
4131             ;;
4132         ibase)
4133             if [ "$CFG_SQL_ibase" != "no" ]; then
4134                 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/ibase "InterBase" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4135                     if [ "$CFG_SQL_ibase" = "auto" ]; then
4136                         CFG_SQL_ibase=plugin
4137                     fi
4138                 else
4139                     if [ "$CFG_SQL_ibase" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4140                         echo "InterBase 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."
4144                         exit 101
4145                     else
4146                         CFG_SQL_ibase=no
4147                     fi
4148                 fi
4149             fi
4150             ;;
4151         sqlite2)
4152             if [ "$CFG_SQL_sqlite2" != "no" ]; then
4153                 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/sqlite2 "SQLite2" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4154                     if [ "$CFG_SQL_sqlite2" = "auto" ]; then
4155                         CFG_SQL_sqlite2=plugin
4156                     fi
4157                 else
4158                     if [ "$CFG_SQL_sqlite2" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4159                         echo "SQLite2 support cannot be enabled due to functionality tests!"
4160                         echo " Turn on verbose messaging (-v) to $0 to see the final report."
4161                         echo " If you believe this message is in error you may use the continue"
4162                         echo " switch (-continue) to $0 to continue."
4163                         exit 101
4164                     else
4165                         CFG_SQL_sqlite2=no
4166                     fi
4167                 fi
4168             fi
4169             ;;
4170         sqlite)
4171             if [ "$CFG_SQL_sqlite" != "no" ]; then
4172                 SQLITE_AUTODETECT_FAILED="no"
4173                 if [ "$CFG_SQLITE" = "system" ]; then
4174                     if [ -n "$PKG_CONFIG" ]; then
4175                         QT_CFLAGS_SQLITE=`$PKG_CONFIG --cflags sqlite3 2>/dev/null`
4176                         QT_LFLAGS_SQLITE=`$PKG_CONFIG --libs sqlite3 2>/dev/null`
4177                     fi
4178                     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/sqlite "SQLite" $QT_LFLAGS_SQLITE $L_FLAGS $QT_CFLAGS_SQLITE $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4179                         if [ "$CFG_SQL_sqlite" = "auto" ]; then
4180                             CFG_SQL_sqlite=plugin
4181                         fi
4182                         QMAKE_CONFIG="$QMAKE_CONFIG system-sqlite"
4183                     else
4184                         SQLITE_AUTODETECT_FAILED="yes"
4185                         CFG_SQL_sqlite=no
4186                     fi
4187                 elif [ -f "$relpath/src/3rdparty/sqlite/sqlite3.h" ]; then
4188                     if [ "$CFG_SQL_sqlite" = "auto" ]; then
4189                             CFG_SQL_sqlite=plugin
4190                     fi
4191                 else
4192                     SQLITE_AUTODETECT_FAILED="yes"
4193                     CFG_SQL_sqlite=no
4194                 fi
4195
4196                 if [ "$SQLITE_AUTODETECT_FAILED" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4197                     echo "SQLite support cannot be enabled due to functionality tests!"
4198                     echo " Turn on verbose messaging (-v) to $0 to see the final report."
4199                     echo " If you believe this message is in error you may use the continue"
4200                     echo " switch (-continue) to $0 to continue."
4201                     exit 101
4202                 fi
4203             fi
4204             ;;
4205         *)
4206             if [ "$OPT_VERBOSE" = "yes" ]; then
4207                 echo "unknown SQL driver: $_SQLDR"
4208             fi
4209             ;;
4210         esac
4211 done
4212
4213 # auto-detect NIS support
4214 if [ "$CFG_NIS" != "no" ]; then
4215     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/nis "NIS" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4216         CFG_NIS=yes
4217     else
4218         if [ "$CFG_NIS" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4219             echo "NIS support cannot be enabled due to functionality tests!"
4220             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4221             echo " If you believe this message is in error you may use the continue"
4222             echo " switch (-continue) to $0 to continue."
4223             exit 101
4224         else
4225             CFG_NIS=no
4226         fi
4227     fi
4228 fi
4229
4230 # auto-detect CUPS support
4231 if [ "$CFG_CUPS" != "no" ]; then
4232     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/cups "Cups" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4233         CFG_CUPS=yes
4234     else
4235         if [ "$CFG_CUPS" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4236             echo "Cups support cannot be enabled due to functionality tests!"
4237             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4238             echo " If you believe this message is in error you may use the continue"
4239             echo " switch (-continue) to $0 to continue."
4240             exit 101
4241         else
4242             CFG_CUPS=no
4243         fi
4244     fi
4245 fi
4246
4247 # auto-detect iconv(3) support
4248 if [ "$CFG_ICONV" != "no" ]; then
4249     if [ "$XPLATFORM_MINGW" = "yes" ]; then
4250         CFG_ICONV=no
4251     elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" "$OPT_VERBOSE" "$relpath" "$outpath" "config.tests/unix/iconv" "POSIX iconv" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4252         CFG_ICONV=yes
4253     elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" "$OPT_VERBOSE" "$relpath" "$outpath" "config.tests/unix/sun-libiconv" "SUN libiconv" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4254         CFG_ICONV=sun
4255     elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" "$OPT_VERBOSE" "$relpath" "$outpath" "config.tests/unix/gnu-libiconv" "GNU libiconv" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4256         CFG_ICONV=gnu
4257     else
4258         if [ "$CFG_ICONV" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4259             echo "Iconv 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."
4263             exit 101
4264         else
4265             CFG_ICONV=no
4266         fi
4267     fi
4268 fi
4269
4270 # auto-detect libdbus-1 support
4271 if [ "$CFG_DBUS" != "no" ]; then
4272     if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --atleast-version="$MIN_DBUS_1_VERSION" dbus-1 2>/dev/null; then
4273         QT_CFLAGS_DBUS=`$PKG_CONFIG --cflags dbus-1 2>/dev/null`
4274         QT_LIBS_DBUS=`$PKG_CONFIG --libs dbus-1 2>/dev/null`
4275     fi
4276     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/dbus "D-Bus" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QT_CFLAGS_DBUS $QT_LIBS_DBUS $MAC_CONFIG_TEST_COMMANDLINE; then
4277         [ "$CFG_DBUS" = "auto" ] && CFG_DBUS=yes
4278         QMakeVar set QT_CFLAGS_DBUS "$QT_CFLAGS_DBUS"
4279         QMakeVar set QT_LIBS_DBUS "$QT_LIBS_DBUS"
4280     else
4281         if [ "$CFG_DBUS" = "auto" ]; then
4282             CFG_DBUS=no
4283         elif [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4284             # CFG_DBUS is "yes" or "linked" here
4285
4286             echo "The QtDBus module cannot be enabled because libdbus-1 version $MIN_DBUS_1_VERSION was not found."
4287             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4288             echo " If you believe this message is in error you may use the continue"
4289             echo " switch (-continue) to $0 to continue."
4290             exit 101
4291         fi
4292     fi
4293 fi
4294
4295 # auto-detect Glib support
4296 if [ "$CFG_GLIB" != "no" ]; then
4297     if [ -n "$PKG_CONFIG" ]; then
4298         QT_CFLAGS_GLIB=`$PKG_CONFIG --cflags glib-2.0 gthread-2.0 2>/dev/null`
4299         QT_LIBS_GLIB=`$PKG_CONFIG --libs glib-2.0 gthread-2.0 2>/dev/null`
4300     fi
4301     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/glib "Glib" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QT_CFLAGS_GLIB $QT_LIBS_GLIB; then
4302         CFG_GLIB=yes
4303         QMakeVar set QT_CFLAGS_GLIB "$QT_CFLAGS_GLIB"
4304         QMakeVar set QT_LIBS_GLIB "$QT_LIBS_GLIB"
4305     else
4306         if [ "$CFG_GLIB" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4307             echo "Glib support cannot be enabled due to functionality tests!"
4308             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4309             echo " If you believe this message is in error you may use the continue"
4310             echo " switch (-continue) to $0 to continue."
4311             exit 101
4312         else
4313             CFG_GLIB=no
4314         fi
4315     fi
4316 fi
4317
4318 # auto-detect GTK style support
4319 if [ "$CFG_GLIB" = "yes" -a "$CFG_QGTKSTYLE" != "no" ]; then
4320     if [ -n "$PKG_CONFIG" ]; then
4321         QT_CFLAGS_QGTKSTYLE=`$PKG_CONFIG --cflags gtk+-2.0 ">=" 2.10 atk 2>/dev/null`
4322         QT_LIBS_QGTKSTYLE=`$PKG_CONFIG --libs gobject-2.0 2>/dev/null`
4323     fi
4324     if [ -n "$QT_CFLAGS_QGTKSTYLE" ] ; then
4325         CFG_QGTKSTYLE=yes
4326         QT_CONFIG="$QT_CONFIG gtkstyle"
4327         QMakeVar set QT_CFLAGS_QGTKSTYLE "$QT_CFLAGS_QGTKSTYLE"
4328         QMakeVar set QT_LIBS_QGTKSTYLE "$QT_LIBS_QGTKSTYLE"
4329     else
4330         if [ "$CFG_QGTKSTYLE" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4331             echo "Gtk theme support cannot be enabled due to functionality tests!"
4332             echo " Turn on verbose messaging (-v) to $0 to see the fin  al report."
4333             echo " If you believe this message is in error you may use the continue"
4334             echo " switch (-continue) to $0 to continue."
4335             exit 101
4336         else
4337             CFG_QGTKSTYLE=no
4338         fi
4339     fi
4340 elif [ "$CFG_GLIB" = "no" ]; then
4341     CFG_QGTKSTYLE=no
4342 fi
4343
4344 # ### Vestige
4345 if [ "$CFG_GLIB" = "yes" -a "$CFG_GSTREAMER" != "no" ]; then
4346     if [ -n "$PKG_CONFIG" ]; then
4347         QT_CFLAGS_GSTREAMER=`$PKG_CONFIG --cflags gstreamer-0.10 gstreamer-plugins-base-0.10 2>/dev/null`
4348         QT_LIBS_GSTREAMER=`$PKG_CONFIG --libs gstreamer-0.10 gstreamer-plugins-base-0.10 2>/dev/null`
4349     fi
4350     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/gstreamer "GStreamer" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QT_CFLAGS_GSTREAMER $QT_LIBS_GSTREAMER; then
4351         CFG_GSTREAMER=yes
4352         QMakeVar set QT_CFLAGS_GSTREAMER "$QT_CFLAGS_GSTREAMER"
4353         QMakeVar set QT_LIBS_GSTREAMER "$QT_LIBS_GSTREAMER"
4354     else
4355         if [ "$CFG_GSTREAMER" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4356             echo "Gstreamer support cannot be enabled due to functionality tests!"
4357             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4358             echo " If you believe this message is in error you may use the continue"
4359             echo " switch (-continue) to $0 to continue."
4360             exit 101
4361         else
4362             CFG_GSTREAMER=no
4363         fi
4364     fi
4365 elif [ "$CFG_GLIB" = "no" ]; then
4366     CFG_GSTREAMER=no
4367 fi
4368
4369 # auto-detect libicu support
4370 if [ "$CFG_ICU" != "no" ]; then
4371     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/icu "ICU" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4372         [ "$CFG_ICU" = "auto" ] && CFG_ICU=yes
4373     else
4374         if [ "$CFG_ICU" = "auto" ]; then
4375             CFG_ICU=no
4376         elif [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4377             # CFG_ICU is "yes"
4378
4379             echo "The ICU library support cannot be enabled."
4380             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4381             echo " If you believe this message is in error you may use the continue"
4382             echo " switch (-continue) to $0 to continue."
4383             exit 101
4384         fi
4385     fi
4386 fi
4387
4388 # Auto-detect PulseAudio support
4389 if [ "$CFG_PULSEAUDIO" != "no" ]; then
4390     if [ -n "$PKG_CONFIG" ]; then
4391         QT_CFLAGS_PULSEAUDIO=`$PKG_CONFIG --cflags libpulse '>=' 0.9.10 libpulse-mainloop-glib 2>/dev/null`
4392         QT_LIBS_PULSEAUDIO=`$PKG_CONFIG --libs libpulse '>=' 0.9.10 libpulse-mainloop-glib 2>/dev/null`
4393     fi
4394     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/pulseaudio "PulseAudio" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QT_CFLAGS_PULSEAUDIO $QT_LIBS_PULSEAUDIO; then
4395         CFG_PULSEAUDIO=yes
4396         QMakeVar set QT_CFLAGS_PULSEAUDIO "$QT_CFLAGS_PULSEAUDIO"
4397         QMakeVar set QT_LIBS_PULSEAUDIO "$QT_LIBS_PULSEAUDIO"
4398     else
4399         if [ "$CFG_PULSEAUDIO" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4400             echo "PulseAudio support cannot be enabled due to functionality tests!"
4401             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4402             echo " If you believe this message is in error you may use the continue"
4403             echo " switch (-continue) to $0 to continue."
4404             exit 101
4405         else
4406             CFG_PULSEAUDIO=no
4407         fi
4408     fi
4409 fi
4410
4411 # X11/MINGW OpenGL
4412 if [ "$XPLATFORM_MINGW" = "yes" ]; then
4413     # auto-detect OpenGL support (es2 = OpenGL ES 2.x)
4414     if [ "$CFG_GUI" = "no" ]; then
4415         if [ "$CFG_OPENGL" = "auto" ]; then
4416             CFG_OPENGL=no
4417         fi
4418         if [ "$CFG_OPENGL" != "no" ]; then
4419             echo "OpenGL enabled, but GUI disabled."
4420             echo " You might need to either enable the GUI or disable OpenGL"
4421             exit 1
4422         fi
4423     fi
4424     if [ "$CFG_OPENGL" = "auto" ] || [ "$CFG_OPENGL" = "yes" ]; then
4425         if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/opengl "OpenGL" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4426             CFG_OPENGL=desktop
4427         elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles2 "OpenGL ES 2.x" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4428             CFG_OPENGL=es2
4429         else
4430             if [ "$CFG_OPENGL" = "yes" ]; then
4431                 echo "All the OpenGL functionality tests failed!"
4432                 echo " You might need to modify the include and library search paths by editing"
4433                 echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in"
4434                 echo " ${XQMAKESPEC}."
4435                 exit 1
4436             fi
4437             CFG_OPENGL=no
4438         fi
4439         case "$PLATFORM" in
4440         hpux*)
4441             # HP-UX have buggy glx headers; check if we really need to define the GLXFBConfig struct.
4442             if [ "$CFG_OPENGL" = "desktop" ]; then
4443                 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/glxfbconfig "OpenGL" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS
4444                 if [ $? != "0" ]; then
4445                     QMakeVar add DEFINES QT_DEFINE_GLXFBCONFIG_STRUCT
4446                 fi
4447             fi
4448             ;;
4449         *)
4450             ;;
4451         esac
4452     elif [ "$CFG_OPENGL" = "es2" ]; then
4453         #OpenGL ES 2.x
4454         "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles2 "OpenGL ES 2.x" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS
4455         if [ $? != "0" ]; then
4456             echo "The OpenGL ES 2.0 functionality test failed!"
4457             echo " You might need to modify the include and library search paths by editing"
4458             echo " QMAKE_INCDIR_OPENGL_ES2, QMAKE_LIBDIR_OPENGL_ES2 and QMAKE_LIBS_OPENGL_ES2 in"
4459             echo " ${XQMAKESPEC}."
4460             exit 1
4461         fi
4462     elif [ "$CFG_OPENGL" = "desktop" ]; then
4463         # Desktop OpenGL support
4464         "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/opengl "OpenGL" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS
4465         if [ $? != "0" ]; then
4466             echo "The OpenGL functionality test failed!"
4467             echo " You might need to modify the include and library search paths by editing"
4468             echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in"
4469             echo " ${XQMAKESPEC}."
4470             exit 1
4471         fi
4472         case "$PLATFORM" in
4473         hpux*)
4474             # HP-UX have buggy glx headers; check if we really need to define the GLXFBConfig struct.
4475             "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/glxfbconfig "OpenGL" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS
4476             if [ $? != "0" ]; then
4477                 QMakeVar add DEFINES QT_DEFINE_GLXFBCONFIG_STRUCT
4478             fi
4479             ;;
4480         *)
4481             ;;
4482         esac
4483     fi
4484 fi # X11/MINGW OpenGL
4485
4486 if [ "$BUILD_ON_MAC" = "yes" ]; then
4487     if [ "$CFG_PHONON" != "no" ]; then
4488         # Always enable Phonon (unless it was explicitly disabled)
4489         CFG_PHONON=yes
4490     fi
4491
4492     if [ "$CFG_COREWLAN" = "auto" ]; then
4493         if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/mac/corewlan "CoreWlan" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4494             CFG_COREWLAN=yes
4495         else
4496             CFG_COREWLAN=no
4497         fi
4498     fi
4499 fi
4500
4501 # auto-detect OpenGL support (es2 = OpenGL ES 2.x)
4502 if [ "$CFG_OPENGL" = "auto" ] || [ "$CFG_OPENGL" = "yes" ]; then
4503     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengldesktop "OpenGL" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4504         CFG_OPENGL=desktop
4505     elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles2 "OpenGL ES 2.x" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4506         CFG_OPENGL=es2
4507     else
4508         if [ "$CFG_OPENGL" = "yes" ]; then
4509             echo "All the OpenGL functionality tests failed!"
4510             echo " You might need to modify the include and library search paths by editing"
4511             echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in"
4512             echo " ${XQMAKESPEC}."
4513             exit 1
4514         fi
4515         CFG_OPENGL=no
4516     fi
4517 elif [ "$CFG_OPENGL" = "es2" ]; then
4518     #OpenGL ES 2.x
4519     if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists glesv2 2>/dev/null; then
4520         QMAKE_INCDIR_OPENGL_ES2=`$PKG_CONFIG --cflags-only-I glesv2 2>/dev/null | sed -e 's,^-I,,g' -e 's, -I, ,g'`
4521         QMAKE_LIBDIR_OPENGL_ES2=`$PKG_CONFIG --libs-only-L glesv2 2>/dev/null | sed -e 's,^-L,,g' -e 's, -L, ,g'`
4522         QMAKE_LIBS_OPENGL_ES2=`$PKG_CONFIG --libs glesv2 2>/dev/null`
4523         QMAKE_CFLAGS_OPENGL_ES2=`$PKG_CONFIG --cflags glesv2 2>/dev/null`
4524         QMakeVar set QMAKE_INCDIR_OPENGL_ES2 "$QMAKE_INCDIR_OPENGL_ES2"
4525         QMakeVar set QMAKE_LIBDIR_OPENGL_ES2 "$QMAKE_LIBDIR_OPENGL_ES2"
4526         QMakeVar set QMAKE_LIBS_OPENGL_ES2 "$QMAKE_LIBS_OPENGL_ES2"
4527     fi
4528
4529     "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles2 "OpenGL ES 2.x" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QMAKE_LIBS_OPENGL_ES2 $QMAKE_CFLAGS_OPENGL_ES2
4530     if [ $? != "0" ]; then
4531         echo "The OpenGL ES 2.0 functionality test failed!"
4532         echo " You might need to modify the include and library search paths by editing"
4533         echo " QMAKE_INCDIR_OPENGL_ES2, QMAKE_LIBDIR_OPENGL_ES2 and QMAKE_LIBS_OPENGL_ES2 in"
4534         echo " ${XQMAKESPEC}."
4535         exit 1
4536     fi
4537 elif [ "$CFG_OPENGL" = "desktop" ]; then
4538     # Desktop OpenGL support
4539     "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengldesktop "OpenGL" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS
4540     if [ $? != "0" ]; then
4541         echo "The OpenGL functionality test failed!"
4542         echo " You might need to modify the include and library search paths by editing"
4543         echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in"
4544         echo " ${XQMAKESPEC}."
4545         exit 1
4546     fi
4547 fi
4548
4549 # auto-detect FontConfig support
4550 if [ "$CFG_FONTCONFIG" != "no" ]; then
4551     if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists fontconfig --exists freetype2 2>/dev/null; then
4552         QT_CFLAGS_FONTCONFIG=`$PKG_CONFIG --cflags fontconfig --cflags freetype2 2>/dev/null`
4553         QT_LIBS_FONTCONFIG=`$PKG_CONFIG --libs fontconfig --libs freetype2 2>/dev/null`
4554     else
4555         QT_CFLAGS_FONTCONFIG=
4556         QT_LIBS_FONTCONFIG="-lfreetype -lfontconfig"
4557     fi
4558     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/fontconfig "FontConfig" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QT_CFLAGS_FONTCONFIG $QT_LIBS_FONTCONFIG; then
4559         QT_CONFIG="$QT_CONFIG fontconfig"
4560         QMakeVar set QMAKE_CFLAGS_FONTCONFIG "$QT_CFLAGS_FONTCONFIG"
4561         QMakeVar set QMAKE_LIBS_FONTCONFIG "$QT_LIBS_FONTCONFIG"
4562         CFG_FONTCONFIG=yes
4563         CFG_LIBFREETYPE=system
4564     else
4565         CFG_FONTCONFIG=no
4566     fi
4567
4568 fi
4569
4570 # Save these for a check later
4571 ORIG_CFG_XCB="$CFG_XCB"
4572 ORIG_CFG_EGLFS="$CFG_EGLFS"
4573 ORIG_CFG_DIRECTFB="$CFG_DIRECTFB"
4574
4575 if [ "$CFG_LIBUDEV" != "no" ]; then
4576     if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists libudev 2>/dev/null; then
4577         QMAKE_INCDIR_LIBUDEV=`$PKG_CONFIG --cflags-only-I libudev 2>/dev/null | sed -e 's,^-I,,g' -e 's, -I, ,g'`
4578         QMAKE_LIBS_LIBUDEV=`$PKG_CONFIG --libs libudev 2>/dev/null`
4579         QMakeVar set QMAKE_INCDIR_LIBUDEV "$QMAKE_INCDIR_LIBUDEV"
4580         QMakeVar set QMAKE_LIBS_LIBUDEV "$QMAKE_LIBS_LIBUDEV"
4581     fi
4582     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/libudev "libudev" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QMAKE_INCDIR_LIBUDEV $QMAKE_LIBS_LIBUDEV; then
4583         CFG_LIBUDEV=yes
4584         QT_CONFIG="$QT_CONFIG libudev"
4585     elif [ "$CFG_LIBUDEV" = "yes" ]; then
4586         echo "The libudev functionality test failed!"
4587         exit 1
4588     else
4589         CFG_LIBUDEV=no
4590         QMakeVar add DEFINES QT_NO_LIBUDEV
4591     fi
4592 fi
4593
4594 if [ "$CFG_EVDEV" != "no" ]; then
4595     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/evdev "evdev" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4596         CFG_EVDEV=yes
4597         QT_CONFIG="$QT_CONFIG evdev"
4598     elif [ "$CFG_EVDEV" = "yes" ]; then
4599         echo "The evdev functionality test failed!"
4600         exit 1
4601     else
4602         CFG_EVDEV=no
4603         QMakeVar add DEFINES QT_NO_EVDEV
4604     fi
4605 fi
4606
4607 # Check we actually have X11 :-)
4608 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xlib "XLib" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4609     QT_CONFIG="$QT_CONFIG xlib"
4610 fi
4611
4612 # auto-detect Xrender support
4613 if [ "$CFG_XRENDER" != "no" ]; then
4614     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xrender "Xrender" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4615         CFG_XRENDER=yes
4616         QT_CONFIG="$QT_CONFIG xrender"
4617     else
4618         if [ "$CFG_XRENDER" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4619             echo "Xrender support cannot be enabled due to functionality tests!"
4620             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4621             echo " If you believe this message is in error you may use the continue"
4622             echo " switch (-continue) to $0 to continue."
4623             exit 101
4624         else
4625             CFG_XRENDER=no
4626         fi
4627     fi
4628 fi
4629
4630 if [ "$CFG_XCB" != "no" ]; then
4631     if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists "xcb >= 1.5" 2>/dev/null; then
4632         QMAKE_CFLAGS_XCB="`$PKG_CONFIG --cflags xcb 2>/dev/null`"
4633         QMAKE_LIBS_XCB="`$PKG_CONFIG --libs xcb 2>/dev/null`"
4634     fi
4635     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/qpa/xcb "xcb" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QMAKE_CFLAGS_XCB $QMAKE_LIBS_XCB; then
4636         CFG_XCB=yes
4637         if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/qpa/xcb-render "xcb-render" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QMAKE_CFLAGS_XCB $QMAKE_LIBS_XCB; then
4638             QT_CONFIG="$QT_CONFIG xcb-render"
4639         fi
4640
4641         if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/qpa/xcb-poll-for-queued-event "xcb-poll-for-queued-event" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QMAKE_CFLAGS_XCB $QMAKE_LIBS_XCB; then
4642             CFG_XCB_LIMITED=no
4643             QT_CONFIG="$QT_CONFIG xcb-poll-for-queued-event"
4644         fi
4645
4646         if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/qpa/xcb-xlib "xcb-xlib" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QMAKE_CFLAGS_XCB $QMAKE_LIBS_XCB; then
4647             QT_CONFIG="$QT_CONFIG xcb-xlib"
4648         fi
4649
4650         if [ "$XPLATFORM_MAEMO" = "yes" ]; then
4651             # auto-detect XInput2/Xinput support
4652             if [ "$CFG_XINPUT2" != "no" ]; then
4653                 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xinput2 "XInput2" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4654                     CFG_XINPUT2=yes
4655                     CFG_XINPUT=no
4656                 else
4657                     if [ "$CFG_XINPUT2" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4658                         echo "XInput2 support cannot be enabled due to functionality tests!"
4659                         echo " Turn on verbose messaging (-v) to $0 to see the final report."
4660                         echo " If you believe this message is in error you may use the continue"
4661                         echo " switch (-continue) to $0 to continue."
4662                         exit 101
4663                     else
4664                         CFG_XINPUT2=no
4665                     fi
4666                 fi
4667             fi
4668         fi
4669     else
4670         if [ "$CFG_XCB" = "yes" ]; then
4671             echo "The XCB test failed!"
4672             echo " You might need to install dependency packages."
4673             echo " See src/plugins/platforms/xcb/README."
4674             exit 1
4675         fi
4676         CFG_XCB=no
4677         QMakeVar add DEFINES QT_NO_XCB
4678     fi
4679 fi
4680
4681 if [ "$CFG_DIRECTFB" != "no" ]; then
4682     if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists directfb 2>/dev/null; then
4683         QMAKE_CFLAGS_DIRECTFB=`$PKG_CONFIG --cflags directfb 2>/dev/null`
4684         QMAKE_LIBS_DIRECTFB=`$PKG_CONFIG --libs directfb 2>/dev/null`
4685         if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/directfb" "DirectFB" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QMAKE_CFLAGS_DIRECTFB $QMAKE_LIBS_DIRECTFB; then
4686             CFG_DIRECTFB=yes
4687         elif [ "$CFG_DIRECTFB" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4688             echo " DirectFB support cannot be enabled due to functionality tests!"
4689             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4690             echo " If you believe this message is in error you may use the continue"
4691             echo " switch (-continue) to $0 to continue."
4692             exit 101
4693         else
4694             CFG_DIRECTFB=no
4695         fi
4696     else
4697         CFG_DIRECTFB=no
4698     fi
4699 fi
4700
4701 # Detect libxkbcommon
4702 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists xkbcommon 2>/dev/null; then
4703     QMAKE_CFLAGS_XKBCOMMON="`$PKG_CONFIG --cflags xkbcommon 2>/dev/null`"
4704     QMAKE_LIBS_XKBCOMMON="`$PKG_CONFIG --libs xkbcommon 2>/dev/null`"
4705     QMAKE_CFLAGS_XCB="$QMAKE_CFLAGS_XCB $QMAKE_CFLAGS_XKBCOMMON"
4706     QMAKE_LIBS_XCB="$QMAKE_LIBS_XCB $QMAKE_LIBS_XKBCOMMON"
4707 else
4708     QMAKE_DEFINES_XCB=QT_NO_XCB_XKB
4709 fi
4710
4711 # EGL Support
4712 if [ "$CFG_EGL" != "no" ] && [ "$CFG_OPENGL" != "desktop" ]; then
4713     if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists egl 2>/dev/null; then
4714         QMAKE_INCDIR_EGL=`$PKG_CONFIG --cflags-only-I egl 2>/dev/null | sed -e 's,^-I,,g' -e 's, -I, ,g'`
4715         QMAKE_LIBS_EGL=`$PKG_CONFIG --libs egl 2>/dev/null`
4716         QMAKE_CFLAGS_EGL=`$PKG_CONFIG --cflags egl 2>/dev/null`
4717         QMakeVar set QMAKE_INCDIR_EGL "$QMAKE_INCDIR_EGL"
4718         QMakeVar set QMAKE_LIBS_EGL "$QMAKE_LIBS_EGL"
4719     fi       # detect EGL support
4720     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/qpa/egl" "EGL" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $QMAKE_CFLAGS_EGL $QMAKE_LIBS_EGL; then
4721         CFG_EGL=yes
4722     elif [ "$CFG_EGL" = "yes" ]; then
4723         echo " The EGL functionality test failed; EGL is required by some QPA plugins to manage contexts & surfaces."
4724         echo " You might need to modify the include and library search paths by editing"
4725         echo " QMAKE_INCDIR_EGL, QMAKE_LIBDIR_EGL and QMAKE_LIBS_EGL in ${XQMAKESPEC}."
4726         exit 1
4727     else
4728         CFG_EGL=no
4729     fi
4730 elif [ "$CFG_OPENGL" = "desktop" ]; then
4731     if [ "$CFG_EGL" = "yes" ]; then
4732         echo "EGL support was requested but Qt is being configured for desktop OpenGL."
4733         echo "Either disable EGL support or enable OpenGL ES support."
4734         exit 101
4735     fi
4736     CFG_EGL=no
4737 fi
4738
4739 if [ "$CFG_EGLFS" != "no" ]; then
4740     if [ "$CFG_OPENGL" = "es2" ] && [ "$CFG_EVDEV" = "yes" ]; then
4741         CFG_EGLFS="$CFG_EGL"
4742     else
4743         CFG_EGLFS="no"
4744     fi
4745 fi
4746
4747 # Determine the default QPA platform
4748 if [ -z "$QT_QPA_DEFAULT_PLATFORM" ]; then
4749     # check the mkspec
4750     QT_QPA_DEFAULT_PLATFORM=`getXQMakeConf QT_QPA_DEFAULT_PLATFORM`
4751     if [ -z "$QT_QPA_DEFAULT_PLATFORM" ]; then
4752         if [ "$XPLATFORM_MINGW" = "yes" ]; then
4753             QT_QPA_DEFAULT_PLATFORM="windows"
4754         elif [ "$BUILD_ON_MAC" = "yes" ]; then
4755             QT_QPA_DEFAULT_PLATFORM="cocoa"
4756         elif [ "$UNAME_SYSTEM" = "QNX" ]; then
4757             QT_QPA_DEFAULT_PLATFORM="qnx"
4758         else
4759             QT_QPA_DEFAULT_PLATFORM="xcb"
4760         fi
4761     fi
4762 fi
4763
4764 if [ -n "$QMAKE_CFLAGS_XCB" ] || [ -n "$QMAKE_LIBS_XCB" ]; then
4765     QMakeVar set QMAKE_CFLAGS_XCB "$QMAKE_CFLAGS_XCB"
4766     QMakeVar set QMAKE_LIBS_XCB "$QMAKE_LIBS_XCB"
4767     QMakeVar set QMAKE_DEFINES_XCB "$QMAKE_DEFINES_XCB"
4768 fi
4769 if [ "$CFG_DIRECTFB" = "yes" ]; then
4770     QT_CONFIG="$QT_CONFIG directfb"
4771     QMakeVar set QMAKE_CFLAGS_DIRECTFB "$QMAKE_CFLAGS_DIRECTFB"
4772     QMakeVar set QMAKE_LIBS_DIRECTFB "$QMAKE_LIBS_DIRECTFB"
4773 fi
4774
4775 if [ "$BUILD_ON_MAC" = "yes" ]; then
4776     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/mac/coreservices "CoreServices" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4777         QT_CONFIG="$QT_CONFIG coreservices"
4778     else
4779         QMakeVar add DEFINES QT_NO_CORESERVICES
4780     fi
4781 fi
4782
4783 if [ "$BUILD_ON_MAC" = "no" ] && [ "$XPLATFORM_MINGW" = "no" ] && [ "$XPLATFORM_QNX" = "no" ]; then
4784     if [ "$CFG_XCB" = "no" ] && [ "$CFG_EGLFS" = "no" ] && [ "$CFG_DIRECTFB" = "no" ]; then
4785         if [ "$QPA_PLATFORM_GUARD" = "yes" ] &&
4786             ( [ "$ORIG_CFG_XCB" = "auto" ] || [ "$ORIG_CFG_EGLFS" = "auto" ] || [ "$ORIG_CFG_DIRECTFB" = "auto" ] ); then
4787         echo "No QPA platform plugin enabled!"
4788         echo " If you really want to build without a QPA platform plugin you must pass"
4789         echo " -no-qpa-platform-guard to configure. Doing this will"
4790         echo " produce a Qt that can not run GUI applications."
4791         echo " The dependencies needed for xcb to build are listed in"
4792         echo " src/plugins/platforms/xcb/README"
4793         exit 1
4794     fi
4795 fi
4796     fi
4797
4798 [ "$XPLATFORM_MINGW" = "yes" ] && [ "$CFG_PHONON" != "no" ] && CFG_PHONON="yes"
4799
4800 # freetype support
4801 [ "$XPLATFORM_MINGW" = "yes" ] && [ "$CFG_LIBFREETYPE" = "auto" ] && CFG_LIBFREETYPE=no
4802 if [ "$CFG_LIBFREETYPE" = "auto" ]; then
4803     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/freetype "FreeType" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4804         CFG_LIBFREETYPE=system
4805     else
4806         CFG_LIBFREETYPE=yes
4807     fi
4808 fi
4809
4810 if ! "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/stl "STL" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS &&
4811     [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4812     echo "STL functionality check failed! Cannot build Qt with this STL library."
4813     echo " Turn on verbose messaging (-v) to $0 to see the final report."
4814     exit 101
4815 fi
4816
4817
4818 # detect POSIX clock_gettime()
4819 if [ "$CFG_CLOCK_GETTIME" = "auto" ]; then
4820     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/clock-gettime "POSIX clock_gettime()" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4821         CFG_CLOCK_GETTIME=yes
4822     else
4823         CFG_CLOCK_GETTIME=no
4824     fi
4825 fi
4826
4827 # detect POSIX monotonic clocks
4828 if [ "$CFG_CLOCK_GETTIME" = "yes" ] && [ "$CFG_CLOCK_MONOTONIC" = "auto" ]; then
4829     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/clock-monotonic "POSIX Monotonic Clock" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4830         CFG_CLOCK_MONOTONIC=yes
4831     else
4832         CFG_CLOCK_MONOTONIC=no
4833     fi
4834 elif [ "$CFG_CLOCK_GETTIME" = "no" ]; then
4835     CFG_CLOCK_MONOTONIC=no
4836 fi
4837
4838 # detect mremap
4839 if [ "$CFG_MREMAP" = "auto" ]; then
4840     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/mremap "mremap" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4841         CFG_MREMAP=yes
4842     else
4843         CFG_MREMAP=no
4844     fi
4845 fi
4846
4847 # find if the platform provides getaddrinfo (ipv6 dns lookups)
4848 if [ "$CFG_GETADDRINFO" != "no" ]; then
4849     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/getaddrinfo "getaddrinfo" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4850         CFG_GETADDRINFO=yes
4851     else
4852         if [ "$CFG_GETADDRINFO" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4853             echo "getaddrinfo support cannot be enabled due to functionality tests!"
4854             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4855             echo " If you believe this message is in error you may use the continue"
4856             echo " switch (-continue) to $0 to continue."
4857             exit 101
4858         else
4859             CFG_GETADDRINFO=no
4860         fi
4861     fi
4862 fi
4863
4864 # find if the platform provides inotify
4865 if [ "$CFG_INOTIFY" != "no" ]; then
4866     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/inotify "inotify" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4867         CFG_INOTIFY=yes
4868     else
4869         if [ "$CFG_INOTIFY" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4870             echo "inotify support cannot be enabled due to functionality tests!"
4871             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4872             echo " If you believe this message is in error you may use the continue"
4873             echo " switch (-continue) to $0 to continue."
4874             exit 101
4875         else
4876             CFG_INOTIFY=no
4877         fi
4878     fi
4879 fi
4880
4881 # find if the platform provides if_nametoindex (ipv6 interface name support)
4882 if [ "$CFG_IPV6IFNAME" != "no" ]; then
4883     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/ipv6ifname "IPv6 interface name" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4884         CFG_IPV6IFNAME=yes
4885     else
4886         if [ "$CFG_IPV6IFNAME" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4887             echo "IPv6 interface name support cannot be enabled due to functionality tests!"
4888             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4889             echo " If you believe this message is in error you may use the continue"
4890             echo " switch (-continue) to $0 to continue."
4891             exit 101
4892         else
4893             CFG_IPV6IFNAME=no
4894         fi
4895     fi
4896 fi
4897
4898 # find if the platform provides getifaddrs (network interface enumeration)
4899 if [ "$CFG_GETIFADDRS" != "no" ]; then
4900     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/getifaddrs "getifaddrs" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4901         CFG_GETIFADDRS=yes
4902     else
4903         if [ "$CFG_GETIFADDRS" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4904             echo "getifaddrs support cannot be enabled due to functionality tests!"
4905             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4906             echo " If you believe this message is in error you may use the continue"
4907             echo " switch (-continue) to $0 to continue."
4908             exit 101
4909         else
4910             CFG_GETIFADDRS=no
4911         fi
4912     fi
4913 fi
4914
4915 # detect OpenSSL
4916 if [ "$CFG_OPENSSL" != "no" ]; then
4917     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/openssl "OpenSSL" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then
4918         if [ "$CFG_OPENSSL" = "auto" ]; then
4919             CFG_OPENSSL=yes
4920         fi
4921     else
4922         if ( [ "$CFG_OPENSSL" = "yes" ] || [ "$CFG_OPENSSL" = "linked" ] ) && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4923             echo "OpenSSL support cannot be enabled due to functionality tests!"
4924             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4925             echo " If you believe this message is in error you may use the continue"
4926             echo " switch (-continue) to $0 to continue."
4927             exit 101
4928         else
4929             CFG_OPENSSL=no
4930         fi
4931     fi
4932 fi
4933
4934 # detect PCRE
4935 if [ "$CFG_PCRE" != "qt" ]; then
4936     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/pcre "PCRE" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4937         CFG_PCRE=system
4938     else
4939         if [ "$CFG_PCRE" = "system" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4940             echo "PCRE support cannot be enabled due to functionality tests!"
4941             echo " Turn on verbose messaging (-v) to $0 to see the final report."
4942             echo " If you believe this message is in error you may use the continue"
4943             echo " switch (-continue) to $0 to continue."
4944             exit 101
4945         else
4946             CFG_PCRE=qt
4947         fi
4948     fi
4949 fi
4950
4951 # detect OpenVG support
4952 if [ "$CFG_OPENVG" != "no" ]; then
4953     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/openvg" "OpenVG" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $CONFIG_ARG; then
4954         if [ "$CFG_OPENVG" = "auto" ]; then
4955             CFG_OPENVG=yes
4956         fi
4957     elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG openvg_on_opengl" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/openvg" "OpenVG" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $CONFIG_ARG; then
4958         if [ "$CFG_OPENVG" = "auto" ]; then
4959             CFG_OPENVG=yes
4960         fi
4961         CFG_OPENVG_ON_OPENGL=yes
4962     elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG lower_case_includes" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/openvg" "OpenVG (lc includes)" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $CONFIG_ARG; then
4963         if [ "$CFG_OPENVG" = "auto" ]; then
4964             CFG_OPENVG=yes
4965         fi
4966         CFG_OPENVG_LC_INCLUDES=yes
4967     elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG openvg_on_opengl lower_case_includes" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/openvg" "OpenVG (lc includes)" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $CONFIG_ARG; then
4968         if [ "$CFG_OPENVG" = "auto" ]; then
4969             CFG_OPENVG=yes
4970         fi
4971         CFG_OPENVG_LC_INCLUDES=yes
4972         CFG_OPENVG_ON_OPENGL=yes
4973     else
4974         if [ "$CFG_OPENVG" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then
4975             echo "$CFG_OPENVG was specified for OpenVG but 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."
4979             exit 101
4980         else
4981             CFG_OPENVG=no
4982         fi
4983     fi
4984     if [ "$CFG_OPENVG" = "yes" ] && "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/shivavg" "ShivaVG" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS $CONFIG_ARG; then
4985         CFG_OPENVG_SHIVA=yes
4986     fi
4987 fi
4988
4989 if [ "$CFG_ALSA" = "auto" ]; then
4990     if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/alsa "alsa" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS; then
4991         CFG_ALSA=yes
4992     else
4993         CFG_ALSA=no
4994     fi
4995 fi
4996
4997 if [ "$CFG_JAVASCRIPTCORE_JIT" = "yes" ] || [ "$CFG_JAVASCRIPTCORE_JIT" = "auto" ]; then 
4998     if [ "$CFG_ARCH" = "arm" ]; then
4999        "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/javascriptcore-jit "javascriptcore-jit" $L_FLAGS $I_FLAGS $D_FLAGS $l_FLAGS
5000         if [ $? != "0" ]; then
5001            CFG_JAVASCRIPTCORE_JIT=no
5002         fi
5003     else
5004         case "$XPLATFORM" in
5005             linux-icc*)
5006                 CFG_JAVASCRIPTCORE_JIT=no
5007                 ;;
5008         esac
5009     fi
5010 fi
5011
5012 if [ "$CFG_JAVASCRIPTCORE_JIT" = "yes" ]; then
5013     QMakeVar set JAVASCRIPTCORE_JIT yes
5014 elif [ "$CFG_JAVASCRIPTCORE_JIT" = "no" ]; then
5015     QMakeVar set JAVASCRIPTCORE_JIT no
5016 fi
5017
5018 if [ "$CFG_AUDIO_BACKEND" = "auto" ]; then
5019     CFG_AUDIO_BACKEND=yes
5020 fi
5021
5022 if [ "$CFG_LARGEFILE" != "yes" ] && [ "$XPLATFORM_MINGW" = "yes" ]; then
5023     echo "Warning: largefile support cannot be disabled for win32."
5024     CFG_LARGEFILE="yes"
5025 fi
5026
5027 #-------------------------------------------------------------------------------
5028 # ask for all that hasn't been auto-detected or specified in the arguments
5029 #-------------------------------------------------------------------------------
5030
5031 [ "$CFG_CXX11" = "yes" ] && QT_CONFIG="$QT_CONFIG c++11"
5032
5033 # ### Vestige
5034 if [ "$CFG_PHONON_BACKEND" = "yes" ]; then
5035     QT_CONFIG="$QT_CONFIG phonon-backend"
5036 fi
5037
5038 # disable accessibility
5039 if [ "$CFG_ACCESSIBILITY" = "no" ]; then
5040     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ACCESSIBILITY"
5041 else
5042     QT_CONFIG="$QT_CONFIG accessibility"
5043 fi
5044
5045 # enable egl
5046 if [ "$CFG_EGL" = "yes" ]; then
5047     QT_CONFIG="$QT_CONFIG egl"
5048 else
5049     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_EGL"
5050 fi
5051
5052 # enable eglfs
5053 if [ "$CFG_EGLFS" = "yes" ]; then
5054     QT_CONFIG="$QT_CONFIG eglfs"
5055 else
5056     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_EGLFS"
5057 fi
5058
5059 # enable openvg
5060 if [ "$CFG_OPENVG" = "no" ]; then
5061     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENVG"
5062 else
5063     QT_CONFIG="$QT_CONFIG openvg"
5064     if [ "$CFG_OPENVG_LC_INCLUDES" = "yes" ]; then
5065         QCONFIG_FLAGS="$QCONFIG_FLAGS QT_LOWER_CASE_VG_INCLUDES"
5066     fi
5067     if [ "$CFG_OPENVG_ON_OPENGL" = "yes" ]; then
5068         QT_CONFIG="$QT_CONFIG openvg_on_opengl"
5069     fi
5070     if [ "$CFG_OPENVG_SHIVA" = "yes" ]; then
5071         QT_CONFIG="$QT_CONFIG shivavg"
5072         QCONFIG_FLAGS="$QCONFIG_FLAGS QT_SHIVAVG"
5073     fi
5074 fi
5075
5076 # enable opengl
5077 if [ "$CFG_OPENGL" = "no" ]; then
5078     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENGL"
5079 else
5080     QT_CONFIG="$QT_CONFIG opengl"
5081 fi
5082
5083 if [ "$CFG_OPENGL" = "es2" ]; then
5084     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_OPENGL_ES"
5085 fi
5086
5087 if [ "$CFG_OPENGL" = "es2" ]; then
5088     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_OPENGL_ES_2"
5089     QT_CONFIG="$QT_CONFIG opengles2"
5090 fi
5091
5092 # safe execution environment
5093 if [ "$CFG_SXE" != "no" ]; then
5094     QT_CONFIG="$QT_CONFIG sxe"
5095 fi
5096
5097 # build up the variables for output
5098 if [ "$CFG_DEBUG" = "yes" ]; then
5099     QMAKE_OUTDIR="${QMAKE_OUTDIR}debug"
5100     QMAKE_CONFIG="$QMAKE_CONFIG debug"
5101 elif [ "$CFG_DEBUG" = "no" ]; then
5102     QMAKE_OUTDIR="${QMAKE_OUTDIR}release"
5103     QMAKE_CONFIG="$QMAKE_CONFIG release"
5104 fi
5105 if [ "$CFG_SHARED" = "yes" ]; then
5106     QMAKE_OUTDIR="${QMAKE_OUTDIR}-shared"
5107     QMAKE_CONFIG="$QMAKE_CONFIG shared dll"
5108 elif [ "$CFG_SHARED" = "no" ]; then
5109     QMAKE_OUTDIR="${QMAKE_OUTDIR}-static"
5110     QMAKE_CONFIG="$QMAKE_CONFIG static"
5111 fi
5112
5113 #FIXME: qpa is implicit this should all be removed
5114 QMAKE_CONFIG="$QMAKE_CONFIG qpa"
5115 QT_CONFIG="$QT_CONFIG qpa"
5116 QTCONFIG_CONFIG="$QTCONFIG_CONFIG qpa"
5117 rm -f "src/.moc/$QMAKE_OUTDIR/allmoc.cpp" # needs remaking if config changes
5118
5119 if [ "$XPLATFORM_MINGW" != "yes" ]; then
5120     # Do not set this here for Windows. Let qmake do it so
5121     # debug and release precompiled headers are kept separate.
5122     QMakeVar set PRECOMPILED_DIR ".pch/$QMAKE_OUTDIR"
5123 fi
5124 QMakeVar set OBJECTS_DIR ".obj/$QMAKE_OUTDIR"
5125 QMakeVar set MOC_DIR ".moc/$QMAKE_OUTDIR"
5126 QMakeVar set RCC_DIR ".rcc/$QMAKE_OUTDIR"
5127 QMakeVar set UI_DIR ".uic/$QMAKE_OUTDIR"
5128 if [ "$CFG_LARGEFILE" = "yes" ] && [ "$XPLATFORM_MINGW" != "yes" ]; then
5129     QMAKE_CONFIG="$QMAKE_CONFIG largefile"
5130 fi
5131 if [ "$CFG_USE_GNUMAKE" = "yes" ]; then
5132     QMAKE_CONFIG="$QMAKE_CONFIG GNUmake"
5133 fi
5134 [ "$CFG_REDUCE_EXPORTS" = "yes" ] && QT_CONFIG="$QT_CONFIG reduce_exports"
5135 [ "$CFG_REDUCE_RELOCATIONS" = "yes" ] && QT_CONFIG="$QT_CONFIG reduce_relocations"
5136 [ "$CFG_PRECOMPILE" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG precompile_header"
5137 if [ "$CFG_SEPARATE_DEBUG_INFO" = "yes" ]; then
5138     QMakeVar add QMAKE_CFLAGS -g
5139     QMakeVar add QMAKE_CXXFLAGS -g
5140     QT_CONFIG="$QT_CONFIG separate_debug_info"
5141 fi
5142 if [ "$CFG_SEPARATE_DEBUG_INFO_NOCOPY" = "yes" ] ; then
5143     QT_CONFIG="$QT_CONFIG separate_debug_info_nocopy"
5144 fi
5145 [ "$CFG_SSE2" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG sse2"
5146 [ "$CFG_SSE3" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG sse3"
5147 [ "$CFG_SSSE3" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG ssse3"
5148 [ "$CFG_SSE4_1" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG sse4_1"
5149 [ "$CFG_SSE4_2" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG sse4_2"
5150 [ "$CFG_AVX" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG avx"
5151 [ "$CFG_AVX2" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG avx2"
5152 [ "$CFG_IWMMXT" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG iwmmxt"
5153 [ "$CFG_NEON" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG neon"
5154 if [ "$CFG_ARCH" = "mips" ]; then
5155     [ "$CFG_MIPS_DSP" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG mips_dsp"
5156     [ "$CFG_MIPS_DSPR2" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG mips_dspr2"
5157 fi
5158 if [ "$CFG_CLOCK_GETTIME" = "yes" ]; then
5159     QT_CONFIG="$QT_CONFIG clock-gettime"
5160 fi
5161 if [ "$CFG_CLOCK_MONOTONIC" = "yes" ]; then
5162     QT_CONFIG="$QT_CONFIG clock-monotonic"
5163 fi
5164 if [ "$CFG_MREMAP" = "yes" ]; then
5165     QT_CONFIG="$QT_CONFIG mremap"
5166 fi
5167 if [ "$CFG_GETADDRINFO" = "yes" ]; then
5168     QT_CONFIG="$QT_CONFIG getaddrinfo"
5169 fi
5170 if [ "$CFG_IPV6IFNAME" = "yes" ]; then
5171     QT_CONFIG="$QT_CONFIG ipv6ifname"
5172 fi
5173 if [ "$CFG_GETIFADDRS" = "yes" ]; then
5174     QT_CONFIG="$QT_CONFIG getifaddrs"
5175 fi
5176 if [ "$CFG_INOTIFY" = "yes" ]; then
5177     QT_CONFIG="$QT_CONFIG inotify"
5178 fi
5179 if [ "$CFG_LIBJPEG" = "no" ]; then
5180     CFG_JPEG="no"
5181 elif [ "$CFG_LIBJPEG" = "system" ]; then
5182     QT_CONFIG="$QT_CONFIG system-jpeg"
5183 fi
5184 if [ "$CFG_JPEG" = "no" ]; then
5185     QT_CONFIG="$QT_CONFIG no-jpeg"
5186 elif [ "$CFG_JPEG" = "yes" ]; then
5187     QT_CONFIG="$QT_CONFIG jpeg"
5188 fi
5189 if [ "$CFG_LIBPNG" = "no" ]; then
5190     CFG_PNG="no"
5191 fi
5192 if [ "$CFG_LIBPNG" = "system" ]; then
5193     QT_CONFIG="$QT_CONFIG system-png"
5194 fi
5195 if [ "$CFG_PNG" = "no" ]; then
5196     QT_CONFIG="$QT_CONFIG no-png"
5197 elif [ "$CFG_PNG" = "yes" ]; then
5198     QT_CONFIG="$QT_CONFIG png"
5199 fi
5200 if [ "$CFG_GIF" = "no" ]; then
5201     QT_CONFIG="$QT_CONFIG no-gif"
5202 elif [ "$CFG_GIF" = "yes" ]; then
5203     QT_CONFIG="$QT_CONFIG gif"
5204 fi
5205 if [ "$CFG_LIBFREETYPE" = "no" ]; then
5206     QT_CONFIG="$QT_CONFIG no-freetype"
5207     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_FREETYPE"
5208 elif [ "$CFG_LIBFREETYPE" = "system" ]; then
5209     QT_CONFIG="$QT_CONFIG system-freetype"
5210 else
5211     QT_CONFIG="$QT_CONFIG freetype"
5212 fi
5213 if [ "$CFG_GUI" = "auto" ]; then
5214     CFG_GUI="yes"
5215 fi
5216 if [ "$CFG_GUI" = "no" ]; then
5217     QT_CONFIG="$QT_CONFIG no-gui"
5218     CFG_WIDGETS="no"
5219 fi
5220 if [ "$CFG_WIDGETS" = "no" ]; then
5221     QT_CONFIG="$QT_CONFIG no-widgets"
5222     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_WIDGETS"
5223 fi
5224
5225 if [ "x$BUILD_ON_MAC" = "xyes" ] && [ "$XPLATFORM_MINGW" != "yes" ]; then
5226     #On Mac we implicitly link against libz, so we
5227     #never use the 3rdparty stuff.
5228     [ "$CFG_ZLIB" = "yes" ] && CFG_ZLIB="system"
5229 fi
5230 if [ "$CFG_ZLIB" = "yes" ]; then
5231     QT_CONFIG="$QT_CONFIG zlib"
5232 elif [ "$CFG_ZLIB" = "system" ]; then
5233     QT_CONFIG="$QT_CONFIG system-zlib"
5234 fi
5235
5236 [ "$CFG_NIS" = "yes" ] && QT_CONFIG="$QT_CONFIG nis"
5237 [ "$CFG_CUPS" = "yes" ] && QT_CONFIG="$QT_CONFIG cups"
5238 [ "$CFG_ICONV" = "yes" ] && QT_CONFIG="$QT_CONFIG iconv"
5239 [ "$CFG_ICONV" = "sun" ] && QT_CONFIG="$QT_CONFIG sun-libiconv"
5240 [ "$CFG_ICONV" = "gnu" ] && QT_CONFIG="$QT_CONFIG gnu-libiconv"
5241 [ "$CFG_GLIB" = "yes" ] && QT_CONFIG="$QT_CONFIG glib"
5242 [ "$CFG_GSTREAMER" = "yes" ] && QT_CONFIG="$QT_CONFIG gstreamer"
5243 [ "$CFG_DBUS" = "yes" ] && QT_CONFIG="$QT_CONFIG dbus"
5244 [ "$CFG_DBUS" = "linked" ] && QT_CONFIG="$QT_CONFIG dbus dbus-linked"
5245 [ "$CFG_OPENSSL" = "yes" ] && QT_CONFIG="$QT_CONFIG openssl"
5246 [ "$CFG_OPENSSL" = "linked" ] && QT_CONFIG="$QT_CONFIG openssl-linked"
5247 [ "$CFG_MAC_HARFBUZZ" = "yes" ] && QT_CONFIG="$QT_CONFIG harfbuzz"
5248 [ "$CFG_XCB" = "yes" ] && QT_CONFIG="$QT_CONFIG xcb"
5249 [ "$CFG_XINPUT2" = "yes" ] && QT_CONFIG="$QT_CONFIG xinput2"
5250
5251 [ '!' -z "$DEFINES" ] && QMakeVar add DEFINES "$DEFINES"
5252 [ '!' -z "$L_FLAGS" ] && QMakeVar add QMAKE_LIBDIR_FLAGS "$L_FLAGS"
5253 [ '!' -z "$l_FLAGS" ] && QMakeVar add LIBS "$l_FLAGS"
5254
5255 if [ "$PLATFORM_MAC" = "yes" ] && [ "$QT_CROSS_COMPILE" = "no" ]; then
5256     if [ "$CFG_RPATH" = "yes" ]; then
5257        QMAKE_CONFIG="$QMAKE_CONFIG absolute_library_soname"
5258        # set the default rpath to the library installation directory
5259        RPATH_FLAGS="\"$QT_INSTALL_LIBS\" $RPATH_FLAGS"
5260     fi
5261 elif [ -z "`getXQMakeConf 'QMAKE_(LFLAGS_)?RPATH'`" ]; then
5262     if [ -n "$RPATH_FLAGS" ]; then
5263         echo
5264         echo "ERROR: -R cannot be used on this platform as \$QMAKE_LFLAGS_RPATH is"
5265         echo "       undefined."
5266         echo
5267         exit 1
5268     elif [ "$CFG_RPATH" = "yes" ]; then
5269         RPATH_MESSAGE="        NOTE: This platform does not support runtime library paths, using -no-rpath."
5270         CFG_RPATH=no
5271     fi
5272 else
5273     if [ "$CFG_RPATH" = "yes" ]; then
5274         # set the default rpath to the library installation directory
5275         RPATH_FLAGS="\"$QT_INSTALL_LIBS\" $RPATH_FLAGS"
5276     fi
5277     if [ -n "$RPATH_FLAGS" ]; then
5278         # add the user defined rpaths
5279         QMakeVar add QMAKE_RPATHDIR "$RPATH_FLAGS"
5280     fi
5281 fi
5282
5283 if [ '!' -z "$I_FLAGS" ]; then
5284     # add the user define include paths
5285     QMakeVar add QMAKE_CFLAGS "$I_FLAGS"
5286     QMakeVar add QMAKE_CXXFLAGS "$I_FLAGS"
5287 fi
5288
5289 if [ '!' -z "$W_FLAGS" ]; then
5290     # add the user defined warning flags
5291     QMakeVar add QMAKE_CFLAGS_WARN_ON "$W_FLAGS"
5292     QMakeVar add QMAKE_CXXFLAGS_WARN_ON "$W_FLAGS"
5293     QMakeVar add QMAKE_OBJECTIVE_CFLAGS_WARN_ON "$W_FLAGS"
5294 fi
5295
5296 if [ "$XPLATFORM_MINGW" = "yes" ]; then
5297     # mkspecs/features/win32/default_pre.prf sets "no-rtti".
5298     # Follow default behavior of configure.exe by overriding with "rtti".
5299     QTCONFIG_CONFIG="$QTCONFIG_CONFIG rtti"
5300 fi
5301
5302 if [ "$CFG_ALSA" = "yes" ]; then
5303     QT_CONFIG="$QT_CONFIG alsa"
5304 fi
5305
5306 if [ "$CFG_PULSEAUDIO" = "yes" ]; then
5307     QT_CONFIG="$QT_CONFIG pulseaudio"
5308 fi
5309
5310 if [ "$CFG_COREWLAN" = "yes" ]; then
5311     QT_CONFIG="$QT_CONFIG corewlan"
5312 fi
5313
5314 if [ "$CFG_ICU" = "yes" ]; then
5315     QT_CONFIG="$QT_CONFIG icu"
5316 fi
5317
5318 if [ "$CFG_FORCE_ASSERTS" = "yes" ]; then
5319     QT_CONFIG="$QT_CONFIG force_asserts"
5320 fi
5321
5322 if [ "$CFG_PCRE" = "qt" ]; then
5323     QMAKE_CONFIG="$QMAKE_CONFIG pcre"
5324 fi
5325
5326 #
5327 # Some Qt modules are too advanced in C++ for some old compilers
5328 # Detect here the platforms where they are known to work.
5329 #
5330 # See Qt documentation for more information on which features are
5331 # supported and on which compilers.
5332 #
5333 canBuildQtConcurrent="yes"
5334 canUseV8Snapshot="yes"
5335
5336 case "$XPLATFORM" in
5337     hpux-g++*)
5338         # PA-RISC's assembly is too limited
5339         # gcc 3.4 on that platform can't build QtXmlPatterns
5340         # the assembly it generates cannot be compiled
5341
5342         # Check gcc's version
5343         case "$(${QMAKE_CONF_COMPILER} -dumpversion)" in
5344             4*)
5345                 ;;
5346             3.4*)
5347                 canBuildQtXmlPatterns="no"
5348                 ;;
5349             *)
5350                 canBuildWebKit="no"
5351                 canBuildQtXmlPatterns="no"
5352                 ;;
5353         esac
5354         ;;
5355     unsupported/vxworks-*-g++*)
5356         canBuildWebKit="no"
5357         ;;
5358     unsupported/vxworks-*-dcc*)
5359         canBuildWebKit="no"
5360         canBuildQtXmlPatterns="no"
5361         ;;
5362     *-g++*)
5363         # Check gcc's version
5364         case "$(${QMAKE_CONF_COMPILER} -dumpversion)" in
5365             4*|3.4*)
5366                 ;;
5367             3.3*)
5368                 canBuildWebKit="no"
5369                 ;;
5370             *)
5371                 canBuildWebKit="no"
5372                 canBuildQtXmlPatterns="no"
5373                 ;;
5374         esac
5375         ;;
5376     solaris-cc*)
5377         # Check the compiler version
5378         case `${QMAKE_CONF_COMPILER} -V 2>&1 | awk '{print $4}'` in
5379             5.[012345678])
5380                 canBuildWebKit="no"
5381                 canBuildQtXmlPatterns="no"
5382                 canBuildQtConcurrent="no"
5383                 ;;
5384             5.*)
5385                 canBuildWebKit="no"
5386                 canBuildQtConcurrent="no"
5387                 ;;
5388         esac
5389         ;;
5390     hpux-acc*)
5391         canBuildWebKit="no"
5392         canBuildQtXmlPatterns="no"
5393         canBuildQtConcurrent="no"
5394         ;;
5395     hpuxi-acc*)
5396         canBuildWebKit="no"
5397         ;;
5398     aix-xlc*)
5399         # Get the xlC version
5400         cat > xlcver.c <<EOF
5401 #include <stdio.h>
5402 int main()
5403 {
5404     printf("%d.%d\n", __xlC__ >> 8, __xlC__ & 0xFF);
5405     return 0;
5406 }
5407 EOF
5408         xlcver=
5409         if ${QMAKE_CONF_COMPILER} -o xlcver xlcver.c >/dev/null 2>/dev/null; then
5410             xlcver=`./xlcver 2>/dev/null`
5411             rm -f ./xlcver
5412         fi
5413         if [ "$OPT_VERBOSE" = "yes" ]; then
5414             if [ -n "$xlcver" ]; then
5415                 echo Found IBM xlC version: $xlcver.
5416             else
5417                 echo Could not determine IBM xlC version, assuming oldest supported.
5418             fi
5419         fi
5420
5421         case "$xlcver" in
5422             [123456].*)
5423                 canBuildWebKit="no"
5424                 canBuildQtXmlPatterns="no"
5425                 canBuildQtConcurrent="no"
5426                 ;;
5427             *)
5428                 canBuildWebKit="no"
5429                 canBuildQtConcurrent="no"
5430                 ;;
5431         esac
5432         ;;
5433     irix-cc*)
5434         canBuildWebKit="no"
5435         canBuildQtConcurrent="no"
5436         ;;
5437 esac
5438
5439 if [ "$CFG_GUI" = "no" ]; then
5440     # WebKit requires QtGui
5441     canBuildWebKit="no"
5442 fi
5443
5444 if [ "$CFG_SHARED" = "no" ]; then
5445     echo
5446     echo "WARNING: Using static linking will disable the WebKit module."
5447     echo
5448     canBuildWebKit="no"
5449 fi
5450
5451 CFG_CONCURRENT="yes"
5452 if [ "$canBuildQtConcurrent" = "no" ]; then
5453     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CONCURRENT"
5454     CFG_CONCURRENT="no"
5455 else
5456     QT_CONFIG="$QT_CONFIG concurrent"
5457 fi
5458
5459 # ### Vestige
5460 if [ "$CFG_AUDIO_BACKEND" = "yes" ]; then
5461     QT_CONFIG="$QT_CONFIG audio-backend"
5462 fi
5463
5464 # ### Vestige
5465 if [ "$CFG_WEBKIT" = "debug" ]; then
5466     QMAKE_CONFIG="$QMAKE_CONFIG webkit-debug"
5467 fi
5468
5469 # ### Vestige
5470 QT_CONFIG="$QT_CONFIG v8"
5471 # Detect snapshot support
5472 if [ "$CFG_ARCH" != "$CFG_HOST_ARCH" ]; then
5473     case "$CFG_HOST_ARCH,$CFG_ARCH" in
5474         i386,arm)
5475         ;;
5476     *) canUseV8Snapshot="no"
5477         ;;
5478     esac
5479 else
5480     if [ -n "$_SBOX_DIR" -a "$CFG_ARCH" = "arm" ]; then
5481         # QEMU crashes when building inside Scratchbox with an ARM target
5482         canUseV8Snapshot="no"
5483     fi
5484 fi
5485 if [ "$CFG_V8SNAPSHOT" = "auto" ]; then
5486     CFG_V8SNAPSHOT="$canUseV8Snapshot"
5487 fi
5488 if [ "$CFG_V8SNAPSHOT" = "yes" -a "$canUseV8Snapshot" = "no" ]; then
5489     echo "Error: V8 snapshot was requested, but is not supported on this platform."
5490     exit 1
5491 fi
5492 if [ "$CFG_V8SNAPSHOT" = "yes" ]; then
5493     QT_CONFIG="$QT_CONFIG v8snapshot"
5494 fi
5495
5496 # ### Vestige
5497 if [ "$CFG_QML_DEBUG" = "no" ]; then
5498     QCONFIG_FLAGS="$QCONFIG_FLAGS QT_QML_NO_DEBUGGER"
5499 fi
5500
5501 case "$QMAKE_CONF_COMPILER" in
5502 *g++*)
5503     # GNU C++
5504     COMPILER_VERSION=`${QMAKE_CONF_COMPILER} -dumpversion 2>/dev/null`
5505
5506     case "$COMPILER_VERSION" in
5507     *.*.*)
5508         QT_GCC_MAJOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\1,'`
5509         QT_GCC_MINOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\2,'`
5510         QT_GCC_PATCH_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\3,'`
5511         ;;
5512     *.*)
5513         QT_GCC_MAJOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\).*,\1,'`
5514         QT_GCC_MINOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\).*,\2,'`
5515         QT_GCC_PATCH_VERSION=0
5516         ;;
5517     esac
5518
5519     ;;
5520 *)
5521     #
5522     ;;
5523 esac
5524
5525 #-------------------------------------------------------------------------------
5526 # part of configuration information goes into qconfig.h
5527 #-------------------------------------------------------------------------------
5528
5529 case "$CFG_QCONFIG" in
5530 full)
5531     echo "/* Everything */" >"$outpath/src/corelib/global/qconfig.h.new"
5532     ;;
5533 *)
5534     tmpconfig="$outpath/src/corelib/global/qconfig.h.new"
5535     echo "#ifndef QT_BOOTSTRAPPED" >"$tmpconfig"
5536     if [ -f "$relpath/src/corelib/global/qconfig-$CFG_QCONFIG.h" ]; then
5537         cat "$relpath/src/corelib/global/qconfig-$CFG_QCONFIG.h" >>"$tmpconfig"
5538     elif [ -f `"$relpath/config.tests/unix/makeabs" "${CFG_QCONFIG}"` ]; then
5539         cat `"$relpath/config.tests/unix/makeabs" "${CFG_QCONFIG}"` >>"$tmpconfig"
5540     fi
5541     echo "#endif" >>"$tmpconfig"
5542     ;;
5543 esac
5544
5545 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF
5546
5547 /* Qt Edition */
5548 #ifndef QT_EDITION
5549 #  define QT_EDITION $QT_EDITION
5550 #endif
5551 EOF
5552
5553 echo '/* Compile time features */' >>"$outpath/src/corelib/global/qconfig.h.new"
5554 [ '!' -z "$LicenseKeyExt" ] && echo "#define QT_PRODUCT_LICENSEKEY \"$LicenseKeyExt\"" >>"$outpath/src/corelib/global/qconfig.h.new"
5555
5556 if [ "$CFG_LARGEFILE" = "yes" ] && [ "$XPLATFORM_MINGW" != "yes" ]; then
5557     echo "#define QT_LARGEFILE_SUPPORT 64" >>"$outpath/src/corelib/global/qconfig.h.new"
5558 fi
5559
5560 if [ "$CFG_FRAMEWORK" = "yes" ]; then
5561     echo "#define QT_MAC_FRAMEWORK_BUILD" >>"$outpath/src/corelib/global/qconfig.h.new"
5562 fi
5563
5564 if [ "$BUILD_ON_MAC" = "yes" ]; then
5565     cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF
5566 #if defined(__LP64__)
5567 # define QT_POINTER_SIZE 8
5568 #else
5569 # define QT_POINTER_SIZE 4
5570 #endif
5571 EOF
5572 else
5573     "$unixtests/ptrsize.test" "$XQMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath"
5574     echo "#define QT_POINTER_SIZE $?" >>"$outpath/src/corelib/global/qconfig.h.new"
5575 fi
5576
5577 #REDUCE_RELOCATIONS is a elf/unix only thing, so not in windows configure.exe
5578 if [ "$CFG_REDUCE_RELOCATIONS" = "yes" ]; then
5579     echo "#define QT_REDUCE_RELOCATIONS" >>"$outpath/src/corelib/global/qconfig.h.new"
5580 fi
5581
5582
5583 echo "" >>"$outpath/src/corelib/global/qconfig.h.new"
5584
5585 if [ "$CFG_DEV" = "yes" ]; then
5586     echo "#define QT_BUILD_INTERNAL" >>"$outpath/src/corelib/global/qconfig.h.new"
5587 fi
5588
5589 # Add QPA to config.h
5590 QCONFIG_FLAGS="$QCONFIG_FLAGS Q_WS_QPA QT_NO_QWS_QPF QT_NO_QWS_QPF2"
5591
5592 if [ "${CFG_USE_FLOATMATH}" = "yes" ]; then
5593     QCONFIG_FLAGS="${QCONFIG_FLAGS} QT_USE_MATH_H_FLOATS"
5594 fi
5595
5596 # Add turned on SQL drivers
5597 for DRIVER in $CFG_SQL_AVAILABLE; do
5598     eval "VAL=\$CFG_SQL_$DRIVER"
5599     case "$VAL" in
5600     qt)
5601         ONDRIVER=`echo $DRIVER | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
5602         QCONFIG_FLAGS="$QCONFIG_FLAGS QT_SQL_$ONDRIVER"
5603         SQL_DRIVERS="$SQL_DRIVERS $DRIVER"
5604     ;;
5605     plugin)
5606         SQL_PLUGINS="$SQL_PLUGINS $DRIVER"
5607     ;;
5608     esac
5609 done
5610
5611
5612 QMakeVar set sql-drivers "$SQL_DRIVERS"
5613 QMakeVar set sql-plugins "$SQL_PLUGINS"
5614
5615 # Add other configuration options to the qconfig.h file
5616 [ "$CFG_GIF" = "yes" ]       && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_BUILTIN_GIF_READER=1"
5617 [ "$CFG_PNG" != "yes" ]      && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IMAGEFORMAT_PNG"
5618 [ "$CFG_JPEG" != "yes" ]     && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IMAGEFORMAT_JPEG"
5619 [ "$CFG_ZLIB" != "yes" ]     && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ZLIB"
5620 [ "$CFG_SXE" = "no" ]        && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SXE"
5621 [ "$CFG_DBUS" = "no" ]      && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_DBUS"
5622
5623 # X11/Unix/Mac only configs
5624 [ "$CFG_CUPS" = "no" ]       && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CUPS"
5625 [ "$CFG_ICONV" = "no" ]      && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ICONV"
5626 [ "$CFG_GLIB" != "yes" ]     && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GLIB"
5627 [ "$CFG_GSTREAMER" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GSTREAMER"
5628 [ "$CFG_QGTKSTYLE" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_STYLE_GTK"
5629 [ "$CFG_CLOCK_MONOTONIC" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CLOCK_MONOTONIC"
5630 [ "$CFG_MREMAP" = "no" ]     && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MREMAP"
5631 [ "$CFG_GETADDRINFO" = "no" ]&& QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GETADDRINFO"
5632 [ "$CFG_IPV6IFNAME" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IPV6IFNAME"
5633 [ "$CFG_GETIFADDRS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GETIFADDRS"
5634 [ "$CFG_INOTIFY" = "no" ]    && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_INOTIFY"
5635 [ "$CFG_NIS" = "no" ]        && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_NIS"
5636 [ "$CFG_OPENSSL" = "no" ]    && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENSSL QT_NO_SSL"
5637 [ "$CFG_OPENSSL" = "linked" ]&& QCONFIG_FLAGS="$QCONFIG_FLAGS QT_LINKED_OPENSSL"
5638
5639 [ "$CFG_SM" = "no" ]         && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SESSIONMANAGER"
5640 [ "$CFG_XCURSOR" = "no" ]    && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XCURSOR"
5641 [ "$CFG_XFIXES" = "no" ]     && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XFIXES"
5642 [ "$CFG_FONTCONFIG" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_FONTCONFIG"
5643 [ "$CFG_XINERAMA" = "no" ]   && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XINERAMA"
5644 [ "$CFG_XKB" = "no" ]        && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XKB"
5645 [ "$CFG_XRANDR" = "no" ]     && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XRANDR"
5646 [ "$CFG_XRENDER" = "no" ]    && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XRENDER"
5647 [ "$CFG_MITSHM" = "no" ]    && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MITSHM"
5648 [ "$CFG_XSHAPE" = "no" ]     && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SHAPE"
5649 [ "$CFG_XVIDEO" = "no" ]     && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XVIDEO"
5650 [ "$CFG_XSYNC" = "no" ]     && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XSYNC"
5651 [ "$CFG_XINPUT" = "no" ]     && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XINPUT QT_NO_TABLET"
5652
5653 [ "$CFG_XCURSOR" = "runtime" ]   && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XCURSOR"
5654 [ "$CFG_XINERAMA" = "runtime" ]  && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XINERAMA"
5655 [ "$CFG_XFIXES" = "runtime" ]    && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XFIXES"
5656 [ "$CFG_XRANDR" = "runtime" ]    && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XRANDR"
5657 [ "$CFG_XINPUT" = "runtime" ]    && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XINPUT"
5658 [ "$CFG_ALSA" = "no" ]           && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ALSA"
5659 [ "$CFG_PULSEAUDIO" = "no" ]          && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_PULSEAUDIO"
5660 [ "$CFG_COREWLAN" = "no" ]       && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_COREWLAN"
5661
5662 # sort QCONFIG_FLAGS for neatness if we can
5663 [ '!' -z "$AWK" ] && QCONFIG_FLAGS=`echo $QCONFIG_FLAGS | $AWK '{ gsub(" ", "\n"); print }' | sort | uniq`
5664 QCONFIG_FLAGS=`echo $QCONFIG_FLAGS`
5665
5666 if [ -n "$QCONFIG_FLAGS" ]; then
5667 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5668 #ifndef QT_BOOTSTRAPPED
5669
5670 EOF
5671     for cfg in $QCONFIG_FLAGS; do
5672         cfgd=`echo $cfg | sed 's/=.*$//'` # trim pushed 'Foo=Bar' defines
5673         cfg=`echo $cfg | sed 's/=/ /'`    # turn first '=' into a space
5674         # figure out define logic, so we can output the correct
5675         # ifdefs to override the global defines in a project
5676         cfgdNeg=
5677         if [ true ] && echo "$cfgd" | grep 'QT_NO_' >/dev/null 2>&1; then
5678             # QT_NO_option can be forcefully turned on by QT_option
5679             cfgdNeg=`echo $cfgd | sed "s,QT_NO_,QT_,"`
5680         elif [ true ] && echo "$cfgd" | grep 'QT_' >/dev/null 2>&1; then
5681             # QT_option can be forcefully turned off by QT_NO_option
5682             cfgdNeg=`echo $cfgd | sed "s,QT_,QT_NO_,"`
5683         fi
5684
5685         if [ -z $cfgdNeg ]; then
5686 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5687 #ifndef $cfgd
5688 # define $cfg
5689 #endif
5690
5691 EOF
5692         else
5693 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5694 #if defined($cfgd) && defined($cfgdNeg)
5695 # undef $cfgd
5696 #elif !defined($cfgd) && !defined($cfgdNeg)
5697 # define $cfg
5698 #endif
5699
5700 EOF
5701         fi
5702     done
5703 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5704 #endif // QT_BOOTSTRAPPED
5705
5706 EOF
5707 fi
5708
5709 if [ "$CFG_REDUCE_EXPORTS" = "yes" ]; then
5710 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5711 #define QT_VISIBILITY_AVAILABLE
5712
5713 EOF
5714 fi
5715
5716 if [ -n "$QT_LIBINFIX" ]; then
5717 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF
5718 #define QT_LIBINFIX "$QT_LIBINFIX"
5719
5720 EOF
5721 fi
5722
5723 echo "#define QT_QPA_DEFAULT_PLATFORM_NAME \"$QT_QPA_DEFAULT_PLATFORM\"" >>"$outpath/src/corelib/global/qconfig.h.new"
5724
5725 # avoid unecessary rebuilds by copying only if qconfig.h has changed
5726 if cmp -s "$outpath/src/corelib/global/qconfig.h" "$outpath/src/corelib/global/qconfig.h.new"; then
5727     rm -f "$outpath/src/corelib/global/qconfig.h.new"
5728 else
5729     [ -f "$outpath/src/corelib/global/qconfig.h" ] && chmod +w "$outpath/src/corelib/global/qconfig.h"
5730     mv "$outpath/src/corelib/global/qconfig.h.new" "$outpath/src/corelib/global/qconfig.h"
5731     chmod -w "$outpath/src/corelib/global/qconfig.h"
5732     if [ ! -f "$outpath/include/QtCore/qconfig.h" ]; then
5733         ln -s "$outpath/src/corelib/global/qconfig.h" "$outpath/include/QtCore/qconfig.h"
5734     fi
5735 fi
5736
5737 #-------------------------------------------------------------------------------
5738 # save configuration into qconfig.pri
5739 #-------------------------------------------------------------------------------
5740 QTCONFIG="$outpath/mkspecs/qconfig.pri"
5741 QTCONFIG_CONFIG="$QTCONFIG_CONFIG no_mocdepend"
5742 [ -f "$QTCONFIG.tmp" ] && rm -f "$QTCONFIG.tmp"
5743 if [ "$CFG_DEBUG" = "yes" ]; then
5744     QTCONFIG_CONFIG="$QTCONFIG_CONFIG debug"
5745     if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then
5746         QT_CONFIG="$QT_CONFIG release"
5747     fi
5748     QT_CONFIG="$QT_CONFIG debug"
5749 elif [ "$CFG_DEBUG" = "no" ]; then
5750     QTCONFIG_CONFIG="$QTCONFIG_CONFIG release"
5751     if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then
5752         QT_CONFIG="$QT_CONFIG debug"
5753     fi
5754     QT_CONFIG="$QT_CONFIG release"
5755 fi
5756 if [ "$CFG_FRAMEWORK" = "no" ]; then
5757     QTCONFIG_CONFIG="$QTCONFIG_CONFIG qt_no_framework"
5758 else
5759     QT_CONFIG="$QT_CONFIG qt_framework"
5760     QTCONFIG_CONFIG="$QTCONFIG_CONFIG qt_framework"
5761 fi
5762 if [ "$CFG_DEV" = "yes" ]; then
5763     QT_CONFIG="$QT_CONFIG private_tests"
5764 fi
5765
5766 cat >>"$QTCONFIG.tmp" <<EOF
5767 #configuration
5768 CONFIG += $QTCONFIG_CONFIG
5769 QT_ARCH = $CFG_ARCH
5770 QT_HOST_ARCH = $CFG_HOST_ARCH
5771 QT_CPU_FEATURES = $CFG_CPUFEATURES
5772 QT_HOST_CPU_FEATURES = $CFG_HOST_CPUFEATURES
5773 QT_EDITION = $Edition
5774 QT_CONFIG += $QT_CONFIG
5775
5776 #versioning
5777 QT_VERSION = $QT_VERSION
5778 QT_MAJOR_VERSION = $QT_MAJOR_VERSION
5779 QT_MINOR_VERSION = $QT_MINOR_VERSION
5780 QT_PATCH_VERSION = $QT_PATCH_VERSION
5781
5782 #namespaces
5783 QT_LIBINFIX = $QT_LIBINFIX
5784 QT_NAMESPACE = $QT_NAMESPACE
5785
5786 EOF
5787
5788 if [ -n "$PKG_CONFIG_SYSROOT_DIR" ] || [ -n "$PKG_CONFIG_LIBDIR" ]; then
5789     echo "# pkgconfig" >> "$QTCONFIG.tmp"
5790     echo "PKG_CONFIG_SYSROOT_DIR = $PKG_CONFIG_SYSROOT_DIR" >> "$QTCONFIG.tmp"
5791     echo "PKG_CONFIG_LIBDIR = $PKG_CONFIG_LIBDIR" >> "$QTCONFIG.tmp"
5792     echo >> "$QTCONFIG.tmp"
5793 fi
5794
5795 if [ -n "$CFG_SYSROOT" ]; then
5796     echo "# sysroot" >>"$QTCONFIG.tmp"
5797     echo `basename "$XQMAKESPEC"` \{ >>"$QTCONFIG.tmp"
5798     echo "    QMAKE_CFLAGS    += --sysroot=\$\$[QT_SYSROOT]" >>"$QTCONFIG.tmp"
5799     echo "    QMAKE_CXXFLAGS  += --sysroot=\$\$[QT_SYSROOT]" >>"$QTCONFIG.tmp"
5800     echo "    QMAKE_LFLAGS    += --sysroot=\$\$[QT_SYSROOT]" >>"$QTCONFIG.tmp"
5801     echo "}" >> "$QTCONFIG.tmp"
5802     echo >> "$QTCONFIG.tmp"
5803 fi
5804 if [ -n "$RPATH_FLAGS" ]; then
5805     echo "QMAKE_RPATHDIR += $RPATH_FLAGS" >> "$QTCONFIG.tmp"
5806 fi
5807 if [ -n "$QT_GCC_MAJOR_VERSION" ]; then
5808     echo "QT_GCC_MAJOR_VERSION = $QT_GCC_MAJOR_VERSION" >> "$QTCONFIG.tmp"
5809     echo "QT_GCC_MINOR_VERSION = $QT_GCC_MINOR_VERSION" >> "$QTCONFIG.tmp"
5810     echo "QT_GCC_PATCH_VERSION = $QT_GCC_PATCH_VERSION" >> "$QTCONFIG.tmp"
5811 fi
5812
5813 if [ -n "$QMAKE_INCDIR_OPENGL_ES2" ]; then
5814     echo "#Qt opengl include path" >> "$QTCONFIG.tmp"
5815     echo "QMAKE_INCDIR_OPENGL_ES2 = \"$QMAKE_INCDIR_OPENGL_ES2\"" >> "$QTCONFIG.tmp"
5816 fi
5817
5818 # replace qconfig.pri if it differs from the newly created temp file
5819 if cmp -s "$QTCONFIG.tmp" "$QTCONFIG"; then
5820     rm -f "$QTCONFIG.tmp"
5821 else
5822     mv -f "$QTCONFIG.tmp" "$QTCONFIG"
5823 fi
5824
5825 #-------------------------------------------------------------------------------
5826 # save configuration into qmodule.pri
5827 #-------------------------------------------------------------------------------
5828 QTMODULE="$outpath/mkspecs/qmodule.pri"
5829
5830 echo "CONFIG += $QMAKE_CONFIG create_prl link_prl" >> "$QTMODULE.tmp"
5831
5832 # Ensure we can link to uninistalled libraries
5833 if [ "$BUILD_ON_MAC" != "yes" ] && [ "$XPLATFORM_MINGW" != "yes" ] && linkerSupportsFlag -rpath-link "$outpath/lib"; then
5834     echo "QMAKE_LFLAGS    = -Wl,-rpath-link,\$\$QT_BUILD_TREE/lib \$\$QMAKE_LFLAGS" >> "$QTMODULE.tmp"
5835 fi
5836 if [ -n "$QT_CFLAGS_PSQL" ]; then
5837     echo "QT_CFLAGS_PSQL   = $QT_CFLAGS_PSQL" >> "$QTMODULE.tmp"
5838 fi
5839 if [ -n "$QT_LFLAGS_PSQL" ]; then
5840     echo "QT_LFLAGS_PSQL   = $QT_LFLAGS_PSQL" >> "$QTMODULE.tmp"
5841 fi
5842 if [ -n "$QT_CFLAGS_MYSQL" ]; then
5843     echo "QT_CFLAGS_MYSQL   = $QT_CFLAGS_MYSQL" >> "$QTMODULE.tmp"
5844 fi
5845 if [ -n "$QT_LFLAGS_MYSQL" ]; then
5846     echo "QT_LFLAGS_MYSQL   = $QT_LFLAGS_MYSQL" >> "$QTMODULE.tmp"
5847 fi
5848 if [ -n "$QT_CFLAGS_SQLITE" ]; then
5849     echo "QT_CFLAGS_SQLITE   = $QT_CFLAGS_SQLITE" >> "$QTMODULE.tmp"
5850 fi
5851 if [ -n "$QT_LFLAGS_SQLITE" ]; then
5852     echo "QT_LFLAGS_SQLITE   = $QT_LFLAGS_SQLITE" >> "$QTMODULE.tmp"
5853 fi
5854 if [ -n "$QT_LFLAGS_ODBC" ]; then
5855     echo "QT_LFLAGS_ODBC   = $QT_LFLAGS_ODBC" >> "$QTMODULE.tmp"
5856 fi
5857 if [ -n "$QT_LFLAGS_TDS" ]; then
5858     echo "QT_LFLAGS_TDS   = $QT_LFLAGS_TDS" >> "$QTMODULE.tmp"
5859 fi
5860
5861 if [ "$QT_EDITION" != "QT_EDITION_OPENSOURCE" ]; then
5862     echo "DEFINES *= QT_EDITION=QT_EDITION_DESKTOP" >> "$QTMODULE.tmp"
5863 fi
5864
5865 #dump in the OPENSSL_LIBS info
5866 if [ '!' -z "$OPENSSL_LIBS" ]; then
5867     echo "OPENSSL_LIBS = $OPENSSL_LIBS" >> "$QTMODULE.tmp"
5868 elif [ "$CFG_OPENSSL" = "linked" ]; then
5869     echo "OPENSSL_LIBS = -lssl -lcrypto" >> "$QTMODULE.tmp"
5870 fi
5871
5872 #dump in the SDK info
5873 if [ '!' -z "$CFG_SDK" ]; then
5874    echo "QMAKE_MAC_SDK = $CFG_SDK" >> "$QTMODULE.tmp"
5875 fi
5876
5877 # cmdline args
5878 cat "$QMAKE_VARS_FILE" >> "$QTMODULE.tmp"
5879 rm -f "$QMAKE_VARS_FILE" 2>/dev/null
5880
5881 # replace qmodule.pri if it differs from the newly created temp file
5882 if cmp -s "$QTMODULE.tmp" "$QTMODULE"; then
5883     rm -f "$QTMODULE.tmp"
5884 else
5885     mv -f "$QTMODULE.tmp" "$QTMODULE"
5886 fi
5887
5888 #-------------------------------------------------------------------------------
5889 # save configuration into .qmake.cache
5890 #-------------------------------------------------------------------------------
5891
5892 CACHEFILE="$outpath/.qmake.cache"
5893 [ -f "$CACHEFILE.tmp" ] && rm -f "$CACHEFILE.tmp"
5894 cat >>"$CACHEFILE.tmp" <<EOF
5895 #paths
5896 QT_SOURCE_TREE = \$\$quote($relpath)
5897 QT_BUILD_TREE = \$\$quote($outpath)
5898 QT_BUILD_PARTS = $CFG_BUILD_PARTS
5899
5900 #local paths that cannot be queried from the QT_INSTALL_* properties while building QTDIR
5901 QMAKE_INCDIR_QT  = \$\$QT_BUILD_TREE/include
5902 QMAKE_LIBDIR_QT  = \$\$QT_BUILD_TREE/lib
5903
5904 include(\$\$PWD/mkspecs/qmodule.pri)
5905 CONFIG += dylib depend_includepath fix_output_dirs no_private_qt_headers_warning QTDIR_build
5906
5907 EOF
5908
5909 #dump the qmake spec
5910 if [ -d "$outpath/mkspecs/$XPLATFORM" ]; then
5911    echo "QMAKESPEC = \$\$QT_BUILD_TREE/mkspecs/$XPLATFORM" >> "$CACHEFILE.tmp"
5912 else
5913    echo "QMAKESPEC = $XPLATFORM" >> "$CACHEFILE.tmp"
5914 fi
5915
5916 # replace .qmake.cache if it differs from the newly created temp file
5917 if cmp -s "$CACHEFILE.tmp" "$CACHEFILE"; then
5918     rm -f "$CACHEFILE.tmp"
5919 else
5920     mv -f "$CACHEFILE.tmp" "$CACHEFILE"
5921 fi
5922
5923 #-------------------------------------------------------------------------------
5924 # give feedback on configuration
5925 #-------------------------------------------------------------------------------
5926 exec 3>&1 1>$outpath/config.summary # redirect output temporarily to config.summary
5927
5928 echo
5929 if [ "$XPLATFORM" = "$PLATFORM" ]; then
5930     echo "Build type:    $PLATFORM"
5931 else
5932     echo "Building on:   $PLATFORM"
5933     echo "Building for:  $XPLATFORM"
5934 fi
5935
5936 # the missing space before $CFG_FEATURES is intentional
5937 echo "Architecture:  $CFG_ARCH, features:$CFG_CPUFEATURES"
5938 echo "Host architecture: $CFG_HOST_ARCH, features:$CFG_HOST_CPUFEATURES"
5939
5940 if [ -n "$PLATFORM_NOTES" ]; then
5941     echo "Platform notes:"
5942     echo "$PLATFORM_NOTES"
5943 else
5944     echo
5945 fi
5946
5947 if [ "$OPT_VERBOSE" = "yes" ]; then
5948     echo $ECHO_N "qmake vars .......... $ECHO_C"
5949     cat "$QMAKE_VARS_FILE" | tr '\n' ' '
5950     echo "qmake switches ......... $QMAKE_SWITCHES"
5951 fi
5952
5953 echo "Build .................. $CFG_BUILD_PARTS"
5954 echo "Configuration .......... $QMAKE_CONFIG $QT_CONFIG"
5955 if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then
5956    echo "Debug .................. yes (combined)"
5957    if [ "$CFG_DEBUG" = "yes" ]; then
5958        echo "Default Link ........... debug"
5959    else
5960        echo "Default Link ........... release"
5961    fi
5962 else
5963    echo "Debug .................. $CFG_DEBUG"
5964 fi
5965 echo "C++11 support .......... $CFG_CXX11"
5966 if [ -n "$PKG_CONFIG" ]; then
5967     echo "pkg-config ............. yes"
5968 else
5969     echo "pkg-config ............. no"
5970 fi
5971 [ "$CFG_DBUS" = "no" ]     && echo "QtDBus module .......... no"
5972 [ "$CFG_DBUS" = "yes" ]    && echo "QtDBus module .......... yes (run-time)"
5973 [ "$CFG_DBUS" = "linked" ] && echo "QtDBus module .......... yes (linked)"
5974 echo "QtConcurrent code ...... $CFG_CONCURRENT"
5975 echo "QtGui module ........... $CFG_GUI"
5976 echo "QtWidgets module ....... $CFG_WIDGETS"
5977 if [ "$CFG_JAVASCRIPTCORE_JIT" = "auto" ]; then
5978     echo "JavaScriptCore JIT ..... To be decided by JavaScriptCore"
5979 else
5980     echo "JavaScriptCore JIT ..... $CFG_JAVASCRIPTCORE_JIT"
5981 fi
5982 echo "QML debugging .......... $CFG_QML_DEBUG"
5983 echo "PCH support ............ $CFG_PRECOMPILE"
5984 if [ "$CFG_ARCH" = "i386" -o "$CFG_ARCH" = "x86_64" ]; then
5985     echo "SSE2/SSE3/SSSE3......... ${CFG_SSE2}/${CFG_SSE3}/${CFG_SSSE3}"
5986     echo "SSE4.1/SSE4.2........... ${CFG_SSSE3}/${CFG_SSE4_1}/${CFG_SSE4_2}"
5987     echo "AVX/AVX2................ ${CFG_AVX}/${CFG_AVX2}"
5988 elif [ "$CFG_ARCH" = "arm" ]; then
5989     echo "iWMMXt support ......... ${CFG_IWMMXT}"
5990     echo "NEON support ........... ${CFG_NEON}"
5991 fi
5992 if [ "$CFG_ARCH" = "mips" ]; then
5993     echo "MIPS_DSP/MIPS_DSPR2..... ${CFG_MIPS_DSP}/${CFG_MIPS_DSPR2}"
5994 fi
5995 echo "IPv6 ifname support .... $CFG_IPV6IFNAME"
5996 echo "getaddrinfo support .... $CFG_GETADDRINFO"
5997 echo "getifaddrs support ..... $CFG_GETIFADDRS"
5998 echo "Accessibility .......... $CFG_ACCESSIBILITY"
5999 echo "NIS support ............ $CFG_NIS"
6000 echo "CUPS support ........... $CFG_CUPS"
6001 echo "Iconv support .......... $CFG_ICONV"
6002 echo "Glib support ........... $CFG_GLIB"
6003 echo "GStreamer support ...... $CFG_GSTREAMER"
6004 echo "PulseAudio support ..... $CFG_PULSEAUDIO"
6005 echo "Large File support ..... $CFG_LARGEFILE"
6006 echo "GIF support ............ $CFG_GIF"
6007 if [ "$CFG_JPEG" = "no" ]; then
6008     echo "JPEG support ........... $CFG_JPEG"
6009 else
6010     echo "JPEG support ........... $CFG_JPEG ($CFG_LIBJPEG)"
6011 fi
6012 if [ "$CFG_PNG" = "no" ]; then
6013     echo "PNG support ............ $CFG_PNG"
6014 else
6015     echo "PNG support ............ $CFG_PNG ($CFG_LIBPNG)"
6016 fi
6017 echo "zlib support ........... $CFG_ZLIB"
6018 echo "Session management ..... $CFG_SM"
6019 echo "libudev support ........ $CFG_LIBUDEV"
6020
6021 if [ "$CFG_OPENGL" = "desktop" ]; then
6022     echo "OpenGL support ......... yes (Desktop OpenGL)"
6023 elif [ "$CFG_OPENGL" = "es2" ]; then
6024     echo "OpenGL support ......... yes (OpenGL ES 2.x)"
6025 else
6026     echo "OpenGL support ......... no"
6027 fi
6028
6029 if [ "$CFG_OPENVG" ]; then
6030     if [ "$CFG_OPENVG_SHIVA" = "yes" ]; then
6031         echo "OpenVG support ......... ShivaVG"
6032     else
6033         echo "OpenVG support ......... $CFG_OPENVG"
6034     fi
6035 fi
6036
6037 echo "XShape support ......... $CFG_XSHAPE"
6038 echo "XVideo support ......... $CFG_XVIDEO"
6039 echo "XSync support .......... $CFG_XSYNC"
6040 echo "Xinerama support ....... $CFG_XINERAMA"
6041 echo "Xcursor support ........ $CFG_XCURSOR"
6042 echo "Xfixes support ......... $CFG_XFIXES"
6043 echo "Xrandr support ......... $CFG_XRANDR"
6044 echo "Xi support ............. $CFG_XINPUT"
6045 echo "MIT-SHM support ........ $CFG_MITSHM"
6046 echo "FontConfig support ..... $CFG_FONTCONFIG"
6047 echo "XKB Support ............ $CFG_XKB"
6048 echo "immodule support ....... $CFG_IM"
6049 echo "GTK theme support ...... $CFG_QGTKSTYLE"
6050
6051 [ "$CFG_SQL_mysql" != "no" ] && echo "MySQL support .......... $CFG_SQL_mysql"
6052 [ "$CFG_SQL_psql" != "no" ] && echo "PostgreSQL support ..... $CFG_SQL_psql"
6053 [ "$CFG_SQL_odbc" != "no" ] && echo "ODBC support ........... $CFG_SQL_odbc"
6054 [ "$CFG_SQL_oci" != "no" ] && echo "OCI support ............ $CFG_SQL_oci"
6055 [ "$CFG_SQL_tds" != "no" ] && echo "TDS support ............ $CFG_SQL_tds"
6056 [ "$CFG_SQL_db2" != "no" ] && echo "DB2 support ............ $CFG_SQL_db2"
6057 [ "$CFG_SQL_ibase" != "no" ] && echo "InterBase support ...... $CFG_SQL_ibase"
6058 [ "$CFG_SQL_sqlite2" != "no" ] && echo "SQLite 2 support ....... $CFG_SQL_sqlite2"
6059 [ "$CFG_SQL_sqlite" != "no" ] && echo "SQLite support ......... $CFG_SQL_sqlite ($CFG_SQLITE)"
6060
6061 OPENSSL_LINKAGE=""
6062 if [ "$CFG_OPENSSL" = "yes" ]; then
6063     OPENSSL_LINKAGE="(run-time)"
6064 elif [ "$CFG_OPENSSL" = "linked" ]; then
6065     OPENSSL_LINKAGE="(linked)"
6066 fi
6067 echo "OpenSSL support ........ $CFG_OPENSSL $OPENSSL_LINKAGE"
6068 echo "Alsa support ........... $CFG_ALSA"
6069 if [ "$BUILD_ON_MAC" = "yes" ]; then
6070     echo "CoreWlan support ....... $CFG_COREWLAN"
6071 fi
6072 echo "libICU support ......... $CFG_ICU"
6073 echo "PCRE support ........... $CFG_PCRE"
6074 if [ "$CFG_XCB_LIMITED" = "yes" ] && [ "$CFG_XCB" = "yes" ]; then
6075     echo "Xcb support ............ limited (old version)"
6076 else
6077     echo "Xcb support ............ $CFG_XCB"
6078 fi
6079 echo "Xrender support ........ $CFG_XRENDER"
6080 if [ "$XPLATFORM_MAEMO" = "yes" ] && [ "$CFG_XCB" = "yes" ]; then
6081     echo "XInput2 support ........ $CFG_XINPUT2"
6082 fi
6083 echo "EGLFS support .......... $CFG_EGLFS"
6084 echo "DirectFB support ....... $CFG_DIRECTFB"
6085 echo
6086
6087 # complain about not being able to use dynamic plugins if we are using a static build
6088 if [ "$CFG_SHARED" = "no" ]; then
6089     echo
6090     echo "WARNING: Using static linking will disable the use of dynamically"
6091     echo "loaded plugins. Make sure to import all needed static plugins,"
6092     echo "or compile needed modules into the library."
6093     echo
6094 fi
6095 if [ "$CFG_OPENSSL" = "linked" ] && [ "$OPENSSL_LIBS" = "" ]; then
6096     echo
6097     echo "NOTE: When linking against OpenSSL, you can override the default"
6098     echo "library names through OPENSSL_LIBS."
6099     echo "For example:"
6100     echo "    OPENSSL_LIBS='-L/opt/ssl/lib -lssl -lcrypto' ./configure -openssl-linked"
6101     echo
6102 fi
6103
6104 exec 1>&3 3>&- # restore stdout
6105 cat $outpath/config.summary # display config feedback to user
6106
6107 if [ "$BUILD_ON_MAC" = "yes" ] && [ "$CFG_FRAMEWORK" = "yes" ] && [ "$CFG_DEBUG" = "yes" ] && [ "$CFG_DEBUG_RELEASE" = "no" ]; then
6108     echo
6109     echo "Error: debug-only framework builds are not supported. Configure with -no-framework"
6110     echo "if you want a pure debug build."
6111     echo
6112     exit 1
6113 fi
6114
6115 sepath=`echo "$relpath" | sed -e 's/\\./\\\\./g'`
6116 PROCS=1
6117 EXEC=""
6118
6119
6120 #-------------------------------------------------------------------------------
6121 # build makefiles based on the configuration
6122 #-------------------------------------------------------------------------------
6123
6124 echo "Finding project files. Please wait..."
6125 if [ "$CFG_NOPROCESS" != "yes" ]; then
6126     "$outpath/bin/qmake" -prl -r "${relpath}/qtbase.pro"
6127     if [ -f "${relpath}/qtbase.pro" ]; then
6128         mkfile="${outpath}/Makefile"
6129         [ -f "$mkfile" ] && chmod +w "$mkfile"
6130         QTDIR="$outpath" "$outpath/bin/qmake" -spec "$XQMAKESPEC" "${relpath}/qtbase.pro" -o "$mkfile"
6131     fi
6132 fi
6133
6134 # .projects      -> projects to process
6135 # .projects.1    -> qt and moc
6136 # .projects.2    -> subdirs and libs
6137 # .projects.3    -> the rest
6138 rm -f .projects .projects.1 .projects.2 .projects.3
6139
6140 QMAKE_PROJECTS=`find "$relpath/." -name '*.pro' -print | sed 's-/\./-/-'`
6141 if [ -z "$AWK" ]; then
6142     for p in `echo $QMAKE_PROJECTS`; do
6143         echo "$p" >> .projects
6144     done
6145 else
6146     cat >projects.awk <<EOF
6147 BEGIN {
6148     files = 0
6149     target_file = ""
6150     input_file = ""
6151
6152     first = "./.projects.1.tmp"
6153     second = "./.projects.2.tmp"
6154     third = "./.projects.3.tmp"
6155 }
6156
6157 FNR == 1 {
6158     if ( input_file ) {
6159         if ( ! target_file )
6160             target_file = third
6161         print input_file >target_file
6162     }
6163
6164     matched_target = 0
6165     template_lib = 0
6166     input_file = FILENAME
6167     target_file = ""
6168 }
6169
6170 /^(TARGET.*=)/ {
6171     if ( \$3 == "moc" || \$3 ~ /^Qt/ ) {
6172         target_file = first
6173         matched_target = 1
6174     } else if ( \$3 == "lrelease" || \$3 == "qm_phony_target" ) {
6175         target_file = second
6176         matched_target = 1
6177     }
6178 }
6179
6180 matched_target == 0 && /^(TEMPLATE.*=)/ {
6181     if ( \$3 == "subdirs" )
6182         target_file = second
6183     else if ( \$3 == "lib" )
6184         template_lib = 1
6185     else
6186         target_file = third
6187 }
6188
6189 matched_target == 0 && template_lib == 1 && /^(CONFIG.*=)/ {
6190     if ( \$0 ~ /plugin/ )
6191         target_file = third
6192     else
6193         target_file = second
6194 }
6195
6196 END {
6197     if ( input_file ) {
6198         if ( ! target_file )
6199             target_file = third
6200         print input_file >>target_file
6201     }
6202 }
6203
6204 EOF
6205
6206     rm -f .projects.all
6207     for p in `echo $QMAKE_PROJECTS`; do
6208        echo "$p" >> .projects.all
6209     done
6210
6211     # if you get errors about the length of the command line to awk, change the -l arg
6212     # to split below
6213     split -l 100 .projects.all .projects.all.
6214     for p in .projects.all.*; do
6215        "$AWK" -f projects.awk `cat $p`
6216        [ -f .projects.1.tmp ] && cat .projects.1.tmp >> .projects.1
6217        [ -f .projects.2.tmp ] && cat .projects.2.tmp >> .projects.2
6218        [ -f .projects.3.tmp ] && cat .projects.3.tmp >> .projects.3
6219        rm -f .projects.1.tmp .projects.2.tmp .projects.3.tmp $p
6220     done
6221     rm -f .projects.all* projects.awk
6222
6223     [ -f .projects.1 ] && cat .projects.1 >>.projects
6224     [ -f .projects.2 ] && cat .projects.2 >>.projects
6225     rm -f .projects.1 .projects.2
6226     if [ -f .projects.3 ] && [ "$OPT_FAST" = "no" ]; then
6227        cat .projects.3 >>.projects
6228        rm -f .projects.3
6229     fi
6230 fi
6231 # don't sort Qt and MOC in with the other project files
6232 # also work around a segfaulting uniq(1)
6233 if [ -f .sorted.projects.2 ]; then
6234     sort .sorted.projects.2 > .sorted.projects.2.new
6235     mv -f .sorted.projects.2.new .sorted.projects.2
6236     cat .sorted.projects.2 >> .sorted.projects.1
6237 fi
6238 [ -f .sorted.projects.1 ] && sort .sorted.projects.1 >> .sorted.projects
6239 rm -f .sorted.projects.2 .sorted.projects.1
6240
6241 NORM_PROJECTS=0
6242 FAST_PROJECTS=0
6243 if [ -f .projects ]; then
6244    uniq .projects >.tmp
6245    mv -f .tmp .projects
6246    NORM_PROJECTS=`cat .projects | wc -l | sed -e "s, ,,g"`
6247 fi
6248 if [ -f .projects.3 ]; then
6249    uniq .projects.3 >.tmp
6250    mv -f .tmp .projects.3
6251    FAST_PROJECTS=`cat .projects.3 | wc -l | sed -e "s, ,,g"`
6252 fi
6253 echo "  `expr $NORM_PROJECTS + $FAST_PROJECTS` projects found."
6254 echo
6255
6256 PART_ROOTS=
6257 for part in $CFG_BUILD_PARTS; do
6258     case "$part" in
6259     tools) PART_ROOTS="$PART_ROOTS tools" ;;
6260     libs) PART_ROOTS="$PART_ROOTS src" ;;
6261     translations) PART_ROOTS="$PART_ROOTS translations" ;;
6262     examples) PART_ROOTS="$PART_ROOTS examples" ;;
6263     *) ;;
6264     esac
6265 done
6266
6267 if [ "$CFG_DEV" = "yes" ]; then
6268     PART_ROOTS="$PART_ROOTS tests"
6269 fi
6270
6271 echo "Creating makefiles. Please wait..."
6272 for file in .projects .projects.3; do
6273     [ '!' -f "$file" ] && continue
6274     for a in `cat $file`; do
6275         IN_ROOT=no
6276         for r in $PART_ROOTS; do
6277             if echo "$a" | grep "^$r" >/dev/null 2>&1 || echo "$a" | grep "^$relpath/$r" >/dev/null 2>&1; then
6278                 IN_ROOT=yes
6279                 break
6280             fi
6281         done
6282         [ "$IN_ROOT" = "no" ] && continue
6283
6284         case $a in
6285         *winmain/winmain.pro)
6286             if [ "$CFG_NOPROCESS" = "yes" ] || [ "$XPLATFORM_MINGW" != "yes" ]; then
6287                 continue
6288             fi
6289             SPEC=$XQMAKESPEC ;;
6290         */qmake/qmake.pro) continue ;;
6291         *tools/bootstrap*|*tools/moc*|*tools/rcc*|*tools/uic*|*tools/qdoc*|*tools/qdbusxml2cpp*|*tools/qdbuscpp2xml*) SPEC=$QMAKESPEC ;;
6292         *) if [ "$CFG_NOPROCESS" = "yes" ]; then
6293               continue
6294            else
6295               SPEC=$XQMAKESPEC
6296            fi;;
6297         esac
6298         dir=`dirname "$a" | sed -e "s;$sepath;.;g"`
6299         test -d "$dir" || mkdir -p "$dir"
6300         OUTDIR="$outpath/$dir"
6301         if [ -f "${OUTDIR}/Makefile" ] && [ "$OPT_FAST" = "yes" ]; then
6302             # fast configure - the makefile exists, skip it
6303             # since the makefile exists, it was generated by qmake, which means we
6304             # can skip it, since qmake has a rule to regenerate the makefile if the .pro
6305             # file changes...
6306             [ "$OPT_VERBOSE" = "yes" ] && echo "  skipping $a"
6307             continue;
6308         fi
6309         QMAKE_SPEC_ARGS="-spec $SPEC"
6310         echo $ECHO_N "  for $a$ECHO_C"
6311
6312         QMAKE="$outpath/bin/qmake"
6313         QMAKE_ARGS="$QMAKE_SWITCHES $QMAKE_SPEC_ARGS"
6314         if [ "$file" = ".projects.3" ]; then
6315             echo " (fast)"
6316
6317             cat >"${OUTDIR}/Makefile" <<EOF
6318 # ${OUTDIR}/Makefile: generated by configure
6319 #
6320 # WARNING: This makefile will be replaced with a real makefile.
6321 # All changes made to this file will be lost.
6322 EOF
6323             [ "$CFG_DEBUG_RELEASE" = "no" ] && echo "first_target: first" >>${OUTDIR}/Makefile
6324
6325             cat >>"${OUTDIR}/Makefile" <<EOF
6326 QMAKE = "$QMAKE"
6327 all clean install qmake first Makefile: FORCE
6328         \$(QMAKE) $QMAKE_ARGS -o "$OUTDIR" "$a"
6329         cd "$OUTDIR"
6330         \$(MAKE) \$@
6331
6332 FORCE:
6333
6334 EOF
6335         else
6336             if [ "$OPT_VERBOSE" = "yes" ]; then
6337                 echo " (`basename $SPEC`)"
6338                 echo "$QMAKE" $QMAKE_ARGS -o "$OUTDIR" "$a"
6339             else
6340                 echo
6341             fi
6342
6343             [ -f "${OUTDIR}/Makefile" ] && chmod +w "${OUTDIR}/Makefile"
6344             QTDIR="$outpath" "$QMAKE" $QMAKE_ARGS -o "$OUTDIR" "$a"
6345        fi
6346     done
6347 done
6348 rm -f .projects .projects.3
6349
6350 #-------------------------------------------------------------------------------
6351 # check for platforms that we don't yet know about
6352 #-------------------------------------------------------------------------------
6353 if [ "$CFG_ARCH" = "unknown" ]; then
6354 cat <<EOF
6355
6356         NOTICE: configure was unable to determine the architecture
6357         for the $XQMAKESPEC target.
6358
6359         Qt will not use a specialized implementation for any atomic
6360         operations. Instead a generic implemention based on either GCC
6361         intrinsics or C++11 std::atomic<T> will be used (when
6362         available). The generic implementations are generally as fast
6363         as and always as safe as a specialized implementation.
6364
6365         If no generic implementation is available, Qt will use a
6366         fallback UNIX implementation which uses a single
6367         pthread_mutex_t to protect all atomic operations. This
6368         implementation is the slow (but safe) fallback implementation
6369         for architectures Qt does not yet support.
6370 EOF
6371 fi
6372
6373 #-------------------------------------------------------------------------------
6374 # check if the user passed the -no-zlib option, which is no longer supported
6375 #-------------------------------------------------------------------------------
6376 if [ -n "$ZLIB_FORCED" ]; then
6377     which_zlib="supplied"
6378     if [ "$CFG_ZLIB" = "system" ]; then
6379         which_zlib="system"
6380     fi
6381
6382 cat <<EOF
6383
6384         NOTICE: The -no-zlib option was supplied but is no longer
6385         supported.
6386
6387         Qt now requires zlib support in all builds, so the -no-zlib
6388         option was ignored. Qt will be built using the $which_zlib
6389         zlib.
6390 EOF
6391 fi
6392
6393 #-------------------------------------------------------------------------------
6394 # check if the user passed the obsoleted -wayland or -no-wayland flag
6395 #-------------------------------------------------------------------------------
6396 if [ "$CFG_OBSOLETE_WAYLAND" = "yes" ]; then
6397 cat <<EOF
6398
6399         NOTICE: The -wayland and -no-wayland flags are now obsolete
6400
6401         All configuring of QtWayland plugin and QtCompositor happens in the module
6402 EOF
6403 fi
6404
6405 #-------------------------------------------------------------------------------
6406 # check if the user passed the obsoleted -arch or -host-arch options
6407 #-------------------------------------------------------------------------------
6408 if [ "$OPT_OBSOLETE_HOST_ARG" = "yes" ]; then
6409 cat <<EOF
6410
6411         NOTICE: The -arch and -host-arch options are obsolete.
6412
6413         Qt now detects the target and host architectures based on compiler
6414         output. Qt will be built using $CFG_ARCH for the target architecture
6415         and $CFG_HOST_ARCH for the host architecture (note that these two
6416         will be the same unless you are cross-compiling).
6417 EOF
6418 fi
6419
6420 #-------------------------------------------------------------------------------
6421 # finally save the executed command to another script
6422 #-------------------------------------------------------------------------------
6423 if [ `basename $0` != "config.status" ]; then
6424     CONFIG_STATUS="$relpath/$relconf $OPT_CMDLINE"
6425
6426     # add the system variables
6427     for varname in $SYSTEM_VARIABLES; do
6428         cmd=`echo \
6429 'if [ -n "\$'${varname}'" ]; then
6430     CONFIG_STATUS="'${varname}'='"'\\\$${varname}'"' \$CONFIG_STATUS"
6431 fi'`
6432         eval "$cmd"
6433     done
6434
6435     echo "$CONFIG_STATUS" | grep '\-confirm\-license' >/dev/null 2>&1 || CONFIG_STATUS="$CONFIG_STATUS -confirm-license"
6436
6437     [ -f "$outpath/config.status" ] && rm -f "$outpath/config.status"
6438     echo "#!/bin/sh" > "$outpath/config.status"
6439     [ -n "$PKG_CONFIG_SYSROOT_DIR" ] && \
6440         echo "export PKG_CONFIG_SYSROOT_DIR=$PKG_CONFIG_SYSROOT_DIR" >> "$outpath/config.status"
6441     [ -n "$PKG_CONFIG_LIBDIR" ] && \
6442         echo "export PKG_CONFIG_LIBDIR=$PKG_CONFIG_LIBDIR" >> "$outpath/config.status"
6443     echo "if [ \"\$#\" -gt 0 ]; then" >> "$outpath/config.status"
6444     echo "  $CONFIG_STATUS \"\$@\"" >> "$outpath/config.status"
6445     echo "else" >> "$outpath/config.status"
6446     echo "  $CONFIG_STATUS" >> "$outpath/config.status"
6447     echo "fi" >> "$outpath/config.status"
6448     chmod +x "$outpath/config.status"
6449 fi
6450
6451 if [ -n "$RPATH_MESSAGE" ]; then
6452     echo
6453     echo "$RPATH_MESSAGE"
6454 fi
6455
6456 MAKE=`basename "$MAKE"`
6457 echo
6458 echo Qt is now configured for building. Just run \'$MAKE\'.
6459 if [ "$relpath" = "$QT_INSTALL_PREFIX" ]; then
6460     echo Once everything is built, Qt is installed.
6461     echo You should not run \'$MAKE install\'.
6462 else
6463     echo Once everything is built, you must run \'$MAKE install\'.
6464     echo Qt will be installed into $QT_INSTALL_PREFIX
6465 fi
6466 echo
6467 echo To reconfigure, run \'$MAKE confclean\' and \'configure\'.
6468 echo