|
1 #!/bin/sh |
|
2 ############################################################################# |
|
3 ## |
|
4 ## Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
|
5 ## All rights reserved. |
|
6 ## Contact: Nokia Corporation (qt-info@nokia.com) |
|
7 ## |
|
8 ## This file is the build configuration utility of the Qt Toolkit. |
|
9 ## |
|
10 ## $QT_BEGIN_LICENSE:LGPL$ |
|
11 ## No Commercial Usage |
|
12 ## This file contains pre-release code and may not be distributed. |
|
13 ## You may use this file in accordance with the terms and conditions |
|
14 ## contained in the Technology Preview License Agreement accompanying |
|
15 ## this package. |
|
16 ## |
|
17 ## GNU Lesser General Public License Usage |
|
18 ## Alternatively, this file may be used under the terms of the GNU Lesser |
|
19 ## General Public License version 2.1 as published by the Free Software |
|
20 ## Foundation and appearing in the file LICENSE.LGPL included in the |
|
21 ## packaging of this file. Please review the following information to |
|
22 ## ensure the GNU Lesser General Public License version 2.1 requirements |
|
23 ## will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
24 ## |
|
25 ## In addition, as a special exception, Nokia gives you certain additional |
|
26 ## rights. These rights are described in the Nokia Qt LGPL Exception |
|
27 ## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
28 ## |
|
29 ## If you have questions regarding the use of this file, please contact |
|
30 ## Nokia at qt-info@nokia.com. |
|
31 ## |
|
32 ## |
|
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 |
|
75 :> "$QMAKE_VARS_FILE" |
|
76 |
|
77 #------------------------------------------------------------------------------- |
|
78 # utility functions |
|
79 #------------------------------------------------------------------------------- |
|
80 |
|
81 shellEscape() |
|
82 { |
|
83 echo "$@" | sed 's/ /\ /g' |
|
84 } |
|
85 |
|
86 # Adds a new qmake variable to the cache |
|
87 # Usage: QMakeVar mode varname contents |
|
88 # where mode is one of: set, add, del |
|
89 QMakeVar() |
|
90 { |
|
91 case "$1" in |
|
92 set) |
|
93 eq="=" |
|
94 ;; |
|
95 add) |
|
96 eq="+=" |
|
97 ;; |
|
98 del) |
|
99 eq="-=" |
|
100 ;; |
|
101 *) |
|
102 echo >&2 "BUG: wrong command to QMakeVar: $1" |
|
103 ;; |
|
104 esac |
|
105 |
|
106 echo "$2" "$eq" "$3" >> "$QMAKE_VARS_FILE" |
|
107 } |
|
108 |
|
109 # Helper function for getQMakeConf. It parses include statements in |
|
110 # qmake.conf and prints out the expanded file |
|
111 getQMakeConf1() |
|
112 { |
|
113 while read line; do case "$line" in |
|
114 include*) |
|
115 inc_file=`echo "$line" | sed -n -e "/^include.*(.*)/s/include.*(\(.*\)).*$/\1/p"` |
|
116 current_dir=`dirname "$1"` |
|
117 conf_file="$current_dir/$inc_file" |
|
118 if [ ! -f "$conf_file" ]; then |
|
119 echo "WARNING: Unable to find file $conf_file" >&2 |
|
120 continue |
|
121 fi |
|
122 getQMakeConf1 "$conf_file" |
|
123 ;; |
|
124 *) |
|
125 echo "$line" |
|
126 ;; |
|
127 esac; done < "$1" |
|
128 } |
|
129 |
|
130 |
|
131 # relies on $QMAKESPEC being set correctly. parses include statements in |
|
132 # qmake.conf and prints out the expanded file |
|
133 getQMakeConf() |
|
134 { |
|
135 tmpSPEC="$QMAKESPEC" |
|
136 if [ -n "$1" ]; then |
|
137 tmpSPEC="$1" |
|
138 fi |
|
139 getQMakeConf1 "$tmpSPEC/qmake.conf" |
|
140 } |
|
141 |
|
142 # relies on $TEST_COMPILER being set correctly |
|
143 compilerSupportsFlag() |
|
144 { |
|
145 cat >conftest.cpp <<EOF |
|
146 int main() { return 0; } |
|
147 EOF |
|
148 "$TEST_COMPILER" "$@" -o conftest.o conftest.cpp |
|
149 ret=$? |
|
150 rm -f conftest.cpp conftest.o |
|
151 return $ret |
|
152 } |
|
153 |
|
154 # relies on $TEST_COMPILER being set correctly |
|
155 linkerSupportsFlag() |
|
156 { |
|
157 lflags=-Wl |
|
158 for flag |
|
159 do |
|
160 safe_flag=`shellEscape "$flag"` |
|
161 lflags=$lflags,$safe_flag |
|
162 done |
|
163 compilerSupportsFlag "$lflags" >/dev/null 2>&1 |
|
164 } |
|
165 |
|
166 #------------------------------------------------------------------------------- |
|
167 # operating system detection |
|
168 #------------------------------------------------------------------------------- |
|
169 |
|
170 # need that throughout the script |
|
171 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown |
|
172 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown |
|
173 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown |
|
174 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown |
|
175 |
|
176 |
|
177 #------------------------------------------------------------------------------- |
|
178 # window system detection |
|
179 #------------------------------------------------------------------------------- |
|
180 |
|
181 PLATFORM_X11=no |
|
182 PLATFORM_MAC=no |
|
183 PLATFORM_QWS=no |
|
184 |
|
185 if [ -f "$relpath"/src/gui/kernel/qapplication_mac.mm ] && [ -d /System/Library/Frameworks/Carbon.framework ]; then |
|
186 # Qt/Mac |
|
187 # ~ the Carbon SDK exists |
|
188 # ~ src/gui/base/qapplication_mac.cpp is present |
|
189 # ~ this is the internal edition and Qt/Mac sources exist |
|
190 PLATFORM_MAC=maybe |
|
191 elif [ -f "$relpath"/src/gui/kernel/qapplication_qws.cpp ]; then |
|
192 # Qt Embedded |
|
193 # ~ src/gui/base/qapplication_qws.cpp is present |
|
194 # ~ this is the free or commercial edition |
|
195 # ~ this is the internal edition and Qt Embedded is explicitly enabled |
|
196 if [ -f "$relpath"/src/gui/kernel/qapplication_mac.mm ]; then |
|
197 # This is a depot build, or an all-platforms package |
|
198 PLATFORM_QWS=maybe |
|
199 else |
|
200 # This must be the embedded package, since the Qt/Mac source files are not present |
|
201 PLATFORM_QWS=yes |
|
202 fi |
|
203 fi |
|
204 |
|
205 #----------------------------------------------------------------------------- |
|
206 # Qt version detection |
|
207 #----------------------------------------------------------------------------- |
|
208 QT_VERSION=`grep '^# *define *QT_VERSION_STR' "$relpath"/src/corelib/global/qglobal.h` |
|
209 QT_MAJOR_VERSION= |
|
210 QT_MINOR_VERSION=0 |
|
211 QT_PATCH_VERSION=0 |
|
212 if [ -n "$QT_VERSION" ]; then |
|
213 QT_VERSION=`echo $QT_VERSION | sed 's,^# *define *QT_VERSION_STR *"*\([^ ]*\)"$,\1,'` |
|
214 MAJOR=`echo $QT_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\1,'` |
|
215 if [ -n "$MAJOR" ]; then |
|
216 MINOR=`echo $QT_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\2,'` |
|
217 PATCH=`echo $QT_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\3,'` |
|
218 QT_MAJOR_VERSION="$MAJOR" |
|
219 [ -z "$MINOR" ] || QT_MINOR_VERSION="$MINOR" |
|
220 [ -z "$PATCH" ] || QT_PATCH_VERSION="$PATCH" |
|
221 fi |
|
222 fi |
|
223 if [ -z "$QT_MAJOR_VERSION" ]; then |
|
224 echo "Cannot process version from qglobal.h: $QT_VERSION" |
|
225 echo "Cannot proceed." |
|
226 exit 1 |
|
227 fi |
|
228 |
|
229 QT_PACKAGEDATE=`grep '^# *define *QT_PACKAGEDATE_STR' "$relpath"/src/corelib/global/qglobal.h | sed -e 's,^# *define *QT_PACKAGEDATE_STR *"\([^ ]*\)"$,\1,' -e s,-,,g` |
|
230 if [ -z "$QT_PACKAGEDATE" ]; then |
|
231 echo "Unable to determine package date from qglobal.h: '$QT_PACKAGEDATE'" |
|
232 echo "Cannot proceed" |
|
233 exit 1 |
|
234 fi |
|
235 |
|
236 #------------------------------------------------------------------------------- |
|
237 # check the license |
|
238 #------------------------------------------------------------------------------- |
|
239 COMMERCIAL_USER=ask |
|
240 CFG_DEV=no |
|
241 CFG_NOKIA=no |
|
242 CFG_EMBEDDED=no |
|
243 CFG_RTOS_ENABLED=yes |
|
244 EditionString=Commercial |
|
245 |
|
246 earlyArgParse() |
|
247 { |
|
248 # parse the arguments, setting things to "yes" or "no" |
|
249 while [ "$#" -gt 0 ]; do |
|
250 CURRENT_OPT="$1" |
|
251 UNKNOWN_ARG=no |
|
252 case "$1" in |
|
253 #Autoconf style options |
|
254 --enable-*) |
|
255 VAR=`echo $1 | sed "s,^--enable-\(.*\),\1,"` |
|
256 VAL=yes |
|
257 ;; |
|
258 --disable-*) |
|
259 VAR=`echo $1 | sed "s,^--disable-\(.*\),\1,"` |
|
260 VAL=no |
|
261 ;; |
|
262 --*=*) |
|
263 VAR=`echo $1 | sed "s,^--\(.*\)=.*,\1,"` |
|
264 VAL=`echo $1 | sed "s,^--.*=\(.*\),\1,"` |
|
265 ;; |
|
266 --no-*) |
|
267 VAR=`echo $1 | sed "s,^--no-\(.*\),\1,"` |
|
268 VAL=no |
|
269 ;; |
|
270 -embedded) |
|
271 VAR=embedded |
|
272 # this option may or may not be followed by an argument |
|
273 if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then |
|
274 VAL=auto |
|
275 else |
|
276 shift; |
|
277 VAL=$1 |
|
278 fi |
|
279 ;; |
|
280 -h|help|--help|-help) |
|
281 if [ "$VAL" = "yes" ]; then |
|
282 OPT_HELP="$VAL" |
|
283 COMMERCIAL_USER="no" #doesn't matter we will display the help |
|
284 else |
|
285 UNKNOWN_OPT=yes |
|
286 COMMERCIAL_USER="no" #doesn't matter we will display the help |
|
287 fi |
|
288 ;; |
|
289 --*) |
|
290 VAR=`echo $1 | sed "s,^--\(.*\),\1,"` |
|
291 VAL=yes |
|
292 ;; |
|
293 -*) |
|
294 VAR=`echo $1 | sed "s,^-\(.*\),\1,"` |
|
295 VAL="unknown" |
|
296 ;; |
|
297 *) |
|
298 UNKNOWN_ARG=yes |
|
299 ;; |
|
300 esac |
|
301 if [ "$UNKNOWN_ARG" = "yes" ]; then |
|
302 shift |
|
303 continue |
|
304 fi |
|
305 shift |
|
306 |
|
307 UNKNOWN_OPT=no |
|
308 case "$VAR" in |
|
309 embedded) |
|
310 CFG_EMBEDDED="$VAL" |
|
311 if [ "$PLATFORM_QWS" != "no" ]; then |
|
312 if [ "$PLATFORM_QWS" = "maybe" ]; then |
|
313 PLATFORM_X11=no |
|
314 PLATFORM_MAC=no |
|
315 PLATFORM_QWS=yes |
|
316 fi |
|
317 else |
|
318 echo "No license exists to enable Qt for Embedded Linux. Disabling." |
|
319 CFG_EMBEDDED=no |
|
320 fi |
|
321 ;; |
|
322 developer-build) |
|
323 CFG_DEV="yes" |
|
324 ;; |
|
325 nokia-developer) |
|
326 CFG_DEV="yes" |
|
327 CFG_NOKIA="yes" |
|
328 COMMERCIAL_USER="no" |
|
329 ;; |
|
330 commercial) |
|
331 COMMERCIAL_USER="yes" |
|
332 ;; |
|
333 opensource) |
|
334 COMMERCIAL_USER="no" |
|
335 ;; |
|
336 *) |
|
337 UNKNOWN_OPT=yes |
|
338 ;; |
|
339 esac |
|
340 done |
|
341 } |
|
342 |
|
343 earlyArgParse "$@" |
|
344 |
|
345 if [ "$COMMERCIAL_USER" = "ask" ]; then |
|
346 while true; do |
|
347 echo "Which edition of Qt do you want to use ?" |
|
348 echo |
|
349 echo "Type 'c' if you want to use the Commercial Edition." |
|
350 echo "Type 'o' if you want to use the Open Source Edition." |
|
351 echo |
|
352 read commercial |
|
353 echo |
|
354 if [ "$commercial" = "c" ]; then |
|
355 COMMERCIAL_USER="yes" |
|
356 break |
|
357 elif [ "$commercial" = "o" ]; then |
|
358 COMMERCIAL_USER="no" |
|
359 break |
|
360 fi |
|
361 done |
|
362 fi |
|
363 |
|
364 if [ "$CFG_NOKIA" = "yes" ]; then |
|
365 Licensee="Nokia" |
|
366 Edition="NokiaInternalBuild" |
|
367 EditionString="Nokia Internal Build" |
|
368 QT_EDITION="QT_EDITION_OPENSOURCE" |
|
369 [ "$PLATFORM_MAC" = "maybe" ] && PLATFORM_MAC=yes |
|
370 elif [ -f "$relpath"/LICENSE.PREVIEW.COMMERCIAL ] && [ $COMMERCIAL_USER = "yes" ]; then |
|
371 # Commercial preview release |
|
372 [ "$PLATFORM_MAC" = "maybe" ] && PLATFORM_MAC=yes |
|
373 Licensee="Preview" |
|
374 Edition="Preview" |
|
375 QT_EDITION="QT_EDITION_DESKTOP" |
|
376 LicenseType="Technology Preview" |
|
377 elif [ $COMMERCIAL_USER = "yes" ]; then |
|
378 # one of commercial editions |
|
379 [ "$PLATFORM_MAC" = "maybe" ] && PLATFORM_MAC=yes |
|
380 [ "$PLATFORM_QWS" = "maybe" ] && PLATFORM_QWS=no |
|
381 |
|
382 # read in the license file |
|
383 if [ -f "$LICENSE_FILE" ]; then |
|
384 . "$LICENSE_FILE" >/dev/null 2>&1 |
|
385 if [ -z "$LicenseKeyExt" ]; then |
|
386 echo |
|
387 echo "You are using an old license file." |
|
388 echo |
|
389 echo "Please install the license file supplied by Nokia," |
|
390 echo "or install the Qt Open Source Edition if you intend to" |
|
391 echo "develop free software." |
|
392 exit 1 |
|
393 fi |
|
394 if [ -z "$Licensee" ]; then |
|
395 echo |
|
396 echo "Invalid license key. Please check the license key." |
|
397 exit 1 |
|
398 fi |
|
399 else |
|
400 if [ -z "$LicenseKeyExt" ]; then |
|
401 echo |
|
402 if echo '\c' | grep '\c' >/dev/null; then |
|
403 echo -n "Please enter your license key: " |
|
404 else |
|
405 echo "Please enter your license key: \c" |
|
406 fi |
|
407 read LicenseKeyExt |
|
408 Licensee="Unknown user" |
|
409 fi |
|
410 fi |
|
411 |
|
412 # Key verification |
|
413 echo "$LicenseKeyExt" | grep ".....*-....*-....*-....*-.....*-.....*-...." >/dev/null 2>&1 \ |
|
414 && LicenseValid="yes" \ |
|
415 || LicenseValid="no" |
|
416 if [ "$LicenseValid" != "yes" ]; then |
|
417 echo |
|
418 echo "Invalid license key. Please check the license key." |
|
419 exit 1 |
|
420 fi |
|
421 ProductCode=`echo $LicenseKeyExt | cut -f 1 -d - | cut -b 1` |
|
422 PlatformCode=`echo $LicenseKeyExt | cut -f 2 -d -` |
|
423 LicenseTypeCode=`echo $LicenseKeyExt | cut -f 3 -d -` |
|
424 LicenseFeatureCode=`echo $LicenseKeyExt | cut -f 4 -d - | cut -b 1` |
|
425 |
|
426 # determine which edition we are licensed to use |
|
427 case "$LicenseTypeCode" in |
|
428 F4M) |
|
429 LicenseType="Commercial" |
|
430 case $ProductCode in |
|
431 F) |
|
432 Edition="Universal" |
|
433 QT_EDITION="QT_EDITION_UNIVERSAL" |
|
434 ;; |
|
435 B) |
|
436 Edition="FullFramework" |
|
437 EditionString="Full Framework" |
|
438 QT_EDITION="QT_EDITION_DESKTOP" |
|
439 ;; |
|
440 L) |
|
441 Edition="GUIFramework" |
|
442 EditionString="GUI Framework" |
|
443 QT_EDITION="QT_EDITION_DESKTOPLIGHT" |
|
444 ;; |
|
445 esac |
|
446 ;; |
|
447 Z4M|R4M|Q4M) |
|
448 LicenseType="Evaluation" |
|
449 QMakeVar add DEFINES QT_EVAL |
|
450 case $ProductCode in |
|
451 B) |
|
452 Edition="Evaluation" |
|
453 QT_EDITION="QT_EDITION_EVALUATION" |
|
454 ;; |
|
455 esac |
|
456 ;; |
|
457 esac |
|
458 if [ -z "$LicenseType" -o -z "$Edition" -o -z "$QT_EDITION" ]; then |
|
459 echo |
|
460 echo "Invalid license key. Please check the license key." |
|
461 exit 1 |
|
462 fi |
|
463 |
|
464 # verify that we are licensed to use Qt on this platform |
|
465 LICENSE_EXTENSION= |
|
466 case "$PlatformCode" in |
|
467 *L) |
|
468 CFG_RTOS_ENABLED=yes |
|
469 PlatformCode=`echo "$PlatformCode" | sed 'h;y/8NPQRTZ/UCWX9M7/;x;G;s/\(.\)....\(.\)./\1\2/'` |
|
470 ;; |
|
471 *) |
|
472 CFG_RTOS_ENABLED=no |
|
473 PlatformCode=`echo "$PlatformCode" | sed 's/.$//'` |
|
474 ;; |
|
475 esac |
|
476 case "$PlatformCode,$PLATFORM_MAC,$PLATFORM_QWS" in |
|
477 X9,* | XC,* | XU,* | XW,* | XM,*) |
|
478 # Qt All-OS |
|
479 LICENSE_EXTENSION="-ALLOS" |
|
480 ;; |
|
481 8M,* | KM,* | S9,* | SC,* | SU,* | SW,* | X9,* | XC,* | XU,* | XW,*) |
|
482 # Qt for Embedded Linux |
|
483 LICENSE_EXTENSION="-EMBEDDED" |
|
484 ;; |
|
485 6M,*,no | N7,*,no | N9,*,no | NX,*,no) |
|
486 # Embedded no-deploy |
|
487 LICENSE_EXTENSION="-EMBEDDED" |
|
488 ;; |
|
489 FM,*,no | LM,yes,* | ZM,no,no) |
|
490 # Desktop |
|
491 LICENSE_EXTENSION="-DESKTOP" |
|
492 ;; |
|
493 *) |
|
494 Platform=Linux/X11 |
|
495 [ "$PLATFORM_MAC" = "yes" ] && Platform='Mac OS X' |
|
496 [ "$PLATFORM_QWS" = "yes" ] && Platform='Embedded Linux' |
|
497 echo |
|
498 echo "You are not licensed for the $Platform platform." |
|
499 echo |
|
500 echo "Please contact qt-info@nokia.com to upgrade your license to" |
|
501 echo "include the $Platform platform, or install the Qt Open Source Edition" |
|
502 echo "if you intend to develop free software." |
|
503 exit 1 |
|
504 ;; |
|
505 esac |
|
506 |
|
507 if test -r "$relpath/.LICENSE"; then |
|
508 # Generic, non-final license |
|
509 LICENSE_EXTENSION="" |
|
510 line=`sed 'y/a-z/A-Z/;q' "$relpath"/.LICENSE` |
|
511 case "$line" in |
|
512 *BETA*) |
|
513 Edition=Beta |
|
514 ;; |
|
515 *TECHNOLOGY?PREVIEW*) |
|
516 Edition=Preview |
|
517 ;; |
|
518 *EVALUATION*) |
|
519 Edition=Evaluation |
|
520 ;; |
|
521 *) |
|
522 echo >&2 "Invalid license files; cannot continue" |
|
523 exit 1 |
|
524 ;; |
|
525 esac |
|
526 Licensee="$Edition" |
|
527 EditionString="$Edition" |
|
528 QT_EDITION="QT_EDITION_DESKTOP" |
|
529 fi |
|
530 |
|
531 case "$LicenseFeatureCode" in |
|
532 B|G|L|Y) |
|
533 # US |
|
534 case "$LicenseType" in |
|
535 Commercial) |
|
536 cp -f "$relpath/.LICENSE${LICENSE_EXTENSION}-US" "$outpath/LICENSE" |
|
537 ;; |
|
538 Evaluation) |
|
539 cp -f "$relpath/.LICENSE-EVALUATION-US" "$outpath/LICENSE" |
|
540 ;; |
|
541 esac |
|
542 ;; |
|
543 2|4|5|F) |
|
544 # non-US |
|
545 case "$LicenseType" in |
|
546 Commercial) |
|
547 cp -f "$relpath/.LICENSE${LICENSE_EXTENSION}" "$outpath/LICENSE" |
|
548 ;; |
|
549 Evaluation) |
|
550 cp -f "$relpath/.LICENSE-EVALUATION" "$outpath/LICENSE" |
|
551 ;; |
|
552 esac |
|
553 ;; |
|
554 *) |
|
555 echo |
|
556 echo "Invalid license key. Please check the license key." |
|
557 exit 1 |
|
558 ;; |
|
559 esac |
|
560 case "$LicenseFeatureCode" in |
|
561 4|B|F|Y) |
|
562 CFG_RTOS_ENABLED=yes |
|
563 ;; |
|
564 2|5|G|L) |
|
565 CFG_RTOS_ENABLED=no |
|
566 ;; |
|
567 esac |
|
568 if [ '!' -f "$outpath/LICENSE" ]; then |
|
569 echo "The LICENSE, LICENSE.GPL3 LICENSE.LGPL file shipped with" |
|
570 echo "this software has disappeared." |
|
571 echo |
|
572 echo "Sorry, you are not licensed to use this software." |
|
573 echo "Try re-installing." |
|
574 echo |
|
575 exit 1 |
|
576 fi |
|
577 elif [ $COMMERCIAL_USER = "no" ]; then |
|
578 # Open Source edition - may only be used under the terms of the GPL or LGPL. |
|
579 [ "$PLATFORM_MAC" = "maybe" ] && PLATFORM_MAC=yes |
|
580 Licensee="Open Source" |
|
581 Edition="OpenSource" |
|
582 EditionString="Open Source" |
|
583 QT_EDITION="QT_EDITION_OPENSOURCE" |
|
584 fi |
|
585 |
|
586 #------------------------------------------------------------------------------- |
|
587 # initalize variables |
|
588 #------------------------------------------------------------------------------- |
|
589 |
|
590 SYSTEM_VARIABLES="CC CXX CFLAGS CXXFLAGS LDFLAGS" |
|
591 for varname in $SYSTEM_VARIABLES; do |
|
592 qmakevarname="${varname}" |
|
593 # use LDFLAGS for autoconf compat, but qmake uses QMAKE_LFLAGS |
|
594 if [ "${varname}" = "LDFLAGS" ]; then |
|
595 qmakevarname="LFLAGS" |
|
596 fi |
|
597 cmd=`echo \ |
|
598 'if [ -n "\$'${varname}'" ]; then |
|
599 QMakeVar set QMAKE_'${qmakevarname}' "\$'${varname}'" |
|
600 fi'` |
|
601 eval "$cmd" |
|
602 done |
|
603 # Use CC/CXX to run config.tests |
|
604 mkdir -p "$outpath/config.tests" |
|
605 rm -f "$outpath/config.tests/.qmake.cache" |
|
606 cp "$QMAKE_VARS_FILE" "$outpath/config.tests/.qmake.cache" |
|
607 |
|
608 QMakeVar add styles "cde mac motif plastique cleanlooks windows" |
|
609 QMakeVar add decorations "default windows styled" |
|
610 QMakeVar add mouse-drivers "pc" |
|
611 if [ "$UNAME_SYSTEM" = "Linux" ] ; then |
|
612 QMakeVar add gfx-drivers "linuxfb" |
|
613 QMakeVar add mouse-drivers "linuxtp" |
|
614 fi |
|
615 QMakeVar add kbd-drivers "tty" |
|
616 |
|
617 if [ "$CFG_DEV" = "yes" ]; then |
|
618 QMakeVar add kbd-drivers "um" |
|
619 fi |
|
620 |
|
621 # QTDIR may be set and point to an old or system-wide Qt installation |
|
622 unset QTDIR |
|
623 |
|
624 # the minimum version of libdbus-1 that we require: |
|
625 MIN_DBUS_1_VERSION=0.93 |
|
626 |
|
627 # initalize internal variables |
|
628 CFG_CONFIGURE_EXIT_ON_ERROR=yes |
|
629 CFG_PROFILE=no |
|
630 CFG_EXCEPTIONS=unspecified |
|
631 CFG_SCRIPT=auto # (yes|no|auto) |
|
632 CFG_SCRIPTTOOLS=auto # (yes|no|auto) |
|
633 CFG_XMLPATTERNS=auto # (yes|no|auto) |
|
634 CFG_INCREMENTAL=auto |
|
635 CFG_QCONFIG=full |
|
636 CFG_DEBUG=auto |
|
637 CFG_MYSQL_CONFIG= |
|
638 CFG_DEBUG_RELEASE=no |
|
639 CFG_SHARED=yes |
|
640 CFG_SM=auto |
|
641 CFG_XSHAPE=auto |
|
642 CFG_XSYNC=auto |
|
643 CFG_XINERAMA=runtime |
|
644 CFG_XFIXES=runtime |
|
645 CFG_ZLIB=auto |
|
646 CFG_SQLITE=qt |
|
647 CFG_GIF=auto |
|
648 CFG_TIFF=auto |
|
649 CFG_LIBTIFF=auto |
|
650 CFG_PNG=yes |
|
651 CFG_LIBPNG=auto |
|
652 CFG_JPEG=auto |
|
653 CFG_LIBJPEG=auto |
|
654 CFG_MNG=auto |
|
655 CFG_LIBMNG=auto |
|
656 CFG_XCURSOR=runtime |
|
657 CFG_XRANDR=runtime |
|
658 CFG_XRENDER=auto |
|
659 CFG_MITSHM=auto |
|
660 CFG_OPENGL=auto |
|
661 CFG_OPENVG=no |
|
662 CFG_OPENVG_LC_INCLUDES=no |
|
663 CFG_OPENVG_SHIVA=no |
|
664 CFG_OPENVG_ON_OPENGL=no |
|
665 CFG_EGL=no |
|
666 CFG_EGL_GLES_INCLUDES=no |
|
667 CFG_SSE=auto |
|
668 CFG_FONTCONFIG=auto |
|
669 CFG_QWS_FREETYPE=auto |
|
670 CFG_LIBFREETYPE=auto |
|
671 CFG_SQL_AVAILABLE= |
|
672 QT_DEFAULT_BUILD_PARTS="libs tools examples demos docs translations" |
|
673 CFG_BUILD_PARTS="" |
|
674 CFG_NOBUILD_PARTS="" |
|
675 CFG_RELEASE_QMAKE=no |
|
676 CFG_PHONON=auto |
|
677 CFG_PHONON_BACKEND=yes |
|
678 CFG_MULTIMEDIA=yes |
|
679 CFG_AUDIO_BACKEND=yes |
|
680 CFG_SVG=yes |
|
681 CFG_DECLARATIVE=auto |
|
682 CFG_WEBKIT=auto # (yes|no|auto) |
|
683 CFG_JAVASCRIPTCORE_JIT=auto |
|
684 |
|
685 CFG_GFX_AVAILABLE="linuxfb transformed qvfb vnc multiscreen directfb" |
|
686 CFG_GFX_ON="linuxfb multiscreen" |
|
687 CFG_GFX_PLUGIN_AVAILABLE= |
|
688 CFG_GFX_PLUGIN= |
|
689 CFG_GFX_OFF= |
|
690 CFG_KBD_AVAILABLE="tty linuxinput qvfb" |
|
691 CFG_KBD_ON="tty" #default, see QMakeVar above |
|
692 CFG_MOUSE_AVAILABLE="pc linuxtp linuxinput tslib qvfb" |
|
693 CFG_MOUSE_ON="pc linuxtp" #default, see QMakeVar above |
|
694 |
|
695 if [ -f "$relpath/src/gui/embedded/qscreenqnx_qws.cpp" ]; then |
|
696 CFG_KBD_AVAILABLE="${CFG_KBD_AVAILABLE} qnx" |
|
697 CFG_MOUSE_AVAILABLE="${CFG_MOUSE_AVAILABLE} qnx" |
|
698 CFG_GFX_AVAILABLE="${CFG_GFX_AVAILABLE} qnx" |
|
699 fi |
|
700 |
|
701 CFG_ARCH= |
|
702 CFG_HOST_ARCH= |
|
703 CFG_KBD_PLUGIN_AVAILABLE= |
|
704 CFG_KBD_PLUGIN= |
|
705 CFG_KBD_OFF= |
|
706 CFG_MOUSE_PLUGIN_AVAILABLE= |
|
707 CFG_MOUSE_PLUGIN= |
|
708 CFG_MOUSE_OFF= |
|
709 CFG_USE_GNUMAKE=no |
|
710 CFG_IM=yes |
|
711 CFG_DECORATION_AVAILABLE="styled windows default" |
|
712 CFG_DECORATION_ON="${CFG_DECORATION_AVAILABLE}" # all on by default |
|
713 CFG_DECORATION_PLUGIN_AVAILABLE= |
|
714 CFG_DECORATION_PLUGIN= |
|
715 CFG_XINPUT=runtime |
|
716 CFG_XKB=auto |
|
717 CFG_NIS=auto |
|
718 CFG_CUPS=auto |
|
719 CFG_ICONV=auto |
|
720 CFG_DBUS=auto |
|
721 CFG_GLIB=auto |
|
722 CFG_GSTREAMER=auto |
|
723 CFG_QGTKSTYLE=auto |
|
724 CFG_LARGEFILE=auto |
|
725 CFG_OPENSSL=auto |
|
726 CFG_PTMALLOC=no |
|
727 CFG_STL=auto |
|
728 CFG_PRECOMPILE=auto |
|
729 CFG_SEPARATE_DEBUG_INFO=auto |
|
730 CFG_SEPARATE_DEBUG_INFO_NOCOPY=no |
|
731 CFG_REDUCE_EXPORTS=auto |
|
732 CFG_MMX=auto |
|
733 CFG_3DNOW=auto |
|
734 CFG_SSE=auto |
|
735 CFG_SSE2=auto |
|
736 CFG_REDUCE_RELOCATIONS=no |
|
737 CFG_IPV6=auto |
|
738 CFG_NAS=no |
|
739 CFG_QWS_DEPTHS=all |
|
740 CFG_USER_BUILD_KEY= |
|
741 CFG_ACCESSIBILITY=auto |
|
742 CFG_QT3SUPPORT=yes |
|
743 CFG_ENDIAN=auto |
|
744 CFG_HOST_ENDIAN=auto |
|
745 CFG_DOUBLEFORMAT=auto |
|
746 CFG_ARMFPA=auto |
|
747 CFG_IWMMXT=no |
|
748 CFG_NEON=auto |
|
749 CFG_CLOCK_GETTIME=auto |
|
750 CFG_CLOCK_MONOTONIC=auto |
|
751 CFG_MREMAP=auto |
|
752 CFG_GETADDRINFO=auto |
|
753 CFG_IPV6IFNAME=auto |
|
754 CFG_GETIFADDRS=auto |
|
755 CFG_INOTIFY=auto |
|
756 CFG_RPATH=yes |
|
757 CFG_FRAMEWORK=auto |
|
758 CFG_MAC_ARCHS= |
|
759 MAC_CONFIG_TEST_COMMANDLINE= # used to make the configure tests run with the correct arch's and SDK settings |
|
760 CFG_MAC_DWARF2=auto |
|
761 CFG_MAC_XARCH=auto |
|
762 CFG_MAC_CARBON=yes |
|
763 CFG_MAC_COCOA=auto |
|
764 COMMANDLINE_MAC_COCOA=no |
|
765 CFG_SXE=no |
|
766 CFG_PREFIX_INSTALL=yes |
|
767 CFG_SDK= |
|
768 D_FLAGS= |
|
769 I_FLAGS= |
|
770 L_FLAGS= |
|
771 RPATH_FLAGS= |
|
772 l_FLAGS= |
|
773 QCONFIG_FLAGS= |
|
774 XPLATFORM= # This seems to be the QMAKESPEC, like "linux-g++" |
|
775 PLATFORM=$QMAKESPEC |
|
776 QT_CROSS_COMPILE=no |
|
777 OPT_CONFIRM_LICENSE=no |
|
778 OPT_SHADOW=maybe |
|
779 OPT_FAST=auto |
|
780 OPT_VERBOSE=no |
|
781 OPT_HELP= |
|
782 CFG_SILENT=no |
|
783 CFG_GRAPHICS_SYSTEM=default |
|
784 CFG_ALSA=auto |
|
785 |
|
786 # initalize variables used for installation |
|
787 QT_INSTALL_PREFIX= |
|
788 QT_INSTALL_DOCS= |
|
789 QT_INSTALL_HEADERS= |
|
790 QT_INSTALL_LIBS= |
|
791 QT_INSTALL_BINS= |
|
792 QT_INSTALL_PLUGINS= |
|
793 QT_INSTALL_DATA= |
|
794 QT_INSTALL_TRANSLATIONS= |
|
795 QT_INSTALL_SETTINGS= |
|
796 QT_INSTALL_EXAMPLES= |
|
797 QT_INSTALL_DEMOS= |
|
798 QT_HOST_PREFIX= |
|
799 |
|
800 #flags for SQL drivers |
|
801 QT_CFLAGS_PSQL= |
|
802 QT_LFLAGS_PSQL= |
|
803 QT_CFLAGS_MYSQL= |
|
804 QT_LFLAGS_MYSQL= |
|
805 QT_LFLAGS_MYSQL_R= |
|
806 QT_CFLAGS_SQLITE= |
|
807 QT_LFLAGS_SQLITE= |
|
808 QT_LFLAGS_ODBC="-lodbc" |
|
809 |
|
810 # flags for libdbus-1 |
|
811 QT_CFLAGS_DBUS= |
|
812 QT_LIBS_DBUS= |
|
813 |
|
814 # QTP:QTPROD-7 Cross compiling on Linux broken |
|
815 # flags for Symbian style |
|
816 QT_SYMBIAN_STYLE_FLAGS= |
|
817 |
|
818 # flags for Glib (X11 only) |
|
819 QT_CFLAGS_GLIB= |
|
820 QT_LIBS_GLIB= |
|
821 |
|
822 # flags for GStreamer (X11 only) |
|
823 QT_CFLAGS_GSTREAMER= |
|
824 QT_LIBS_GSTREAMER= |
|
825 |
|
826 #------------------------------------------------------------------------------- |
|
827 # check SQL drivers, mouse drivers and decorations available in this package |
|
828 #------------------------------------------------------------------------------- |
|
829 |
|
830 # opensource version removes some drivers, so force them to be off |
|
831 CFG_SQL_tds=no |
|
832 CFG_SQL_oci=no |
|
833 CFG_SQL_db2=no |
|
834 |
|
835 CFG_SQL_AVAILABLE= |
|
836 if [ -d "$relpath/src/plugins/sqldrivers" ]; then |
|
837 for a in "$relpath/src/plugins/sqldrivers/"*; do |
|
838 if [ -d "$a" ]; then |
|
839 base_a=`basename "$a"` |
|
840 CFG_SQL_AVAILABLE="${CFG_SQL_AVAILABLE} ${base_a}" |
|
841 eval "CFG_SQL_${base_a}=auto" |
|
842 fi |
|
843 done |
|
844 fi |
|
845 |
|
846 CFG_DECORATION_PLUGIN_AVAILABLE= |
|
847 if [ -d "$relpath/src/plugins/decorations" ]; then |
|
848 for a in "$relpath/src/plugins/decorations/"*; do |
|
849 if [ -d "$a" ]; then |
|
850 base_a=`basename "$a"` |
|
851 CFG_DECORATION_PLUGIN_AVAILABLE="${CFG_DECORATION_PLUGIN_AVAILABLE} ${base_a}" |
|
852 fi |
|
853 done |
|
854 fi |
|
855 |
|
856 CFG_KBD_PLUGIN_AVAILABLE= |
|
857 if [ -d "$relpath/src/plugins/kbddrivers" ]; then |
|
858 for a in "$relpath/src/plugins/kbddrivers/"*; do |
|
859 if [ -d "$a" ]; then |
|
860 base_a=`basename "$a"` |
|
861 CFG_KBD_PLUGIN_AVAILABLE="${CFG_KBD_PLUGIN_AVAILABLE} ${base_a}" |
|
862 fi |
|
863 done |
|
864 fi |
|
865 |
|
866 CFG_MOUSE_PLUGIN_AVAILABLE= |
|
867 if [ -d "$relpath/src/plugins/mousedrivers" ]; then |
|
868 for a in "$relpath/src/plugins/mousedrivers/"*; do |
|
869 if [ -d "$a" ]; then |
|
870 base_a=`basename "$a"` |
|
871 CFG_MOUSE_PLUGIN_AVAILABLE="${CFG_MOUSE_PLUGIN_AVAILABLE} ${base_a}" |
|
872 fi |
|
873 done |
|
874 fi |
|
875 |
|
876 CFG_GFX_PLUGIN_AVAILABLE= |
|
877 if [ -d "$relpath/src/plugins/gfxdrivers" ]; then |
|
878 for a in "$relpath/src/plugins/gfxdrivers/"*; do |
|
879 if [ -d "$a" ]; then |
|
880 base_a=`basename "$a"` |
|
881 CFG_GFX_PLUGIN_AVAILABLE="${CFG_GFX_PLUGIN_AVAILABLE} ${base_a}" |
|
882 fi |
|
883 done |
|
884 CFG_GFX_OFF="$CFG_GFX_AVAILABLE" # assume all off |
|
885 fi |
|
886 |
|
887 #------------------------------------------------------------------------------- |
|
888 # parse command line arguments |
|
889 #------------------------------------------------------------------------------- |
|
890 |
|
891 # parse the arguments, setting things to "yes" or "no" |
|
892 while [ "$#" -gt 0 ]; do |
|
893 CURRENT_OPT="$1" |
|
894 UNKNOWN_ARG=no |
|
895 case "$1" in |
|
896 #Autoconf style options |
|
897 --enable-*) |
|
898 VAR=`echo $1 | sed "s,^--enable-\(.*\),\1,"` |
|
899 VAL=yes |
|
900 ;; |
|
901 --disable-*) |
|
902 VAR=`echo $1 | sed "s,^--disable-\(.*\),\1,"` |
|
903 VAL=no |
|
904 ;; |
|
905 --*=*) |
|
906 VAR=`echo $1 | sed "s,^--\(.*\)=.*,\1,"` |
|
907 VAL=`echo $1 | sed "s,^--.*=\(.*\),\1,"` |
|
908 ;; |
|
909 --no-*) |
|
910 VAR=`echo $1 | sed "s,^--no-\(.*\),\1,"` |
|
911 VAL=no |
|
912 ;; |
|
913 --*) |
|
914 VAR=`echo $1 | sed "s,^--\(.*\),\1,"` |
|
915 VAL=yes |
|
916 ;; |
|
917 #QTP:QTPPROD-7 |
|
918 #Qt Symbian style options |
|
919 -*-style-s60) |
|
920 VAR=`echo $1 | sed "s,^-[^-]*-\(.*\),\1,"` |
|
921 if [ "$1" = "-no-style-s60" ]; then |
|
922 VAL=no |
|
923 else |
|
924 VAL=yes |
|
925 fi |
|
926 ;; |
|
927 #Qt plugin options |
|
928 -no-*-*|-plugin-*-*|-qt-*-*) |
|
929 VAR=`echo $1 | sed "s,^-[^-]*-\(.*\),\1,"` |
|
930 VAL=`echo $1 | sed "s,^-\([^-]*\).*,\1,"` |
|
931 ;; |
|
932 #Qt style no options |
|
933 -no-*) |
|
934 VAR=`echo $1 | sed "s,^-no-\(.*\),\1,"` |
|
935 VAL=no |
|
936 ;; |
|
937 #Qt style yes options |
|
938 -incremental|-qvfb|-profile|-shared|-static|-sm|-xinerama|-xshape|-xsync|-xinput|-reduce-exports|-pch|-separate-debug-info|-stl|-freetype|-xcursor|-xfixes|-xrandr|-xrender|-mitshm|-fontconfig|-xkb|-nis|-qdbus|-dbus|-dbus-linked|-glib|-gstreamer|-gtkstyle|-cups|-iconv|-largefile|-h|-help|-v|-verbose|-debug|-release|-fast|-accessibility|-confirm-license|-gnumake|-framework|-qt3support|-debug-and-release|-exceptions|-cocoa|-universal|-prefix-install|-silent|-armfpa|-optimized-qmake|-dwarf2|-reduce-relocations|-sse|-openssl|-openssl-linked|-ptmalloc|-xmlpatterns|-phonon|-phonon-backend|-multimedia|-audio-backend|-svg|-declarative|-webkit|-javascript-jit|-script|-scripttools|-rpath|-force-pkg-config) |
|
939 VAR=`echo $1 | sed "s,^-\(.*\),\1,"` |
|
940 VAL=yes |
|
941 ;; |
|
942 #Qt style options that pass an argument |
|
943 -qconfig) |
|
944 if [ "$PLATFORM_QWS" != "yes" ]; then |
|
945 echo |
|
946 echo "WARNING: -qconfig is only tested and supported on Qt for Embedded Linux." |
|
947 echo |
|
948 fi |
|
949 CFG_QCONFIG="$VAL" |
|
950 VAR=`echo $1 | sed "s,^-\(.*\),\1,"` |
|
951 shift |
|
952 VAL=$1 |
|
953 ;; |
|
954 -prefix|-docdir|-headerdir|-plugindir|-datadir|-libdir|-bindir|-translationdir|-sysconfdir|-examplesdir|-demosdir|-depths|-make|-nomake|-platform|-xplatform|-buildkey|-sdk|-arch|-host-arch|-mysql_config) |
|
955 VAR=`echo $1 | sed "s,^-\(.*\),\1,"` |
|
956 shift |
|
957 VAL="$1" |
|
958 ;; |
|
959 #Qt style complex options in one command |
|
960 -enable-*|-disable-*) |
|
961 VAR=`echo $1 | sed "s,^-\([^-]*\)-.*,\1,"` |
|
962 VAL=`echo $1 | sed "s,^-[^-]*-\(.*\),\1,"` |
|
963 ;; |
|
964 #Qt Builtin/System style options |
|
965 -no-*|-system-*|-qt-*) |
|
966 VAR=`echo $1 | sed "s,^-[^-]*-\(.*\),\1,"` |
|
967 VAL=`echo $1 | sed "s,^-\([^-]*\)-.*,\1,"` |
|
968 ;; |
|
969 #Options that cannot be generalized |
|
970 -k|-continue) |
|
971 VAR=fatal_error |
|
972 VAL=no |
|
973 ;; |
|
974 -embedded) |
|
975 VAR=embedded |
|
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=auto |
|
979 else |
|
980 shift; |
|
981 VAL=$1 |
|
982 fi |
|
983 ;; |
|
984 -opengl) |
|
985 VAR=opengl |
|
986 # this option may or may not be followed by an argument |
|
987 if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then |
|
988 VAL=yes |
|
989 else |
|
990 shift; |
|
991 VAL=$1 |
|
992 fi |
|
993 ;; |
|
994 -openvg) |
|
995 VAR=openvg |
|
996 # this option may or may not be followed by an argument |
|
997 if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then |
|
998 VAL=yes |
|
999 else |
|
1000 shift; |
|
1001 VAL=$1 |
|
1002 fi |
|
1003 ;; |
|
1004 -hostprefix) |
|
1005 VAR=`echo $1 | sed "s,^-\(.*\),\1,"` |
|
1006 # this option may or may not be followed by an argument |
|
1007 if [ -z "$2" ] || echo "$2" | grep '^-' >/dev/null 2>&1; then |
|
1008 VAL=$outpath |
|
1009 else |
|
1010 shift; |
|
1011 VAL=$1 |
|
1012 fi |
|
1013 ;; |
|
1014 -host-*-endian) |
|
1015 VAR=host_endian |
|
1016 VAL=`echo $1 | sed "s,^-.*-\(.*\)-.*,\1,"` |
|
1017 ;; |
|
1018 -*-endian) |
|
1019 VAR=endian |
|
1020 VAL=`echo $1 | sed "s,^-\(.*\)-.*,\1,"` |
|
1021 ;; |
|
1022 -qtnamespace) |
|
1023 VAR="qtnamespace" |
|
1024 shift |
|
1025 VAL="$1" |
|
1026 ;; |
|
1027 -graphicssystem) |
|
1028 VAR="graphicssystem" |
|
1029 shift |
|
1030 VAL=$1 |
|
1031 ;; |
|
1032 -qtlibinfix) |
|
1033 VAR="qtlibinfix" |
|
1034 shift |
|
1035 VAL="$1" |
|
1036 ;; |
|
1037 -D?*|-D) |
|
1038 VAR="add_define" |
|
1039 if [ "$1" = "-D" ]; then |
|
1040 shift |
|
1041 VAL="$1" |
|
1042 else |
|
1043 VAL=`echo $1 | sed 's,-D,,'` |
|
1044 fi |
|
1045 ;; |
|
1046 -I?*|-I) |
|
1047 VAR="add_ipath" |
|
1048 if [ "$1" = "-I" ]; then |
|
1049 shift |
|
1050 VAL="$1" |
|
1051 else |
|
1052 VAL=`echo $1 | sed 's,-I,,'` |
|
1053 fi |
|
1054 ;; |
|
1055 -L?*|-L) |
|
1056 VAR="add_lpath" |
|
1057 if [ "$1" = "-L" ]; then |
|
1058 shift |
|
1059 VAL="$1" |
|
1060 else |
|
1061 VAL=`echo $1 | sed 's,-L,,'` |
|
1062 fi |
|
1063 ;; |
|
1064 -R?*|-R) |
|
1065 VAR="add_rpath" |
|
1066 if [ "$1" = "-R" ]; then |
|
1067 shift |
|
1068 VAL="$1" |
|
1069 else |
|
1070 VAL=`echo $1 | sed 's,-R,,'` |
|
1071 fi |
|
1072 ;; |
|
1073 -l?*) |
|
1074 VAR="add_link" |
|
1075 VAL=`echo $1 | sed 's,-l,,'` |
|
1076 ;; |
|
1077 -F?*|-F) |
|
1078 VAR="add_fpath" |
|
1079 if [ "$1" = "-F" ]; then |
|
1080 shift |
|
1081 VAL="$1" |
|
1082 else |
|
1083 VAL=`echo $1 | sed 's,-F,,'` |
|
1084 fi |
|
1085 ;; |
|
1086 -fw?*|-fw) |
|
1087 VAR="add_framework" |
|
1088 if [ "$1" = "-fw" ]; then |
|
1089 shift |
|
1090 VAL="$1" |
|
1091 else |
|
1092 VAL=`echo $1 | sed 's,-fw,,'` |
|
1093 fi |
|
1094 ;; |
|
1095 -*) |
|
1096 VAR=`echo $1 | sed "s,^-\(.*\),\1,"` |
|
1097 VAL="unknown" |
|
1098 ;; |
|
1099 *) |
|
1100 UNKNOWN_ARG=yes |
|
1101 ;; |
|
1102 esac |
|
1103 if [ "$UNKNOWN_ARG" = "yes" ]; then |
|
1104 echo "$1: unknown argument" |
|
1105 OPT_HELP=yes |
|
1106 ERROR=yes |
|
1107 shift |
|
1108 continue |
|
1109 fi |
|
1110 shift |
|
1111 |
|
1112 UNKNOWN_OPT=no |
|
1113 case "$VAR" in |
|
1114 qt3support) |
|
1115 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1116 CFG_QT3SUPPORT="$VAL" |
|
1117 else |
|
1118 UNKNOWN_OPT=yes |
|
1119 fi |
|
1120 ;; |
|
1121 accessibility) |
|
1122 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1123 CFG_ACCESSIBILITY="$VAL" |
|
1124 else |
|
1125 UNKNOWN_OPT=yes |
|
1126 fi |
|
1127 ;; |
|
1128 license) |
|
1129 LICENSE_FILE="$VAL" |
|
1130 ;; |
|
1131 gnumake) |
|
1132 CFG_USE_GNUMAKE="$VAL" |
|
1133 ;; |
|
1134 mysql_config) |
|
1135 CFG_MYSQL_CONFIG="$VAL" |
|
1136 ;; |
|
1137 prefix) |
|
1138 QT_INSTALL_PREFIX="$VAL" |
|
1139 ;; |
|
1140 hostprefix) |
|
1141 QT_HOST_PREFIX="$VAL" |
|
1142 ;; |
|
1143 force-pkg-config) |
|
1144 QT_FORCE_PKGCONFIG=yes |
|
1145 ;; |
|
1146 docdir) |
|
1147 QT_INSTALL_DOCS="$VAL" |
|
1148 ;; |
|
1149 headerdir) |
|
1150 QT_INSTALL_HEADERS="$VAL" |
|
1151 ;; |
|
1152 plugindir) |
|
1153 QT_INSTALL_PLUGINS="$VAL" |
|
1154 ;; |
|
1155 datadir) |
|
1156 QT_INSTALL_DATA="$VAL" |
|
1157 ;; |
|
1158 libdir) |
|
1159 QT_INSTALL_LIBS="$VAL" |
|
1160 ;; |
|
1161 qtnamespace) |
|
1162 QT_NAMESPACE="$VAL" |
|
1163 ;; |
|
1164 qtlibinfix) |
|
1165 QT_LIBINFIX="$VAL" |
|
1166 ;; |
|
1167 translationdir) |
|
1168 QT_INSTALL_TRANSLATIONS="$VAL" |
|
1169 ;; |
|
1170 sysconfdir|settingsdir) |
|
1171 QT_INSTALL_SETTINGS="$VAL" |
|
1172 ;; |
|
1173 examplesdir) |
|
1174 QT_INSTALL_EXAMPLES="$VAL" |
|
1175 ;; |
|
1176 demosdir) |
|
1177 QT_INSTALL_DEMOS="$VAL" |
|
1178 ;; |
|
1179 qconfig) |
|
1180 CFG_QCONFIG="$VAL" |
|
1181 ;; |
|
1182 bindir) |
|
1183 QT_INSTALL_BINS="$VAL" |
|
1184 ;; |
|
1185 buildkey) |
|
1186 CFG_USER_BUILD_KEY="$VAL" |
|
1187 ;; |
|
1188 sxe) |
|
1189 CFG_SXE="$VAL" |
|
1190 ;; |
|
1191 embedded) |
|
1192 CFG_EMBEDDED="$VAL" |
|
1193 if [ "$PLATFORM_QWS" != "no" ]; then |
|
1194 if [ "$PLATFORM_QWS" = "maybe" ]; then |
|
1195 PLATFORM_X11=no |
|
1196 PLATFORM_MAC=no |
|
1197 PLATFORM_QWS=yes |
|
1198 fi |
|
1199 else |
|
1200 echo "No license exists to enable Qt for Embedded Linux. Disabling." |
|
1201 CFG_EMBEDDED=no |
|
1202 fi |
|
1203 ;; |
|
1204 sse) |
|
1205 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1206 CFG_SSE="$VAL" |
|
1207 else |
|
1208 UNKNOWN_OPT=yes |
|
1209 fi |
|
1210 ;; |
|
1211 endian) |
|
1212 if [ "$VAL" = "little" ]; then |
|
1213 CFG_ENDIAN="Q_LITTLE_ENDIAN" |
|
1214 elif [ "$VAL" = "big" ]; then |
|
1215 CFG_ENDIAN="Q_BIG_ENDIAN" |
|
1216 else |
|
1217 UNKNOWN_OPT=yes |
|
1218 fi |
|
1219 ;; |
|
1220 host_endian) |
|
1221 if [ "$VAL" = "little" ]; then |
|
1222 CFG_HOST_ENDIAN="Q_LITTLE_ENDIAN" |
|
1223 elif [ "$VAL" = "big" ]; then |
|
1224 CFG_HOST_ENDIAN="Q_BIG_ENDIAN" |
|
1225 else |
|
1226 UNKNOWN_OPT=yes |
|
1227 fi |
|
1228 ;; |
|
1229 #QTP: QTPPROD-7 |
|
1230 style-s60) |
|
1231 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1232 QT_SYMBIAN_STYLE_FLAGS="$VAL" |
|
1233 else |
|
1234 UNKNOWN_OPT=yes |
|
1235 fi |
|
1236 ;; |
|
1237 armfpa) |
|
1238 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1239 CFG_ARMFPA="$VAL" |
|
1240 else |
|
1241 UNKNOWN_OPT=yes |
|
1242 fi |
|
1243 ;; |
|
1244 depths) |
|
1245 CFG_QWS_DEPTHS="$VAL" |
|
1246 ;; |
|
1247 opengl) |
|
1248 if [ "$VAL" = "auto" ] || [ "$VAL" = "desktop" ] || |
|
1249 [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || |
|
1250 [ "$VAL" = "es1cl" ] || [ "$VAL" = "es1" ] || [ "$VAL" = "es2" ]; then |
|
1251 CFG_OPENGL="$VAL" |
|
1252 else |
|
1253 UNKNOWN_OPT=yes |
|
1254 fi |
|
1255 ;; |
|
1256 openvg) |
|
1257 if [ "$VAL" = "auto" ] || [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1258 CFG_OPENVG="$VAL" |
|
1259 else |
|
1260 UNKNOWN_OPT=yes |
|
1261 fi |
|
1262 ;; |
|
1263 graphicssystem) |
|
1264 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
1265 echo "Error: Graphics System plugins are not supported on QWS." |
|
1266 echo " On QWS, the graphics system API is part of the QScreen plugin architecture " |
|
1267 echo " rather than existing as a separate plugin." |
|
1268 echo "" |
|
1269 UNKNOWN_OPT=yes |
|
1270 else |
|
1271 if [ "$VAL" = "opengl" ]; then |
|
1272 CFG_GRAPHICS_SYSTEM="opengl" |
|
1273 elif [ "$VAL" = "openvg" ]; then |
|
1274 CFG_GRAPHICS_SYSTEM="openvg" |
|
1275 elif [ "$VAL" = "raster" ]; then |
|
1276 CFG_GRAPHICS_SYSTEM="raster" |
|
1277 else |
|
1278 UNKNOWN_OPT=yes |
|
1279 fi |
|
1280 fi |
|
1281 ;; |
|
1282 |
|
1283 qvfb) # left for commandline compatibility, not documented |
|
1284 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1285 if [ "$VAL" = "yes" ]; then |
|
1286 QMakeVar add gfx-drivers qvfb |
|
1287 QMakeVar add kbd-drivers qvfb |
|
1288 QMakeVar add mouse-drivers qvfb |
|
1289 CFG_GFX_ON="$CFG_GFX_ON qvfb" |
|
1290 CFG_KBD_ON="$CFG_KBD_ON qvfb" |
|
1291 CFG_MOUSE_ON="$CFG_MOUSE_ON qvfb" |
|
1292 fi |
|
1293 else |
|
1294 UNKNOWN_OPT=yes |
|
1295 fi |
|
1296 ;; |
|
1297 nomake) |
|
1298 CFG_NOBUILD_PARTS="$CFG_NOBUILD_PARTS $VAL" |
|
1299 ;; |
|
1300 make) |
|
1301 CFG_BUILD_PARTS="$CFG_BUILD_PARTS $VAL" |
|
1302 ;; |
|
1303 x11) |
|
1304 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
1305 PLATFORM_MAC=no |
|
1306 elif [ "$PLATFORM_QWS" = "yes" ]; then |
|
1307 PLATFORM_QWS=no |
|
1308 fi |
|
1309 if [ "$CFG_FRAMEWORK" = "auto" ]; then |
|
1310 CFG_FRAMEWORK=no |
|
1311 fi |
|
1312 PLATFORM_X11=yes |
|
1313 ;; |
|
1314 sdk) |
|
1315 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
1316 CFG_SDK="$VAL" |
|
1317 else |
|
1318 UNKNOWN_OPT=yes |
|
1319 fi |
|
1320 ;; |
|
1321 dwarf2) |
|
1322 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1323 CFG_MAC_DWARF2="$VAL" |
|
1324 else |
|
1325 UNKNOWN_OPT=yes |
|
1326 fi |
|
1327 ;; |
|
1328 arch) |
|
1329 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
1330 CFG_MAC_ARCHS="$CFG_MAC_ARCHS $VAL" |
|
1331 else |
|
1332 CFG_ARCH=$VAL |
|
1333 fi |
|
1334 ;; |
|
1335 host-arch) |
|
1336 CFG_HOST_ARCH=$VAL |
|
1337 ;; |
|
1338 universal) |
|
1339 if [ "$PLATFORM_MAC" = "yes" ] && [ "$VAL" = "yes" ]; then |
|
1340 CFG_MAC_ARCHS="$CFG_MAC_ARCHS x86 ppc" |
|
1341 else |
|
1342 UNKNOWN_OPT=yes |
|
1343 fi |
|
1344 ;; |
|
1345 cocoa) |
|
1346 if [ "$PLATFORM_MAC" = "yes" ] && [ "$VAL" = "yes" ]; then |
|
1347 CFG_MAC_COCOA="$VAL" |
|
1348 COMMANDLINE_MAC_COCOA="$VAL" |
|
1349 else |
|
1350 UNKNOWN_OPT=yes |
|
1351 fi |
|
1352 ;; |
|
1353 framework) |
|
1354 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
1355 CFG_FRAMEWORK="$VAL" |
|
1356 else |
|
1357 UNKNOWN_OPT=yes |
|
1358 fi |
|
1359 ;; |
|
1360 profile) |
|
1361 if [ "$VAL" = "yes" ]; then |
|
1362 CFG_PROFILE=yes |
|
1363 QMakeVar add QMAKE_CFLAGS -pg |
|
1364 QMakeVar add QMAKE_CXXFLAGS -pg |
|
1365 QMakeVar add QMAKE_LFLAGS -pg |
|
1366 QMAKE_VARS="$QMAKE_VARS CONFIG+=nostrip" |
|
1367 else |
|
1368 UNKNOWN_OPT=yes |
|
1369 fi |
|
1370 ;; |
|
1371 exceptions|g++-exceptions) |
|
1372 if [ "$VAL" = "no" ]; then |
|
1373 CFG_EXCEPTIONS=no |
|
1374 elif [ "$VAL" = "yes" ]; then |
|
1375 CFG_EXCEPTIONS=yes |
|
1376 else |
|
1377 UNKNOWN_OPT=yes |
|
1378 fi |
|
1379 ;; |
|
1380 platform) |
|
1381 PLATFORM="$VAL" |
|
1382 # keep compatibility with old platform names |
|
1383 case $PLATFORM in |
|
1384 aix-64) |
|
1385 PLATFORM=aix-xlc-64 |
|
1386 ;; |
|
1387 hpux-o64) |
|
1388 PLATFORM=hpux-acc-o64 |
|
1389 ;; |
|
1390 hpux-n64) |
|
1391 PLATFORM=hpux-acc-64 |
|
1392 ;; |
|
1393 hpux-acc-n64) |
|
1394 PLATFORM=hpux-acc-64 |
|
1395 ;; |
|
1396 irix-n32) |
|
1397 PLATFORM=irix-cc |
|
1398 ;; |
|
1399 irix-64) |
|
1400 PLATFORM=irix-cc-64 |
|
1401 ;; |
|
1402 irix-cc-n64) |
|
1403 PLATFORM=irix-cc-64 |
|
1404 ;; |
|
1405 reliant-64) |
|
1406 PLATFORM=reliant-cds-64 |
|
1407 ;; |
|
1408 solaris-64) |
|
1409 PLATFORM=solaris-cc-64 |
|
1410 ;; |
|
1411 solaris-64) |
|
1412 PLATFORM=solaris-cc-64 |
|
1413 ;; |
|
1414 openunix-cc) |
|
1415 PLATFORM=unixware-cc |
|
1416 ;; |
|
1417 openunix-g++) |
|
1418 PLATFORM=unixware-g++ |
|
1419 ;; |
|
1420 unixware7-cc) |
|
1421 PLATFORM=unixware-cc |
|
1422 ;; |
|
1423 unixware7-g++) |
|
1424 PLATFORM=unixware-g++ |
|
1425 ;; |
|
1426 macx-g++-64) |
|
1427 PLATFORM=macx-g++ |
|
1428 NATIVE_64_ARCH= |
|
1429 case `uname -p` in |
|
1430 i386) NATIVE_64_ARCH="x86_64" ;; |
|
1431 powerpc) NATIVE_64_ARCH="ppc64" ;; |
|
1432 *) echo "WARNING: Can't detect CPU architecture for macx-g++-64" ;; |
|
1433 esac |
|
1434 if [ ! -z "$NATIVE_64_ARCH" ]; then |
|
1435 QTCONFIG_CONFIG="$QTCONFIG_CONFIG $NATIVE_64_ARCH" |
|
1436 CFG_MAC_ARCHS="$CFG_MAC_ARCHS $NATIVE_64_ARCH" |
|
1437 fi |
|
1438 ;; |
|
1439 esac |
|
1440 ;; |
|
1441 xplatform) |
|
1442 XPLATFORM="$VAL" |
|
1443 # QTP:QTPROD-7 Cross compiling on Linux broken |
|
1444 if [ "$CFG_ENDIAN" = "auto" ] && [ "$XPLATFORM"="symbian-sbsv2" ]; then |
|
1445 echo "set endian byte order" |
|
1446 CFG_ENDIAN="Q_LITTLE_ENDIAN" |
|
1447 fi |
|
1448 ;; |
|
1449 debug-and-release) |
|
1450 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1451 CFG_DEBUG_RELEASE="$VAL" |
|
1452 else |
|
1453 UNKNOWN_OPT=yes |
|
1454 fi |
|
1455 ;; |
|
1456 optimized-qmake) |
|
1457 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1458 CFG_RELEASE_QMAKE="$VAL" |
|
1459 else |
|
1460 UNKNOWN_OPT=yes |
|
1461 fi |
|
1462 ;; |
|
1463 release) |
|
1464 if [ "$VAL" = "yes" ]; then |
|
1465 CFG_DEBUG=no |
|
1466 elif [ "$VAL" = "no" ]; then |
|
1467 CFG_DEBUG=yes |
|
1468 else |
|
1469 UNKNOWN_OPT=yes |
|
1470 fi |
|
1471 ;; |
|
1472 prefix-install) |
|
1473 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1474 CFG_PREFIX_INSTALL="$VAL" |
|
1475 else |
|
1476 UNKNOWN_OPT=yes |
|
1477 fi |
|
1478 ;; |
|
1479 debug) |
|
1480 CFG_DEBUG="$VAL" |
|
1481 ;; |
|
1482 developer-build|commercial|opensource|nokia-developer) |
|
1483 # These switches have been dealt with already |
|
1484 ;; |
|
1485 static) |
|
1486 if [ "$VAL" = "yes" ]; then |
|
1487 CFG_SHARED=no |
|
1488 elif [ "$VAL" = "no" ]; then |
|
1489 CFG_SHARED=yes |
|
1490 else |
|
1491 UNKNOWN_OPT=yes |
|
1492 fi |
|
1493 ;; |
|
1494 incremental) |
|
1495 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1496 CFG_INCREMENTAL="$VAL" |
|
1497 else |
|
1498 UNKNOWN_OPT=yes |
|
1499 fi |
|
1500 ;; |
|
1501 fatal_error) |
|
1502 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1503 CFG_CONFIGURE_EXIT_ON_ERROR="$VAL" |
|
1504 else |
|
1505 UNKNOWN_OPT=yes |
|
1506 fi |
|
1507 ;; |
|
1508 feature-*) |
|
1509 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
1510 FEATURE=`echo $VAR | sed "s,^[^-]*-\([^-]*\),\1," | tr 'abcdefghijklmnopqrstuvwxyz-' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` |
|
1511 if [ "$VAL" = "no" ]; then |
|
1512 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_$FEATURE" |
|
1513 elif [ "$VAL" = "yes" ] || [ "$VAL" = "unknown" ]; then |
|
1514 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_$FEATURE" |
|
1515 else |
|
1516 UNKNOWN_OPT=yes |
|
1517 fi |
|
1518 else |
|
1519 UNKNOWN_OPT=yes |
|
1520 fi |
|
1521 ;; |
|
1522 shared) |
|
1523 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1524 CFG_SHARED="$VAL" |
|
1525 else |
|
1526 UNKNOWN_OPT=yes |
|
1527 fi |
|
1528 ;; |
|
1529 gif) |
|
1530 [ "$VAL" = "qt" ] && VAL=yes |
|
1531 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1532 CFG_GIF="$VAL" |
|
1533 else |
|
1534 UNKNOWN_OPT=yes |
|
1535 fi |
|
1536 ;; |
|
1537 sm) |
|
1538 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1539 CFG_SM="$VAL" |
|
1540 else |
|
1541 UNKNOWN_OPT=yes |
|
1542 fi |
|
1543 |
|
1544 ;; |
|
1545 xinerama) |
|
1546 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then |
|
1547 CFG_XINERAMA="$VAL" |
|
1548 else |
|
1549 UNKNOWN_OPT=yes |
|
1550 fi |
|
1551 ;; |
|
1552 xshape) |
|
1553 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1554 CFG_XSHAPE="$VAL" |
|
1555 else |
|
1556 UNKNOWN_OPT=yes |
|
1557 fi |
|
1558 ;; |
|
1559 xsync) |
|
1560 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1561 CFG_XSYNC="$VAL" |
|
1562 else |
|
1563 UNKNOWN_OPT=yes |
|
1564 fi |
|
1565 ;; |
|
1566 xinput) |
|
1567 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then |
|
1568 CFG_XINPUT="$VAL" |
|
1569 else |
|
1570 UNKNOWN_OPT=yes |
|
1571 fi |
|
1572 ;; |
|
1573 stl) |
|
1574 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1575 CFG_STL="$VAL" |
|
1576 else |
|
1577 UNKNOWN_OPT=yes |
|
1578 fi |
|
1579 ;; |
|
1580 pch) |
|
1581 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1582 CFG_PRECOMPILE="$VAL" |
|
1583 else |
|
1584 UNKNOWN_OPT=yes |
|
1585 fi |
|
1586 ;; |
|
1587 separate-debug-info) |
|
1588 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1589 CFG_SEPARATE_DEBUG_INFO="$VAL" |
|
1590 elif [ "$VAL" = "nocopy" ] ; then |
|
1591 CFG_SEPARATE_DEBUG_INFO="yes" |
|
1592 CFG_SEPARATE_DEBUG_INFO_NOCOPY="yes" |
|
1593 else |
|
1594 UNKNOWN_OPT=yes |
|
1595 fi |
|
1596 ;; |
|
1597 reduce-exports) |
|
1598 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1599 CFG_REDUCE_EXPORTS="$VAL" |
|
1600 else |
|
1601 UNKNOWN_OPT=yes |
|
1602 fi |
|
1603 ;; |
|
1604 mmx) |
|
1605 if [ "$VAL" = "no" ]; then |
|
1606 CFG_MMX="$VAL" |
|
1607 else |
|
1608 UNKNOWN_OPT=yes |
|
1609 fi |
|
1610 ;; |
|
1611 3dnow) |
|
1612 if [ "$VAL" = "no" ]; then |
|
1613 CFG_3DNOW="$VAL" |
|
1614 else |
|
1615 UNKNOWN_OPT=yes |
|
1616 fi |
|
1617 ;; |
|
1618 sse) |
|
1619 if [ "$VAL" = "no" ]; then |
|
1620 CFG_SSE="$VAL" |
|
1621 else |
|
1622 UNKNOWN_OPT=yes |
|
1623 fi |
|
1624 ;; |
|
1625 sse2) |
|
1626 if [ "$VAL" = "no" ]; then |
|
1627 CFG_SSE2="$VAL" |
|
1628 else |
|
1629 UNKNOWN_OPT=yes |
|
1630 fi |
|
1631 ;; |
|
1632 iwmmxt) |
|
1633 CFG_IWMMXT="yes" |
|
1634 ;; |
|
1635 neon) |
|
1636 if [ "$VAL" = "no" ]; then |
|
1637 CFG_NEON="$VAL" |
|
1638 else |
|
1639 UNKNOWN_OPT=yes |
|
1640 fi |
|
1641 ;; |
|
1642 reduce-relocations) |
|
1643 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1644 CFG_REDUCE_RELOCATIONS="$VAL" |
|
1645 else |
|
1646 UNKNOWN_OPT=yes |
|
1647 fi |
|
1648 ;; |
|
1649 freetype) |
|
1650 [ "$VAL" = "qt" ] && VAL=yes |
|
1651 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then |
|
1652 CFG_QWS_FREETYPE="$VAL" |
|
1653 else |
|
1654 UNKNOWN_OPT=yes |
|
1655 fi |
|
1656 ;; |
|
1657 zlib) |
|
1658 [ "$VAL" = "qt" ] && VAL=yes |
|
1659 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then |
|
1660 CFG_ZLIB="$VAL" |
|
1661 else |
|
1662 UNKNOWN_OPT=yes |
|
1663 fi |
|
1664 # No longer supported: |
|
1665 #[ "$VAL" = "no" ] && CFG_LIBPNG=no |
|
1666 ;; |
|
1667 sqlite) |
|
1668 if [ "$VAL" = "system" ]; then |
|
1669 CFG_SQLITE=system |
|
1670 else |
|
1671 UNKNOWN_OPT=yes |
|
1672 fi |
|
1673 ;; |
|
1674 libpng) |
|
1675 [ "$VAL" = "yes" ] && VAL=qt |
|
1676 if [ "$VAL" = "qt" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then |
|
1677 CFG_LIBPNG="$VAL" |
|
1678 else |
|
1679 UNKNOWN_OPT=yes |
|
1680 fi |
|
1681 ;; |
|
1682 libjpeg) |
|
1683 [ "$VAL" = "yes" ] && VAL=qt |
|
1684 if [ "$VAL" = "qt" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then |
|
1685 CFG_LIBJPEG="$VAL" |
|
1686 else |
|
1687 UNKNOWN_OPT=yes |
|
1688 fi |
|
1689 ;; |
|
1690 libmng) |
|
1691 [ "$VAL" = "yes" ] && VAL=qt |
|
1692 if [ "$VAL" = "qt" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then |
|
1693 CFG_LIBMNG="$VAL" |
|
1694 else |
|
1695 UNKNOWN_OPT=yes |
|
1696 fi |
|
1697 ;; |
|
1698 libtiff) |
|
1699 [ "$VAL" = "yes" ] && VAL=qt |
|
1700 if [ "$VAL" = "qt" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then |
|
1701 CFG_LIBTIFF="$VAL" |
|
1702 else |
|
1703 UNKNOWN_OPT=yes |
|
1704 fi |
|
1705 ;; |
|
1706 nas-sound) |
|
1707 if [ "$VAL" = "system" ] || [ "$VAL" = "no" ]; then |
|
1708 CFG_NAS="$VAL" |
|
1709 else |
|
1710 UNKNOWN_OPT=yes |
|
1711 fi |
|
1712 ;; |
|
1713 xcursor) |
|
1714 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then |
|
1715 CFG_XCURSOR="$VAL" |
|
1716 else |
|
1717 UNKNOWN_OPT=yes |
|
1718 fi |
|
1719 ;; |
|
1720 xfixes) |
|
1721 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then |
|
1722 CFG_XFIXES="$VAL" |
|
1723 else |
|
1724 UNKNOWN_OPT=yes |
|
1725 fi |
|
1726 ;; |
|
1727 xrandr) |
|
1728 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "runtime" ]; then |
|
1729 CFG_XRANDR="$VAL" |
|
1730 else |
|
1731 UNKNOWN_OPT=yes |
|
1732 fi |
|
1733 ;; |
|
1734 xrender) |
|
1735 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1736 CFG_XRENDER="$VAL" |
|
1737 else |
|
1738 UNKNOWN_OPT=yes |
|
1739 fi |
|
1740 ;; |
|
1741 mitshm) |
|
1742 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1743 CFG_MITSHM="$VAL" |
|
1744 else |
|
1745 UNKNOWN_OPT=yes |
|
1746 fi |
|
1747 ;; |
|
1748 fontconfig) |
|
1749 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1750 CFG_FONTCONFIG="$VAL" |
|
1751 else |
|
1752 UNKNOWN_OPT=yes |
|
1753 fi |
|
1754 ;; |
|
1755 xkb) |
|
1756 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1757 CFG_XKB="$VAL" |
|
1758 else |
|
1759 UNKNOWN_OPT=yes |
|
1760 fi |
|
1761 ;; |
|
1762 cups) |
|
1763 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1764 CFG_CUPS="$VAL" |
|
1765 else |
|
1766 UNKNOWN_OPT=yes |
|
1767 fi |
|
1768 ;; |
|
1769 iconv) |
|
1770 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1771 CFG_ICONV="$VAL" |
|
1772 else |
|
1773 UNKNOWN_OPT=yes |
|
1774 fi |
|
1775 ;; |
|
1776 glib) |
|
1777 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1778 CFG_GLIB="$VAL" |
|
1779 else |
|
1780 UNKNOWN_OPT=yes |
|
1781 fi |
|
1782 ;; |
|
1783 gstreamer) |
|
1784 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1785 CFG_GSTREAMER="$VAL" |
|
1786 else |
|
1787 UNKNOWN_OPT=yes |
|
1788 fi |
|
1789 ;; |
|
1790 gtkstyle) |
|
1791 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1792 CFG_QGTKSTYLE="$VAL" |
|
1793 else |
|
1794 UNKNOWN_OPT=yes |
|
1795 fi |
|
1796 ;; |
|
1797 qdbus|dbus) |
|
1798 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "linked" ]; then |
|
1799 CFG_DBUS="$VAL" |
|
1800 elif [ "$VAL" = "runtime" ]; then |
|
1801 CFG_DBUS="yes" |
|
1802 else |
|
1803 UNKNOWN_OPT=yes |
|
1804 fi |
|
1805 ;; |
|
1806 dbus-linked) |
|
1807 if [ "$VAL" = "yes" ]; then |
|
1808 CFG_DBUS="linked" |
|
1809 else |
|
1810 UNKNOWN_OPT=yes |
|
1811 fi |
|
1812 ;; |
|
1813 nis) |
|
1814 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1815 CFG_NIS="$VAL" |
|
1816 else |
|
1817 UNKNOWN_OPT=yes |
|
1818 fi |
|
1819 ;; |
|
1820 largefile) |
|
1821 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1822 CFG_LARGEFILE="$VAL" |
|
1823 else |
|
1824 UNKNOWN_OPT=yes |
|
1825 fi |
|
1826 ;; |
|
1827 openssl) |
|
1828 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
1829 CFG_OPENSSL="$VAL" |
|
1830 else |
|
1831 UNKNOWN_OPT=yes |
|
1832 fi |
|
1833 ;; |
|
1834 openssl-linked) |
|
1835 if [ "$VAL" = "yes" ]; then |
|
1836 CFG_OPENSSL="linked" |
|
1837 else |
|
1838 UNKNOWN_OPT=yes |
|
1839 fi |
|
1840 ;; |
|
1841 ptmalloc) |
|
1842 if [ "$VAL" = "yes" ]; then |
|
1843 CFG_PTMALLOC="yes" |
|
1844 else |
|
1845 UNKNOWN_OPT=yes |
|
1846 fi |
|
1847 ;; |
|
1848 |
|
1849 xmlpatterns) |
|
1850 if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ]; then |
|
1851 CFG_XMLPATTERNS="yes" |
|
1852 else |
|
1853 if [ "$VAL" = "no" ]; then |
|
1854 CFG_XMLPATTERNS="no" |
|
1855 else |
|
1856 UNKNOWN_OPT=yes |
|
1857 fi |
|
1858 fi |
|
1859 ;; |
|
1860 script) |
|
1861 if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ]; then |
|
1862 CFG_SCRIPT="yes" |
|
1863 else |
|
1864 if [ "$VAL" = "no" ]; then |
|
1865 CFG_SCRIPT="no" |
|
1866 else |
|
1867 UNKNOWN_OPT=yes |
|
1868 fi |
|
1869 fi |
|
1870 ;; |
|
1871 scripttools) |
|
1872 if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ]; then |
|
1873 CFG_SCRIPTTOOLS="yes" |
|
1874 else |
|
1875 if [ "$VAL" = "no" ]; then |
|
1876 CFG_SCRIPTTOOLS="no" |
|
1877 else |
|
1878 UNKNOWN_OPT=yes |
|
1879 fi |
|
1880 fi |
|
1881 ;; |
|
1882 svg) |
|
1883 if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ]; then |
|
1884 CFG_SVG="yes" |
|
1885 else |
|
1886 if [ "$VAL" = "no" ]; then |
|
1887 CFG_SVG="no" |
|
1888 else |
|
1889 UNKNOWN_OPT=yes |
|
1890 fi |
|
1891 fi |
|
1892 ;; |
|
1893 declarative) |
|
1894 if [ "$VAL" = "yes" ]; then |
|
1895 CFG_DECLARATIVE="yes" |
|
1896 else |
|
1897 if [ "$VAL" = "no" ]; then |
|
1898 CFG_DECLARATIVE="no" |
|
1899 else |
|
1900 UNKNOWN_OPT=yes |
|
1901 fi |
|
1902 fi |
|
1903 ;; |
|
1904 webkit) |
|
1905 if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ]; then |
|
1906 CFG_WEBKIT="yes" |
|
1907 else |
|
1908 if [ "$VAL" = "no" ]; then |
|
1909 CFG_WEBKIT="no" |
|
1910 else |
|
1911 UNKNOWN_OPT=yes |
|
1912 fi |
|
1913 fi |
|
1914 ;; |
|
1915 javascript-jit) |
|
1916 if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ] || [ "$VAL" = "no" ]; then |
|
1917 CFG_JAVASCRIPTCORE_JIT="$VAL" |
|
1918 else |
|
1919 UNKNOWN_OPT=yes |
|
1920 fi |
|
1921 ;; |
|
1922 confirm-license) |
|
1923 if [ "$VAL" = "yes" ]; then |
|
1924 OPT_CONFIRM_LICENSE="$VAL" |
|
1925 else |
|
1926 UNKNOWN_OPT=yes |
|
1927 fi |
|
1928 ;; |
|
1929 h|help) |
|
1930 if [ "$VAL" = "yes" ]; then |
|
1931 OPT_HELP="$VAL" |
|
1932 else |
|
1933 UNKNOWN_OPT=yes |
|
1934 fi |
|
1935 ;; |
|
1936 sql-*|gfx-*|decoration-*|kbd-*|mouse-*) |
|
1937 # if Qt style options were used, $VAL can be "no", "qt", or "plugin" |
|
1938 # if autoconf style options were used, $VAL can be "yes" or "no" |
|
1939 [ "$VAL" = "yes" ] && VAL=qt |
|
1940 # now $VAL should be "no", "qt", or "plugin"... double-check |
|
1941 if [ "$VAL" != "no" ] && [ "$VAL" != "qt" ] && [ "$VAL" != "plugin" ]; then |
|
1942 UNKNOWN_OPT=yes |
|
1943 fi |
|
1944 # now $VAL is "no", "qt", or "plugin" |
|
1945 OPT="$VAL" |
|
1946 VAL=`echo $VAR | sed "s,^[^-]*-\([^-]*\).*,\1,"` |
|
1947 VAR=`echo $VAR | sed "s,^\([^-]*\).*,\1,"` |
|
1948 |
|
1949 # Grab the available values |
|
1950 case "$VAR" in |
|
1951 sql) |
|
1952 avail="$CFG_SQL_AVAILABLE" |
|
1953 ;; |
|
1954 gfx) |
|
1955 avail="$CFG_GFX_AVAILABLE" |
|
1956 if [ "$OPT" = "plugin" ]; then |
|
1957 avail="$CFG_GFX_PLUGIN_AVAILABLE" |
|
1958 fi |
|
1959 ;; |
|
1960 decoration) |
|
1961 avail="$CFG_DECORATION_AVAILABLE" |
|
1962 if [ "$OPT" = "plugin" ]; then |
|
1963 avail="$CFG_DECORATION_PLUGIN_AVAILABLE" |
|
1964 fi |
|
1965 ;; |
|
1966 kbd) |
|
1967 avail="$CFG_KBD_AVAILABLE" |
|
1968 if [ "$OPT" = "plugin" ]; then |
|
1969 avail="$CFG_KBD_PLUGIN_AVAILABLE" |
|
1970 fi |
|
1971 ;; |
|
1972 mouse) |
|
1973 avail="$CFG_MOUSE_AVAILABLE" |
|
1974 if [ "$OPT" = "plugin" ]; then |
|
1975 avail="$CFG_MOUSE_PLUGIN_AVAILABLE" |
|
1976 fi |
|
1977 ;; |
|
1978 *) |
|
1979 avail="" |
|
1980 echo "BUG: Unhandled type $VAR used in $CURRENT_OPT" |
|
1981 ;; |
|
1982 esac |
|
1983 |
|
1984 # Check that that user's value is available. |
|
1985 found=no |
|
1986 for d in $avail; do |
|
1987 if [ "$VAL" = "$d" ]; then |
|
1988 found=yes |
|
1989 break |
|
1990 fi |
|
1991 done |
|
1992 [ "$found" = yes ] || ERROR=yes |
|
1993 |
|
1994 if [ "$VAR" = "sql" ]; then |
|
1995 # set the CFG_SQL_driver |
|
1996 eval "CFG_SQL_$VAL=\$OPT" |
|
1997 continue |
|
1998 fi |
|
1999 |
|
2000 if [ "$OPT" = "plugin" ] || [ "$OPT" = "qt" ]; then |
|
2001 if [ "$OPT" = "plugin" ]; then |
|
2002 [ "$VAR" = "decoration" ] && QMakeVar del "${VAR}s" "$VAL" |
|
2003 [ "$VAR" = "decoration" ] && CFG_DECORATION_ON=`echo "${CFG_DECORATION_ON} " | sed "s,${VAL} ,,g"` && CFG_DECORATION_PLUGIN="$CFG_DECORATION_PLUGIN ${VAL}" |
|
2004 [ "$VAR" = "kbd" ] && QMakeVar del "${VAR}s" "$VAL" |
|
2005 [ "$VAR" = "kbd" ] && CFG_KBD_ON=`echo "${CFG_MOUSE_ON} " | sed "s,${VAL} ,,g"` && CFG_KBD_PLUGIN="$CFG_KBD_PLUGIN ${VAL}" |
|
2006 [ "$VAR" = "mouse" ] && QMakeVar del "${VAR}s" "$VAL" |
|
2007 [ "$VAR" = "mouse" ] && CFG_MOUSE_ON=`echo "${CFG_MOUSE_ON} " | sed "s,${VAL} ,,g"` && CFG_MOUSE_PLUGIN="$CFG_MOUSE_PLUGIN ${VAL}" |
|
2008 [ "$VAR" = "gfx" ] && QMakeVar del "${VAR}s" "$VAL" |
|
2009 [ "$VAR" = "gfx" ] && CFG_GFX_ON=`echo "${CFG_GFX_ON} " | sed "s,${VAL} ,,g"` && CFG_GFX_PLUGIN="${CFG_GFX_PLUGIN} ${VAL}" |
|
2010 VAR="${VAR}-${OPT}" |
|
2011 else |
|
2012 if [ "$VAR" = "gfx" ] || [ "$VAR" = "kbd" ] || [ "$VAR" = "decoration" ] || [ "$VAR" = "mouse" ]; then |
|
2013 [ "$VAR" = "gfx" ] && CFG_GFX_ON="$CFG_GFX_ON $VAL" |
|
2014 [ "$VAR" = "kbd" ] && CFG_KBD_ON="$CFG_KBD_ON $VAL" |
|
2015 [ "$VAR" = "decoration" ] && CFG_DECORATION_ON="$CFG_DECORATION_ON $VAL" |
|
2016 [ "$VAR" = "mouse" ] && CFG_MOUSE_ON="$CFG_MOUSE_ON $VAL" |
|
2017 VAR="${VAR}-driver" |
|
2018 fi |
|
2019 fi |
|
2020 QMakeVar add "${VAR}s" "${VAL}" |
|
2021 elif [ "$OPT" = "no" ]; then |
|
2022 PLUG_VAR="${VAR}-plugin" |
|
2023 if [ "$VAR" = "gfx" ] || [ "$VAR" = "kbd" ] || [ "$VAR" = "mouse" ]; then |
|
2024 IN_VAR="${VAR}-driver" |
|
2025 else |
|
2026 IN_VAR="${VAR}" |
|
2027 fi |
|
2028 [ "$VAR" = "decoration" ] && CFG_DECORATION_ON=`echo "${CFG_DECORATION_ON} " | sed "s,${VAL} ,,g"` |
|
2029 [ "$VAR" = "gfx" ] && CFG_GFX_ON=`echo "${CFG_GFX_ON} " | sed "s,${VAL} ,,g"` |
|
2030 [ "$VAR" = "kbd" ] && CFG_KBD_ON=`echo "${CFG_KBD_ON} " | sed "s,${VAL} ,,g"` |
|
2031 [ "$VAR" = "mouse" ] && CFG_MOUSE_ON=`echo "${CFG_MOUSE_ON} " | sed "s,${VAL} ,,g"` |
|
2032 QMakeVar del "${IN_VAR}s" "$VAL" |
|
2033 QMakeVar del "${PLUG_VAR}s" "$VAL" |
|
2034 fi |
|
2035 if [ "$ERROR" = "yes" ]; then |
|
2036 echo "$CURRENT_OPT: unknown argument" |
|
2037 OPT_HELP=yes |
|
2038 fi |
|
2039 ;; |
|
2040 v|verbose) |
|
2041 if [ "$VAL" = "yes" ]; then |
|
2042 if [ "$OPT_VERBOSE" = "$VAL" ]; then # takes two verboses to turn on qmake debugs |
|
2043 QMAKE_SWITCHES="$QMAKE_SWITCHES -d" |
|
2044 else |
|
2045 OPT_VERBOSE=yes |
|
2046 fi |
|
2047 elif [ "$VAL" = "no" ]; then |
|
2048 if [ "$OPT_VERBOSE" = "$VAL" ] && echo "$QMAKE_SWITCHES" | grep ' -d' >/dev/null 2>&1; then |
|
2049 QMAKE_SWITCHES=`echo $QMAKE_SWITCHES | sed "s, -d,,"` |
|
2050 else |
|
2051 OPT_VERBOSE=no |
|
2052 fi |
|
2053 else |
|
2054 UNKNOWN_OPT=yes |
|
2055 fi |
|
2056 ;; |
|
2057 fast) |
|
2058 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
2059 OPT_FAST="$VAL" |
|
2060 else |
|
2061 UNKNOWN_OPT=yes |
|
2062 fi |
|
2063 ;; |
|
2064 rpath) |
|
2065 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
2066 CFG_RPATH="$VAL" |
|
2067 else |
|
2068 UNKNOWN_OPT=yes |
|
2069 fi |
|
2070 ;; |
|
2071 add_define) |
|
2072 D_FLAGS="$D_FLAGS \"$VAL\"" |
|
2073 ;; |
|
2074 add_ipath) |
|
2075 I_FLAGS="$I_FLAGS -I\"${VAL}\"" |
|
2076 ;; |
|
2077 add_lpath) |
|
2078 L_FLAGS="$L_FLAGS -L\"${VAL}\"" |
|
2079 ;; |
|
2080 add_rpath) |
|
2081 RPATH_FLAGS="$RPATH_FLAGS \"${VAL}\"" |
|
2082 ;; |
|
2083 add_link) |
|
2084 l_FLAGS="$l_FLAGS -l\"${VAL}\"" |
|
2085 ;; |
|
2086 add_fpath) |
|
2087 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
2088 L_FLAGS="$L_FLAGS -F\"${VAL}\"" |
|
2089 I_FLAGS="$I_FLAGS -F\"${VAL}\"" |
|
2090 else |
|
2091 UNKNOWN_OPT=yes |
|
2092 fi |
|
2093 ;; |
|
2094 add_framework) |
|
2095 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
2096 l_FLAGS="$l_FLAGS -framework \"${VAL}\"" |
|
2097 else |
|
2098 UNKNOWN_OPT=yes |
|
2099 fi |
|
2100 ;; |
|
2101 silent) |
|
2102 CFG_SILENT="$VAL" |
|
2103 ;; |
|
2104 phonon) |
|
2105 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
2106 CFG_PHONON="$VAL" |
|
2107 else |
|
2108 UNKNOWN_OPT=yes |
|
2109 fi |
|
2110 ;; |
|
2111 phonon-backend) |
|
2112 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
2113 CFG_PHONON_BACKEND="$VAL" |
|
2114 else |
|
2115 UNKNOWN_OPT=yes |
|
2116 fi |
|
2117 ;; |
|
2118 multimedia) |
|
2119 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
2120 CFG_MULTIMEDIA="$VAL" |
|
2121 else |
|
2122 UNKNOWN_OPT=yes |
|
2123 fi |
|
2124 ;; |
|
2125 audio-backend) |
|
2126 if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then |
|
2127 CFG_AUDIO_BACKEND="$VAL" |
|
2128 else |
|
2129 UNKNOWN_OPT=yes |
|
2130 fi |
|
2131 ;; |
|
2132 *) |
|
2133 UNKNOWN_OPT=yes |
|
2134 ;; |
|
2135 esac |
|
2136 if [ "$UNKNOWN_OPT" = "yes" ]; then |
|
2137 echo "${CURRENT_OPT}: invalid command-line switch" |
|
2138 OPT_HELP=yes |
|
2139 ERROR=yes |
|
2140 fi |
|
2141 done |
|
2142 |
|
2143 if [ "$CFG_QCONFIG" != "full" ] && [ "$CFG_QT3SUPPORT" = "yes" ]; then |
|
2144 echo "Warning: '-qconfig $CFG_QCONFIG' will disable the qt3support library." |
|
2145 CFG_QT3SUPPORT="no" |
|
2146 fi |
|
2147 |
|
2148 # update QT_CONFIG to show our current predefined configuration |
|
2149 case "$CFG_QCONFIG" in |
|
2150 minimal|small|medium|large|full) |
|
2151 # these are a sequence of increasing functionality |
|
2152 for c in minimal small medium large full; do |
|
2153 QT_CONFIG="$QT_CONFIG $c-config" |
|
2154 [ "$CFG_QCONFIG" = $c ] && break |
|
2155 done |
|
2156 ;; |
|
2157 *) |
|
2158 # not known to be sufficient for anything |
|
2159 if [ '!' -f "$relpath/src/corelib/global/qconfig-${CFG_QCONFIG}.h" ]; then |
|
2160 echo >&2 "Error: configuration file not found:" |
|
2161 echo >&2 " $relpath/src/corelib/global/qconfig-${CFG_QCONFIG}.h" |
|
2162 OPT_HELP=yes |
|
2163 fi |
|
2164 esac |
|
2165 |
|
2166 #------------------------------------------------------------------------------- |
|
2167 # build tree initialization |
|
2168 #------------------------------------------------------------------------------- |
|
2169 |
|
2170 # where to find which.. |
|
2171 unixtests="$relpath/config.tests/unix" |
|
2172 mactests="$relpath/config.tests/mac" |
|
2173 WHICH="$unixtests/which.test" |
|
2174 |
|
2175 PERL=`$WHICH perl 2>/dev/null` |
|
2176 |
|
2177 # find out which awk we want to use, prefer gawk, then nawk, then regular awk |
|
2178 AWK= |
|
2179 for e in gawk nawk awk; do |
|
2180 if "$WHICH" $e >/dev/null 2>&1 && ( $e -f /dev/null /dev/null ) >/dev/null 2>&1; then |
|
2181 AWK=$e |
|
2182 break |
|
2183 fi |
|
2184 done |
|
2185 |
|
2186 # find perl |
|
2187 PERL="/usr/bin/perl" |
|
2188 if "$WHICH" perl >/dev/null 2>&1 && ( perl /dev/null ) >/dev/null 2>&1; then |
|
2189 PERL=`$WHICH perl` |
|
2190 fi |
|
2191 |
|
2192 ### skip this if the user just needs help... |
|
2193 if [ "$OPT_HELP" != "yes" ]; then |
|
2194 |
|
2195 # is this a shadow build? |
|
2196 if [ "$OPT_SHADOW" = "maybe" ]; then |
|
2197 OPT_SHADOW=no |
|
2198 if [ "$relpath" != "$outpath" ] && [ '!' -f "$outpath/configure" ]; then |
|
2199 if [ -h "$outpath" ]; then |
|
2200 [ "$relpath" -ef "$outpath" ] || OPT_SHADOW=yes |
|
2201 else |
|
2202 OPT_SHADOW=yes |
|
2203 fi |
|
2204 fi |
|
2205 fi |
|
2206 if [ "$OPT_SHADOW" = "yes" ]; then |
|
2207 if [ -f "$relpath/.qmake.cache" -o -f "$relpath/src/corelib/global/qconfig.h" -o -f "$relpath/src/corelib/global/qconfig.cpp" ]; then |
|
2208 echo >&2 "You cannot make a shadow build from a source tree containing a previous build." |
|
2209 echo >&2 "Cannot proceed." |
|
2210 exit 1 |
|
2211 fi |
|
2212 [ "$OPT_VERBOSE" = "yes" ] && echo "Performing shadow build..." |
|
2213 fi |
|
2214 |
|
2215 if [ "$PLATFORM_X11" = "yes" -o "$PLATFORM_QWS" = "yes" ] && [ "$CFG_DEBUG_RELEASE" = "yes" ]; then |
|
2216 echo |
|
2217 echo "WARNING: -debug-and-release is not supported anymore on Qt/X11 and Qt for Embedded Linux" |
|
2218 echo "By default, Qt is built in release mode with separate debug information, so" |
|
2219 echo "-debug-and-release is not necessary anymore" |
|
2220 echo |
|
2221 fi |
|
2222 |
|
2223 # detect build style |
|
2224 if [ "$CFG_DEBUG" = "auto" ]; then |
|
2225 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
2226 CFG_DEBUG_RELEASE=yes |
|
2227 CFG_DEBUG=yes |
|
2228 elif [ "$CFG_DEV" = "yes" ]; then |
|
2229 CFG_DEBUG_RELEASE=no |
|
2230 CFG_DEBUG=yes |
|
2231 else |
|
2232 CFG_DEBUG_RELEASE=no |
|
2233 CFG_DEBUG=no |
|
2234 fi |
|
2235 fi |
|
2236 if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then |
|
2237 QMAKE_CONFIG="$QMAKE_CONFIG build_all" |
|
2238 fi |
|
2239 |
|
2240 if [ "$CFG_SILENT" = "yes" ]; then |
|
2241 QMAKE_CONFIG="$QMAKE_CONFIG silent" |
|
2242 fi |
|
2243 |
|
2244 # if the source tree is different from the build tree, |
|
2245 # symlink or copy part of the sources |
|
2246 if [ "$OPT_SHADOW" = "yes" ]; then |
|
2247 echo "Preparing build tree..." |
|
2248 |
|
2249 if [ -z "$PERL" ]; then |
|
2250 echo |
|
2251 echo "You need perl in your PATH to make a shadow build." |
|
2252 echo "Cannot proceed." |
|
2253 exit 1 |
|
2254 fi |
|
2255 |
|
2256 [ -d "$outpath/bin" ] || mkdir -p "$outpath/bin" |
|
2257 |
|
2258 # symlink the qmake directory |
|
2259 find "$relpath/qmake" | while read a; do |
|
2260 my_a=`echo "$a" | sed "s,^${relpath}/,${outpath}/,"` |
|
2261 if [ '!' -f "$my_a" ]; then |
|
2262 if [ -d "$a" ]; then |
|
2263 # directories are created... |
|
2264 mkdir -p "$my_a" |
|
2265 else |
|
2266 a_dir=`dirname "$my_a"` |
|
2267 [ -d "$a_dir" ] || mkdir -p "$a_dir" |
|
2268 # ... and files are symlinked |
|
2269 case `basename "$a"` in |
|
2270 *.o|*.d|GNUmakefile*|qmake) |
|
2271 ;; |
|
2272 *) |
|
2273 rm -f "$my_a" |
|
2274 ln -s "$a" "$my_a" |
|
2275 ;; |
|
2276 esac |
|
2277 fi |
|
2278 fi |
|
2279 done |
|
2280 |
|
2281 # make a syncqt script that can be used in the shadow |
|
2282 rm -f "$outpath/bin/syncqt" |
|
2283 if [ -x "$relpath/bin/syncqt" ]; then |
|
2284 mkdir -p "$outpath/bin" |
|
2285 echo "#!/bin/sh" >"$outpath/bin/syncqt" |
|
2286 echo "QTDIR=\"$relpath\"; export QTDIR" >>"$outpath/bin/syncqt" |
|
2287 echo "perl \"$relpath/bin/syncqt\" -outdir \"$outpath\" \"\$@\"" >>"$outpath/bin/syncqt" |
|
2288 chmod 755 "$outpath/bin/syncqt" |
|
2289 fi |
|
2290 |
|
2291 # symlink the mkspecs directory |
|
2292 mkdir -p "$outpath/mkspecs" |
|
2293 rm -f "$outpath"/mkspecs/* |
|
2294 ln -s "$relpath"/mkspecs/* "$outpath/mkspecs" |
|
2295 rm -f "$outpath/mkspecs/default" |
|
2296 |
|
2297 # symlink the doc directory |
|
2298 rm -rf "$outpath/doc" |
|
2299 ln -s "$relpath/doc" "$outpath/doc" |
|
2300 |
|
2301 # make sure q3porting.xml can be found |
|
2302 mkdir -p "$outpath/tools/porting/src" |
|
2303 rm -f "$outpath/tools/porting/src/q3porting.xml" |
|
2304 ln -s "$relpath/tools/porting/src/q3porting.xml" "$outpath/tools/porting/src" |
|
2305 fi |
|
2306 |
|
2307 # symlink fonts to be able to run application from build directory |
|
2308 if [ "$PLATFORM_QWS" = "yes" ] && [ ! -d "${outpath}/lib/fonts" ]; then |
|
2309 if [ "$PLATFORM" = "$XPLATFORM" ]; then |
|
2310 mkdir -p "${outpath}/lib" |
|
2311 ln -s "${relpath}/lib/fonts" "${outpath}/lib/fonts" |
|
2312 fi |
|
2313 fi |
|
2314 |
|
2315 if [ "$OPT_FAST" = "auto" ]; then |
|
2316 if [ '!' -z "$AWK" ] && [ "$CFG_DEV" = "yes" ]; then |
|
2317 OPT_FAST=yes |
|
2318 else |
|
2319 OPT_FAST=no |
|
2320 fi |
|
2321 fi |
|
2322 |
|
2323 # find a make command |
|
2324 if [ -z "$MAKE" ]; then |
|
2325 MAKE= |
|
2326 for mk in gmake make; do |
|
2327 if "$WHICH" $mk >/dev/null 2>&1; then |
|
2328 MAKE=`"$WHICH" $mk` |
|
2329 break |
|
2330 fi |
|
2331 done |
|
2332 if [ -z "$MAKE" ]; then |
|
2333 echo >&2 "You don't seem to have 'make' or 'gmake' in your PATH." |
|
2334 echo >&2 "Cannot proceed." |
|
2335 exit 1 |
|
2336 fi |
|
2337 # export MAKE, we need it later in the config.tests |
|
2338 export MAKE |
|
2339 fi |
|
2340 |
|
2341 fi ### help |
|
2342 |
|
2343 #------------------------------------------------------------------------------- |
|
2344 # auto-detect all that hasn't been specified in the arguments |
|
2345 #------------------------------------------------------------------------------- |
|
2346 |
|
2347 [ "$PLATFORM_QWS" = "yes" -a "$CFG_EMBEDDED" = "no" ] && CFG_EMBEDDED=auto |
|
2348 if [ "$CFG_EMBEDDED" != "no" ]; then |
|
2349 case "$UNAME_SYSTEM:$UNAME_RELEASE" in |
|
2350 Darwin:*) |
|
2351 [ -z "$PLATFORM" ] && PLATFORM=qws/macx-generic-g++ |
|
2352 if [ -z "$XPLATFORM" ]; then |
|
2353 [ "$CFG_EMBEDDED" = "auto" ] && CFG_EMBEDDED=generic |
|
2354 XPLATFORM="qws/macx-$CFG_EMBEDDED-g++" |
|
2355 fi |
|
2356 ;; |
|
2357 FreeBSD:*) |
|
2358 [ -z "$PLATFORM" ] && PLATFORM=qws/freebsd-generic-g++ |
|
2359 if [ -z "$XPLATFORM" ]; then |
|
2360 [ "$CFG_EMBEDDED" = "auto" ] && CFG_EMBEDDED=generic |
|
2361 XPLATFORM="qws/freebsd-$CFG_EMBEDDED-g++" |
|
2362 fi |
|
2363 ;; |
|
2364 SunOS:5*) |
|
2365 [ -z "$PLATFORM" ] && PLATFORM=qws/solaris-generic-g++ |
|
2366 if [ -z "$XPLATFORM" ]; then |
|
2367 [ "$CFG_EMBEDDED" = "auto" ] && CFG_EMBEDDED=generic |
|
2368 XPLATFORM="qws/solaris-$CFG_EMBEDDED-g++" |
|
2369 fi |
|
2370 ;; |
|
2371 Linux:*) |
|
2372 if [ -z "$PLATFORM" ]; then |
|
2373 case "$UNAME_MACHINE" in |
|
2374 *86) |
|
2375 PLATFORM=qws/linux-x86-g++ |
|
2376 ;; |
|
2377 *86_64) |
|
2378 PLATFORM=qws/linux-x86_64-g++ |
|
2379 ;; |
|
2380 *) |
|
2381 PLATFORM=qws/linux-generic-g++ |
|
2382 ;; |
|
2383 esac |
|
2384 fi |
|
2385 if [ -z "$XPLATFORM" ]; then |
|
2386 if [ "$CFG_EMBEDDED" = "auto" ]; then |
|
2387 if [ -n "$CFG_ARCH" ]; then |
|
2388 CFG_EMBEDDED=$CFG_ARCH |
|
2389 else |
|
2390 case "$UNAME_MACHINE" in |
|
2391 *86) |
|
2392 CFG_EMBEDDED=x86 |
|
2393 ;; |
|
2394 *86_64) |
|
2395 CFG_EMBEDDED=x86_64 |
|
2396 ;; |
|
2397 *) |
|
2398 CFG_EMBEDDED=generic |
|
2399 ;; |
|
2400 esac |
|
2401 fi |
|
2402 fi |
|
2403 XPLATFORM="qws/linux-$CFG_EMBEDDED-g++" |
|
2404 fi |
|
2405 ;; |
|
2406 QNX:*) |
|
2407 [ -z "$PLATFORM" ] && PLATFORM=unsupported/qws/qnx-generic-g++ |
|
2408 if [ -z "$XPLATFORM" ]; then |
|
2409 [ "$CFG_EMBEDDED" = "auto" ] && CFG_EMBEDDED=generic |
|
2410 XPLATFORM="unsupported/qws/qnx-$CFG_EMBEDDED-g++" |
|
2411 fi |
|
2412 ;; |
|
2413 CYGWIN*:*) |
|
2414 CFG_EMBEDDED=x86 |
|
2415 ;; |
|
2416 *) |
|
2417 echo "Qt for Embedded Linux is not supported on this platform. Disabling." |
|
2418 CFG_EMBEDDED=no |
|
2419 PLATFORM_QWS=no |
|
2420 ;; |
|
2421 esac |
|
2422 fi |
|
2423 if [ -z "$PLATFORM" ]; then |
|
2424 PLATFORM_NOTES= |
|
2425 case "$UNAME_SYSTEM:$UNAME_RELEASE" in |
|
2426 Darwin:*) |
|
2427 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
2428 PLATFORM=macx-g++ |
|
2429 # PLATFORM=macx-xcode |
|
2430 else |
|
2431 PLATFORM=darwin-g++ |
|
2432 fi |
|
2433 ;; |
|
2434 AIX:*) |
|
2435 #PLATFORM=aix-g++ |
|
2436 #PLATFORM=aix-g++-64 |
|
2437 PLATFORM=aix-xlc |
|
2438 #PLATFORM=aix-xlc-64 |
|
2439 PLATFORM_NOTES=" |
|
2440 - Also available for AIX: aix-g++ aix-g++-64 aix-xlc-64 |
|
2441 " |
|
2442 ;; |
|
2443 GNU:*) |
|
2444 PLATFORM=hurd-g++ |
|
2445 ;; |
|
2446 dgux:*) |
|
2447 PLATFORM=dgux-g++ |
|
2448 ;; |
|
2449 # DYNIX/ptx:4*) |
|
2450 # PLATFORM=dynix-g++ |
|
2451 # ;; |
|
2452 ULTRIX:*) |
|
2453 PLATFORM=ultrix-g++ |
|
2454 ;; |
|
2455 FreeBSD:*) |
|
2456 PLATFORM=freebsd-g++ |
|
2457 PLATFORM_NOTES=" |
|
2458 - Also available for FreeBSD: freebsd-icc |
|
2459 " |
|
2460 ;; |
|
2461 OpenBSD:*) |
|
2462 PLATFORM=openbsd-g++ |
|
2463 ;; |
|
2464 NetBSD:*) |
|
2465 PLATFORM=netbsd-g++ |
|
2466 ;; |
|
2467 BSD/OS:*|BSD/386:*) |
|
2468 PLATFORM=bsdi-g++ |
|
2469 ;; |
|
2470 IRIX*:*) |
|
2471 #PLATFORM=irix-g++ |
|
2472 PLATFORM=irix-cc |
|
2473 #PLATFORM=irix-cc-64 |
|
2474 PLATFORM_NOTES=" |
|
2475 - Also available for IRIX: irix-g++ irix-cc-64 |
|
2476 " |
|
2477 ;; |
|
2478 HP-UX:*) |
|
2479 case "$UNAME_MACHINE" in |
|
2480 ia64) |
|
2481 #PLATFORM=hpuxi-acc-32 |
|
2482 PLATFORM=hpuxi-acc-64 |
|
2483 PLATFORM_NOTES=" |
|
2484 - Also available for HP-UXi: hpuxi-acc-32 |
|
2485 " |
|
2486 ;; |
|
2487 *) |
|
2488 #PLATFORM=hpux-g++ |
|
2489 PLATFORM=hpux-acc |
|
2490 #PLATFORM=hpux-acc-64 |
|
2491 #PLATFORM=hpux-cc |
|
2492 #PLATFORM=hpux-acc-o64 |
|
2493 PLATFORM_NOTES=" |
|
2494 - Also available for HP-UX: hpux-g++ hpux-acc-64 hpux-acc-o64 |
|
2495 " |
|
2496 ;; |
|
2497 esac |
|
2498 ;; |
|
2499 OSF1:*) |
|
2500 #PLATFORM=tru64-g++ |
|
2501 PLATFORM=tru64-cxx |
|
2502 PLATFORM_NOTES=" |
|
2503 - Also available for Tru64: tru64-g++ |
|
2504 " |
|
2505 ;; |
|
2506 Linux:*) |
|
2507 case "$UNAME_MACHINE" in |
|
2508 x86_64|s390x|ppc64) |
|
2509 PLATFORM=linux-g++-64 |
|
2510 ;; |
|
2511 *) |
|
2512 PLATFORM=linux-g++ |
|
2513 ;; |
|
2514 esac |
|
2515 PLATFORM_NOTES=" |
|
2516 - Also available for Linux: linux-kcc linux-icc linux-cxx |
|
2517 " |
|
2518 ;; |
|
2519 SunOS:5*) |
|
2520 #PLATFORM=solaris-g++ |
|
2521 PLATFORM=solaris-cc |
|
2522 #PLATFORM=solaris-cc64 |
|
2523 PLATFORM_NOTES=" |
|
2524 - Also available for Solaris: solaris-g++ solaris-cc-64 |
|
2525 " |
|
2526 ;; |
|
2527 ReliantUNIX-*:*|SINIX-*:*) |
|
2528 PLATFORM=reliant-cds |
|
2529 #PLATFORM=reliant-cds-64 |
|
2530 PLATFORM_NOTES=" |
|
2531 - Also available for Reliant UNIX: reliant-cds-64 |
|
2532 " |
|
2533 ;; |
|
2534 CYGWIN*:*) |
|
2535 PLATFORM=cygwin-g++ |
|
2536 ;; |
|
2537 LynxOS*:*) |
|
2538 PLATFORM=lynxos-g++ |
|
2539 ;; |
|
2540 OpenUNIX:*) |
|
2541 #PLATFORM=unixware-g++ |
|
2542 PLATFORM=unixware-cc |
|
2543 PLATFORM_NOTES=" |
|
2544 - Also available for OpenUNIX: unixware-g++ |
|
2545 " |
|
2546 ;; |
|
2547 UnixWare:*) |
|
2548 #PLATFORM=unixware-g++ |
|
2549 PLATFORM=unixware-cc |
|
2550 PLATFORM_NOTES=" |
|
2551 - Also available for UnixWare: unixware-g++ |
|
2552 " |
|
2553 ;; |
|
2554 SCO_SV:*) |
|
2555 #PLATFORM=sco-g++ |
|
2556 PLATFORM=sco-cc |
|
2557 PLATFORM_NOTES=" |
|
2558 - Also available for SCO OpenServer: sco-g++ |
|
2559 " |
|
2560 ;; |
|
2561 UNIX_SV:*) |
|
2562 PLATFORM=unixware-g++ |
|
2563 ;; |
|
2564 QNX:*) |
|
2565 PLATFORM=unsupported/qnx-g++ |
|
2566 ;; |
|
2567 *) |
|
2568 if [ "$OPT_HELP" != "yes" ]; then |
|
2569 echo |
|
2570 for p in $PLATFORMS; do |
|
2571 echo " $relconf $* -platform $p" |
|
2572 done |
|
2573 echo >&2 |
|
2574 echo " The build script does not currently recognize all" >&2 |
|
2575 echo " platforms supported by Qt." >&2 |
|
2576 echo " Rerun this script with a -platform option listed to" >&2 |
|
2577 echo " set the system/compiler combination you use." >&2 |
|
2578 echo >&2 |
|
2579 exit 2 |
|
2580 fi |
|
2581 esac |
|
2582 fi |
|
2583 |
|
2584 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
2585 CFG_SM=no |
|
2586 PLATFORMS=`find "$relpath/mkspecs/qws" | sed "s,$relpath/mkspecs/qws/,,"` |
|
2587 else |
|
2588 PLATFORMS=`find "$relpath/mkspecs/" -type f | grep -v qws | sed "s,$relpath/mkspecs/qws/,,"` |
|
2589 fi |
|
2590 |
|
2591 [ -z "$XPLATFORM" ] && XPLATFORM="$PLATFORM" |
|
2592 if [ -d "$PLATFORM" ]; then |
|
2593 QMAKESPEC="$PLATFORM" |
|
2594 else |
|
2595 QMAKESPEC="$relpath/mkspecs/${PLATFORM}" |
|
2596 fi |
|
2597 if [ -d "$XPLATFORM" ]; then |
|
2598 XQMAKESPEC="$XPLATFORM" |
|
2599 else |
|
2600 XQMAKESPEC="$relpath/mkspecs/${XPLATFORM}" |
|
2601 fi |
|
2602 if [ "$PLATFORM" != "$XPLATFORM" ]; then |
|
2603 QT_CROSS_COMPILE=yes |
|
2604 QMAKE_CONFIG="$QMAKE_CONFIG cross_compile" |
|
2605 fi |
|
2606 |
|
2607 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
2608 if [ `basename $QMAKESPEC` = "macx-xcode" ] || [ `basename $XQMAKESPEC` = "macx-xcode" ]; then |
|
2609 echo >&2 |
|
2610 echo " Platform 'macx-xcode' should not be used when building Qt/Mac." >&2 |
|
2611 echo " Please build Qt/Mac with 'macx-g++', then if you would like to" >&2 |
|
2612 echo " use mac-xcode on your application code it can link to a Qt/Mac" >&2 |
|
2613 echo " built with 'macx-g++'" >&2 |
|
2614 echo >&2 |
|
2615 exit 2 |
|
2616 fi |
|
2617 fi |
|
2618 |
|
2619 # check specified platforms are supported |
|
2620 if [ '!' -d "$QMAKESPEC" ]; then |
|
2621 echo |
|
2622 echo " The specified system/compiler is not supported:" |
|
2623 echo |
|
2624 echo " $QMAKESPEC" |
|
2625 echo |
|
2626 echo " Please see the README file for a complete list." |
|
2627 echo |
|
2628 exit 2 |
|
2629 fi |
|
2630 if [ '!' -d "$XQMAKESPEC" ]; then |
|
2631 echo |
|
2632 echo " The specified system/compiler is not supported:" |
|
2633 echo |
|
2634 echo " $XQMAKESPEC" |
|
2635 echo |
|
2636 echo " Please see the README file for a complete list." |
|
2637 echo |
|
2638 exit 2 |
|
2639 fi |
|
2640 if [ '!' -f "${XQMAKESPEC}/qplatformdefs.h" ]; then |
|
2641 echo |
|
2642 echo " The specified system/compiler port is not complete:" |
|
2643 echo |
|
2644 echo " $XQMAKESPEC/qplatformdefs.h" |
|
2645 echo |
|
2646 echo " Please contact qt-bugs@trolltech.com." |
|
2647 echo |
|
2648 exit 2 |
|
2649 fi |
|
2650 |
|
2651 # now look at the configs and figure out what platform we are config'd for |
|
2652 [ "$CFG_EMBEDDED" = "no" ] \ |
|
2653 && [ '!' -z "`getQMakeConf \"$XQMAKESPEC\" | grep QMAKE_LIBS_X11 | awk '{print $3;}'`" ] \ |
|
2654 && PLATFORM_X11=yes |
|
2655 ### echo "$XQMAKESPEC" | grep mkspecs/qws >/dev/null 2>&1 && PLATFORM_QWS=yes |
|
2656 |
|
2657 if [ "$UNAME_SYSTEM" = "SunOS" ]; then |
|
2658 # Solaris 2.5 and 2.6 have libposix4, which was renamed to librt for Solaris 7 and up |
|
2659 if echo $UNAME_RELEASE | grep "^5\.[5|6]" >/dev/null 2>&1; then |
|
2660 sed -e "s,-lrt,-lposix4," "$XQMAKESPEC/qmake.conf" > "$XQMAKESPEC/qmake.conf.new" |
|
2661 mv "$XQMAKESPEC/qmake.conf.new" "$XQMAKESPEC/qmake.conf" |
|
2662 fi |
|
2663 fi |
|
2664 |
|
2665 #------------------------------------------------------------------------------- |
|
2666 # determine the system architecture |
|
2667 #------------------------------------------------------------------------------- |
|
2668 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2669 echo "Determining system architecture... ($UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_MACHINE)" |
|
2670 fi |
|
2671 |
|
2672 if [ "$CFG_EMBEDDED" != "no" -a "$CFG_EMBEDDED" != "auto" ] && [ -n "$CFG_ARCH" ]; then |
|
2673 if [ "$CFG_ARCH" != "$CFG_EMBEDDED" ]; then |
|
2674 echo "" |
|
2675 echo "You have specified a target architecture with -embedded and -arch." |
|
2676 echo "The two architectures you have specified are different, so we can" |
|
2677 echo "not proceed. Either set both to be the same, or only use -embedded." |
|
2678 echo "" |
|
2679 exit 1 |
|
2680 fi |
|
2681 fi |
|
2682 |
|
2683 if [ "$CFG_RTOS_ENABLED" = "no" ]; then |
|
2684 case `basename "$XPLATFORM"` in |
|
2685 qnx-* | vxworks-*) |
|
2686 echo "" |
|
2687 echo "You are not licensed for Qt for `basename $XPLATFORM`." |
|
2688 echo "" |
|
2689 echo "Please contact qt-info@nokia.com to upgrade your license to" |
|
2690 echo "include this platform, or install the Qt Open Source Edition" |
|
2691 echo "if you intend to develop free software." |
|
2692 exit 1 |
|
2693 ;; |
|
2694 esac |
|
2695 fi |
|
2696 |
|
2697 if [ -z "${CFG_HOST_ARCH}" ]; then |
|
2698 case "$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_MACHINE" in |
|
2699 IRIX*:*:*) |
|
2700 CFG_HOST_ARCH=`uname -p` |
|
2701 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2702 echo " SGI ($CFG_HOST_ARCH)" |
|
2703 fi |
|
2704 ;; |
|
2705 SunOS:5*:*) |
|
2706 case "$UNAME_MACHINE" in |
|
2707 sun4u*|sun4v*) |
|
2708 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2709 echo " Sun SPARC (sparc)" |
|
2710 fi |
|
2711 CFG_HOST_ARCH=sparc |
|
2712 ;; |
|
2713 i86pc) |
|
2714 case "$PLATFORM" in |
|
2715 *-64) |
|
2716 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2717 echo " 64-bit AMD 80x86 (x86_64)" |
|
2718 fi |
|
2719 CFG_HOST_ARCH=x86_64 |
|
2720 ;; |
|
2721 *) |
|
2722 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2723 echo " 32-bit Intel 80x86 (i386)" |
|
2724 fi |
|
2725 CFG_HOST_ARCH=i386 |
|
2726 ;; |
|
2727 esac |
|
2728 esac |
|
2729 ;; |
|
2730 Darwin:*:*) |
|
2731 case "$UNAME_MACHINE" in |
|
2732 Power?Macintosh) |
|
2733 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2734 echo " 32-bit Apple PowerPC (powerpc)" |
|
2735 fi |
|
2736 ;; |
|
2737 x86) |
|
2738 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2739 echo " 32-bit Intel 80x86 (i386)" |
|
2740 fi |
|
2741 ;; |
|
2742 esac |
|
2743 CFG_HOST_ARCH=macosx |
|
2744 ;; |
|
2745 AIX:*:00????????00) |
|
2746 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2747 echo " 64-bit IBM PowerPC (powerpc)" |
|
2748 fi |
|
2749 CFG_HOST_ARCH=powerpc |
|
2750 ;; |
|
2751 HP-UX:*:9000*) |
|
2752 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2753 echo " HP PA-RISC (parisc)" |
|
2754 fi |
|
2755 CFG_HOST_ARCH=parisc |
|
2756 ;; |
|
2757 *:*:i?86) |
|
2758 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2759 echo " 32-bit Intel 80x86 (i386)" |
|
2760 fi |
|
2761 CFG_HOST_ARCH=i386 |
|
2762 ;; |
|
2763 *:*:x86_64|*:*:amd64) |
|
2764 if [ "$PLATFORM" = "linux-g++-32" -o "$PLATFORM" = "linux-icc-32" ]; then |
|
2765 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2766 echo " 32 bit on 64-bit AMD 80x86 (i386)" |
|
2767 fi |
|
2768 CFG_HOST_ARCH=i386 |
|
2769 else |
|
2770 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2771 echo " 64-bit AMD 80x86 (x86_64)" |
|
2772 fi |
|
2773 CFG_HOST_ARCH=x86_64 |
|
2774 fi |
|
2775 ;; |
|
2776 *:*:ppc) |
|
2777 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2778 echo " 32-bit PowerPC (powerpc)" |
|
2779 fi |
|
2780 CFG_HOST_ARCH=powerpc |
|
2781 ;; |
|
2782 *:*:ppc64) |
|
2783 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2784 echo " 64-bit PowerPC (powerpc)" |
|
2785 fi |
|
2786 CFG_HOST_ARCH=powerpc |
|
2787 ;; |
|
2788 *:*:s390*) |
|
2789 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2790 echo " IBM S/390 (s390)" |
|
2791 fi |
|
2792 CFG_HOST_ARCH=s390 |
|
2793 ;; |
|
2794 *:*:arm*) |
|
2795 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2796 echo " ARM (arm)" |
|
2797 fi |
|
2798 CFG_HOST_ARCH=arm |
|
2799 ;; |
|
2800 Linux:*:sparc*) |
|
2801 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2802 echo " Linux on SPARC" |
|
2803 fi |
|
2804 CFG_HOST_ARCH=sparc |
|
2805 ;; |
|
2806 QNX:*:*) |
|
2807 case "$UNAME_MACHINE" in |
|
2808 x86pc) |
|
2809 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2810 echo " QNX on Intel 80x86 (i386)" |
|
2811 fi |
|
2812 CFG_HOST_ARCH=i386 |
|
2813 ;; |
|
2814 esac |
|
2815 ;; |
|
2816 *:*:*) |
|
2817 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2818 echo " Trying '$UNAME_MACHINE'..." |
|
2819 fi |
|
2820 CFG_HOST_ARCH="$UNAME_MACHINE" |
|
2821 ;; |
|
2822 esac |
|
2823 fi |
|
2824 |
|
2825 if [ "$PLATFORM" != "$XPLATFORM" -a "$CFG_EMBEDDED" != "no" ]; then |
|
2826 if [ -n "$CFG_ARCH" ]; then |
|
2827 CFG_EMBEDDED=$CFG_ARCH |
|
2828 fi |
|
2829 |
|
2830 case "$CFG_EMBEDDED" in |
|
2831 x86) |
|
2832 CFG_ARCH=i386 |
|
2833 ;; |
|
2834 x86_64) |
|
2835 CFG_ARCH=x86_64 |
|
2836 ;; |
|
2837 ipaq|sharp) |
|
2838 CFG_ARCH=arm |
|
2839 ;; |
|
2840 dm7000) |
|
2841 CFG_ARCH=powerpc |
|
2842 ;; |
|
2843 dm800) |
|
2844 CFG_ARCH=mips |
|
2845 ;; |
|
2846 sh4al) |
|
2847 CFG_ARCH=sh4a |
|
2848 ;; |
|
2849 *) |
|
2850 CFG_ARCH="$CFG_EMBEDDED" |
|
2851 ;; |
|
2852 esac |
|
2853 elif [ "$PLATFORM_MAC" = "yes" ] || [ -z "$CFG_ARCH" ]; then |
|
2854 CFG_ARCH=$CFG_HOST_ARCH |
|
2855 fi |
|
2856 |
|
2857 if [ -d "$relpath/src/corelib/arch/$CFG_ARCH" ]; then |
|
2858 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2859 echo " '$CFG_ARCH' is supported" |
|
2860 fi |
|
2861 else |
|
2862 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2863 echo " '$CFG_ARCH' is unsupported, using 'generic'" |
|
2864 fi |
|
2865 CFG_ARCH=generic |
|
2866 fi |
|
2867 if [ "$CFG_HOST_ARCH" != "$CFG_ARCH" ]; then |
|
2868 if [ -d "$relpath/src/corelib/arch/$CFG_HOST_ARCH" ]; then |
|
2869 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2870 echo " '$CFG_HOST_ARCH' is supported" |
|
2871 fi |
|
2872 else |
|
2873 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2874 echo " '$CFG_HOST_ARCH' is unsupported, using 'generic'" |
|
2875 fi |
|
2876 CFG_HOST_ARCH=generic |
|
2877 fi |
|
2878 fi |
|
2879 |
|
2880 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
2881 echo "System architecture: '$CFG_ARCH'" |
|
2882 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
2883 echo "Host architecture: '$CFG_HOST_ARCH'" |
|
2884 fi |
|
2885 fi |
|
2886 |
|
2887 #------------------------------------------------------------------------------- |
|
2888 # tests that don't need qmake (must be run before displaying help) |
|
2889 #------------------------------------------------------------------------------- |
|
2890 |
|
2891 if [ -z "$PKG_CONFIG" ]; then |
|
2892 # See if PKG_CONFIG is set in the mkspec: |
|
2893 PKG_CONFIG=`getQMakeConf "$XQMAKESPEC" | sed -n -e 's%PKG_CONFIG[^_].*=%%p' | tr '\n' ' '` |
|
2894 fi |
|
2895 if [ -z "$PKG_CONFIG" ]; then |
|
2896 PKG_CONFIG=`"$WHICH" pkg-config 2>/dev/null` |
|
2897 fi |
|
2898 |
|
2899 # Work out if we can use pkg-config |
|
2900 if [ "$QT_CROSS_COMPILE" = "yes" ]; then |
|
2901 if [ "$QT_FORCE_PKGCONFIG" = "yes" ]; then |
|
2902 echo >&2 "" |
|
2903 echo >&2 "You have asked to use pkg-config and are cross-compiling." |
|
2904 echo >&2 "Please make sure you have a correctly set-up pkg-config" |
|
2905 echo >&2 "environment!" |
|
2906 echo >&2 "" |
|
2907 if [ -z "$PKG_CONFIG_PATH" ]; then |
|
2908 echo >&2 "" |
|
2909 echo >&2 "Warning: PKG_CONFIG_PATH has not been set. This could mean" |
|
2910 echo >&2 "the host compiler's .pc files will be used. This is probably" |
|
2911 echo >&2 "not what you want." |
|
2912 echo >&2 "" |
|
2913 elif [ -z "$PKG_CONFIG_SYSROOT" ] && [ -z "$PKG_CONFIG_SYSROOT_DIR" ]; then |
|
2914 echo >&2 "" |
|
2915 echo >&2 "Warning: PKG_CONFIG_SYSROOT/PKG_CONFIG_SYSROOT_DIR has not" |
|
2916 echo >&2 "been set. This means your toolchain's .pc files must contain" |
|
2917 echo >&2 "the paths to the toolchain's libraries & headers. If configure" |
|
2918 echo >&2 "tests are failing, please check these files." |
|
2919 echo >&2 "" |
|
2920 fi |
|
2921 else |
|
2922 echo >&2 "" |
|
2923 echo >&2 "You have not explicitly asked to use pkg-config and are cross-compiling." |
|
2924 echo >&2 "pkg-config will not be used to automatically query cflag/lib parameters for" |
|
2925 echo >&2 "dependencies" |
|
2926 echo >&2 "" |
|
2927 PKG_CONFIG="" |
|
2928 fi |
|
2929 fi |
|
2930 |
|
2931 # process CFG_MAC_ARCHS |
|
2932 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
2933 # check -arch arguments for validity. |
|
2934 ALLOWED="x86 ppc x86_64 ppc64 i386" |
|
2935 # Save the list so we can re-write it using only valid values |
|
2936 CFG_MAC_ARCHS_IN="$CFG_MAC_ARCHS" |
|
2937 CFG_MAC_ARCHS= |
|
2938 for i in $CFG_MAC_ARCHS_IN |
|
2939 do |
|
2940 if echo "$ALLOWED" | grep -w -v "$i" > /dev/null 2>&1; then |
|
2941 echo "Unknown architecture: \"$i\". Supported architectures: x86[i386] ppc x86_64 ppc64"; |
|
2942 exit 2; |
|
2943 fi |
|
2944 if [ "$i" = "i386" -o "$i" = "x86" ]; then |
|
2945 # These are synonymous values |
|
2946 # CFG_MAC_ARCHS requires x86 while GCC requires i386 |
|
2947 CFG_MAC_ARCHS="$CFG_MAC_ARCHS x86" |
|
2948 MAC_CONFIG_TEST_COMMANDLINE="$MAC_CONFIG_TEST_COMMANDLINE -arch i386" |
|
2949 else |
|
2950 CFG_MAC_ARCHS="$CFG_MAC_ARCHS $i" |
|
2951 MAC_CONFIG_TEST_COMMANDLINE="$MAC_CONFIG_TEST_COMMANDLINE -arch $i" |
|
2952 fi |
|
2953 done |
|
2954 fi |
|
2955 |
|
2956 # pass on $CFG_SDK to the configure tests. |
|
2957 if [ '!' -z "$CFG_SDK" ]; then |
|
2958 MAC_CONFIG_TEST_COMMANDLINE="$MAC_CONFIG_TEST_COMMANDLINE -sdk $CFG_SDK" |
|
2959 fi |
|
2960 |
|
2961 # find the default framework value |
|
2962 if [ "$PLATFORM_MAC" = "yes" ] && [ "$PLATFORM" != "macx-xlc" ]; then |
|
2963 if [ "$CFG_FRAMEWORK" = "auto" ]; then |
|
2964 CFG_FRAMEWORK="$CFG_SHARED" |
|
2965 elif [ "$CFG_FRAMEWORK" = "yes" ] && [ "$CFG_SHARED" = "no" ]; then |
|
2966 echo |
|
2967 echo "WARNING: Using static linking will disable the use of Mac frameworks." |
|
2968 echo |
|
2969 CFG_FRAMEWORK="no" |
|
2970 fi |
|
2971 else |
|
2972 CFG_FRAMEWORK=no |
|
2973 fi |
|
2974 |
|
2975 QMAKE_CONF_COMPILER=`getQMakeConf "$XQMAKESPEC" | grep "^QMAKE_CXX[^_A-Z0-9]" | sed "s,.* *= *\(.*\)$,\1," | tail -1` |
|
2976 TEST_COMPILER="$CC" |
|
2977 [ -z "$TEST_COMPILER" ] && TEST_COMPILER=$QMAKE_CONF_COMPILER |
|
2978 if [ -z "$TEST_COMPILER" ]; then |
|
2979 echo "ERROR: Cannot set the compiler for the configuration tests" |
|
2980 exit 1 |
|
2981 fi |
|
2982 |
|
2983 # auto-detect precompiled header support |
|
2984 if [ "$CFG_PRECOMPILE" = "auto" ]; then |
|
2985 if [ `echo "$CFG_MAC_ARCHS" | wc -w` -gt 1 ]; then |
|
2986 CFG_PRECOMPILE=no |
|
2987 elif "$unixtests/precomp.test" "$TEST_COMPILER" "$OPT_VERBOSE"; then |
|
2988 CFG_PRECOMPILE=no |
|
2989 else |
|
2990 CFG_PRECOMPILE=yes |
|
2991 fi |
|
2992 elif [ "$CFG_PRECOMPILE" = "yes" ] && [ `echo "$CFG_MAC_ARCHS" | wc -w` -gt 1 ]; then |
|
2993 echo |
|
2994 echo "WARNING: Using universal binaries disables precompiled headers." |
|
2995 echo |
|
2996 CFG_PRECOMPILE=no |
|
2997 fi |
|
2998 |
|
2999 #auto-detect DWARF2 on the mac |
|
3000 if [ "$PLATFORM_MAC" = "yes" ] && [ "$CFG_MAC_DWARF2" = "auto" ]; then |
|
3001 if "$mactests/dwarf2.test" "$TEST_COMPILER" "$OPT_VERBOSE" "$mactests" ; then |
|
3002 CFG_MAC_DWARF2=no |
|
3003 else |
|
3004 CFG_MAC_DWARF2=yes |
|
3005 fi |
|
3006 fi |
|
3007 |
|
3008 # auto-detect support for -Xarch on the mac |
|
3009 if [ "$PLATFORM_MAC" = "yes" ] && [ "$CFG_MAC_XARCH" = "auto" ]; then |
|
3010 if "$mactests/xarch.test" "$TEST_COMPILER" "$OPT_VERBOSE" "$mactests" ; then |
|
3011 CFG_MAC_XARCH=no |
|
3012 else |
|
3013 CFG_MAC_XARCH=yes |
|
3014 fi |
|
3015 fi |
|
3016 |
|
3017 # don't autodetect support for separate debug info on objcopy when |
|
3018 # cross-compiling as lots of toolchains seems to have problems with this |
|
3019 if [ "$QT_CROSS_COMPILE" = "yes" ] && [ "$CFG_SEPARATE_DEBUG_INFO" = "auto" ]; then |
|
3020 CFG_SEPARATE_DEBUG_INFO="no" |
|
3021 fi |
|
3022 |
|
3023 # auto-detect support for separate debug info in objcopy |
|
3024 if [ "$CFG_SEPARATE_DEBUG_INFO" != "no" ] && [ "$CFG_SHARED" = "yes" ]; then |
|
3025 TEST_COMPILER_CFLAGS=`getQMakeConf "$XQMAKESPEC" | sed -n -e 's%QMAKE_CFLAGS[^_].*=%%p' | tr '\n' ' '` |
|
3026 TEST_COMPILER_CXXFLAGS=`getQMakeConf "$XQMAKESPEC" | sed -n -e 's%QMAKE_CXXFLAGS[^_].*=%%p' | tr '\n' ' '` |
|
3027 TEST_OBJCOPY=`getQMakeConf "$XQMAKESPEC" | grep "^QMAKE_OBJCOPY" | sed "s%.* *= *\(.*\)$%\1%" | tail -1` |
|
3028 COMPILER_WITH_FLAGS="$TEST_COMPILER $TEST_COMPILER_CXXFLAGS" |
|
3029 COMPILER_WITH_FLAGS=`echo "$COMPILER_WITH_FLAGS" | sed -e "s%\\$\\$QMAKE_CFLAGS%$TEST_COMPILER_CFLAGS%g"` |
|
3030 if "$unixtests/objcopy.test" "$COMPILER_WITH_FLAGS" "$TEST_OBJCOPY" "$OPT_VERBOSE"; then |
|
3031 CFG_SEPARATE_DEBUG_INFO=no |
|
3032 else |
|
3033 case "$PLATFORM" in |
|
3034 hpux-*) |
|
3035 # binutils on HP-UX is buggy; default to no. |
|
3036 CFG_SEPARATE_DEBUG_INFO=no |
|
3037 ;; |
|
3038 *) |
|
3039 CFG_SEPARATE_DEBUG_INFO=yes |
|
3040 ;; |
|
3041 esac |
|
3042 fi |
|
3043 fi |
|
3044 |
|
3045 # auto-detect -fvisibility support |
|
3046 if [ "$CFG_REDUCE_EXPORTS" = "auto" ]; then |
|
3047 if "$unixtests/fvisibility.test" "$TEST_COMPILER" "$OPT_VERBOSE"; then |
|
3048 CFG_REDUCE_EXPORTS=no |
|
3049 else |
|
3050 CFG_REDUCE_EXPORTS=yes |
|
3051 fi |
|
3052 fi |
|
3053 |
|
3054 # detect the availability of the -Bsymbolic-functions linker optimization |
|
3055 if [ "$CFG_REDUCE_RELOCATIONS" != "no" ]; then |
|
3056 if "$unixtests/bsymbolic_functions.test" "$TEST_COMPILER" "$OPT_VERBOSE"; then |
|
3057 CFG_REDUCE_RELOCATIONS=no |
|
3058 else |
|
3059 CFG_REDUCE_RELOCATIONS=yes |
|
3060 fi |
|
3061 fi |
|
3062 |
|
3063 # auto-detect GNU make support |
|
3064 if [ "$CFG_USE_GNUMAKE" = "auto" ] && "$MAKE" -v | grep "GNU Make" >/dev/null 2>&1; then |
|
3065 CFG_USE_GNUMAKE=yes |
|
3066 fi |
|
3067 |
|
3068 # If -opengl wasn't specified, don't try to auto-detect |
|
3069 if [ "$PLATFORM_QWS" = "yes" ] && [ "$CFG_OPENGL" = "auto" ]; then |
|
3070 CFG_OPENGL=no |
|
3071 fi |
|
3072 |
|
3073 # mac |
|
3074 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
3075 if [ "$CFG_OPENGL" = "auto" ] || [ "$CFG_OPENGL" = "yes" ]; then |
|
3076 CFG_OPENGL=desktop |
|
3077 fi |
|
3078 fi |
|
3079 |
|
3080 # find the default framework value |
|
3081 if [ "$PLATFORM_MAC" = "yes" ] && [ "$PLATFORM" != "macx-xlc" ]; then |
|
3082 if [ "$CFG_FRAMEWORK" = "auto" ]; then |
|
3083 CFG_FRAMEWORK="$CFG_SHARED" |
|
3084 elif [ "$CFG_FRAMEWORK" = "yes" ] && [ "$CFG_SHARED" = "no" ]; then |
|
3085 echo |
|
3086 echo "WARNING: Using static linking will disable the use of Mac frameworks." |
|
3087 echo |
|
3088 CFG_FRAMEWORK="no" |
|
3089 fi |
|
3090 else |
|
3091 CFG_FRAMEWORK=no |
|
3092 fi |
|
3093 |
|
3094 # Print a warning if configure was called with the 10.4u SDK option on Snow Leopard |
|
3095 # with the default mkspec. The 10.4u SDK does not support gcc 4.2. |
|
3096 if [ "$PLATFORM_MAC" = "yes" ] && [ '!' -z "$CFG_SDK" ]; then |
|
3097 # get the darwin version. 10.0.0 and up means snow leopard. |
|
3098 VERSION=`uname -r | tr '.' ' ' | awk '{print $1}'` |
|
3099 if [ "$VERSION" -gt 9 ] && [ "$CFG_SDK" == "/Developer/SDKs/MacOSX10.4u.sdk/" ] && [ "$PLATFORM" == "macx-g++" ]; then |
|
3100 echo |
|
3101 echo "WARNING: The 10.4u SDK does not support gcc 4.2. Configure with -platform macx-g++40. " |
|
3102 echo |
|
3103 fi |
|
3104 fi |
|
3105 |
|
3106 # x11 tests are done after qmake is built |
|
3107 |
|
3108 |
|
3109 #setup the build parts |
|
3110 if [ -z "$CFG_BUILD_PARTS" ]; then |
|
3111 CFG_BUILD_PARTS="$QT_DEFAULT_BUILD_PARTS" |
|
3112 |
|
3113 # don't build tools by default when cross-compiling |
|
3114 if [ "$PLATFORM" != "$XPLATFORM" ]; then |
|
3115 CFG_BUILD_PARTS=`echo "$CFG_BUILD_PARTS" | sed "s, tools,,g"` |
|
3116 fi |
|
3117 fi |
|
3118 for nobuild in $CFG_NOBUILD_PARTS; do |
|
3119 CFG_BUILD_PARTS=`echo "$CFG_BUILD_PARTS" | sed "s, $nobuild,,g"` |
|
3120 done |
|
3121 if echo $CFG_BUILD_PARTS | grep -v libs >/dev/null 2>&1; then |
|
3122 # echo |
|
3123 # echo "WARNING: libs is a required part of the build." |
|
3124 # echo |
|
3125 CFG_BUILD_PARTS="$CFG_BUILD_PARTS libs" |
|
3126 fi |
|
3127 |
|
3128 #------------------------------------------------------------------------------- |
|
3129 # post process QT_INSTALL_* variables |
|
3130 #------------------------------------------------------------------------------- |
|
3131 |
|
3132 #prefix |
|
3133 if [ -z "$QT_INSTALL_PREFIX" ]; then |
|
3134 if [ "$CFG_DEV" = "yes" ]; then |
|
3135 QT_INSTALL_PREFIX="$outpath" # In Development, we use sandboxed builds by default |
|
3136 elif [ "$PLATFORM_QWS" = "yes" ]; then |
|
3137 QT_INSTALL_PREFIX="/usr/local/Trolltech/QtEmbedded-${QT_VERSION}" |
|
3138 if [ "$PLATFORM" != "$XPLATFORM" ]; then |
|
3139 QT_INSTALL_PREFIX="${QT_INSTALL_PREFIX}-${CFG_ARCH}" |
|
3140 fi |
|
3141 else |
|
3142 QT_INSTALL_PREFIX="/usr/local/Trolltech/Qt-${QT_VERSION}" # the default install prefix is /usr/local/Trolltech/Qt-$QT_VERSION |
|
3143 fi |
|
3144 fi |
|
3145 QT_INSTALL_PREFIX=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_PREFIX"` |
|
3146 |
|
3147 #docs |
|
3148 if [ -z "$QT_INSTALL_DOCS" ]; then #default |
|
3149 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then |
|
3150 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
3151 QT_INSTALL_DOCS="/Developer/Documentation/Qt" |
|
3152 fi |
|
3153 fi |
|
3154 [ -z "$QT_INSTALL_DOCS" ] && QT_INSTALL_DOCS="$QT_INSTALL_PREFIX/doc" #fallback |
|
3155 |
|
3156 fi |
|
3157 QT_INSTALL_DOCS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_DOCS"` |
|
3158 |
|
3159 #headers |
|
3160 if [ -z "$QT_INSTALL_HEADERS" ]; then #default |
|
3161 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then |
|
3162 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
3163 if [ "$CFG_FRAMEWORK" = "yes" ]; then |
|
3164 QT_INSTALL_HEADERS= |
|
3165 fi |
|
3166 fi |
|
3167 fi |
|
3168 [ -z "$QT_INSTALL_HEADERS" ] && QT_INSTALL_HEADERS="$QT_INSTALL_PREFIX/include" |
|
3169 |
|
3170 fi |
|
3171 QT_INSTALL_HEADERS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_HEADERS"` |
|
3172 |
|
3173 #libs |
|
3174 if [ -z "$QT_INSTALL_LIBS" ]; then #default |
|
3175 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then |
|
3176 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
3177 if [ "$CFG_FRAMEWORK" = "yes" ]; then |
|
3178 QT_INSTALL_LIBS="/Libraries/Frameworks" |
|
3179 fi |
|
3180 fi |
|
3181 fi |
|
3182 [ -z "$QT_INSTALL_LIBS" ] && QT_INSTALL_LIBS="$QT_INSTALL_PREFIX/lib" #fallback |
|
3183 fi |
|
3184 QT_INSTALL_LIBS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_LIBS"` |
|
3185 |
|
3186 #bins |
|
3187 if [ -z "$QT_INSTALL_BINS" ]; then #default |
|
3188 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then |
|
3189 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
3190 QT_INSTALL_BINS="/Developer/Applications/Qt" |
|
3191 fi |
|
3192 fi |
|
3193 [ -z "$QT_INSTALL_BINS" ] && QT_INSTALL_BINS="$QT_INSTALL_PREFIX/bin" #fallback |
|
3194 |
|
3195 fi |
|
3196 QT_INSTALL_BINS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_BINS"` |
|
3197 |
|
3198 #plugins |
|
3199 if [ -z "$QT_INSTALL_PLUGINS" ]; then #default |
|
3200 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then |
|
3201 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
3202 QT_INSTALL_PLUGINS="/Developer/Applications/Qt/plugins" |
|
3203 fi |
|
3204 fi |
|
3205 [ -z "$QT_INSTALL_PLUGINS" ] && QT_INSTALL_PLUGINS="$QT_INSTALL_PREFIX/plugins" #fallback |
|
3206 fi |
|
3207 QT_INSTALL_PLUGINS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_PLUGINS"` |
|
3208 |
|
3209 #data |
|
3210 if [ -z "$QT_INSTALL_DATA" ]; then #default |
|
3211 QT_INSTALL_DATA="$QT_INSTALL_PREFIX" |
|
3212 fi |
|
3213 QT_INSTALL_DATA=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_DATA"` |
|
3214 |
|
3215 #translations |
|
3216 if [ -z "$QT_INSTALL_TRANSLATIONS" ]; then #default |
|
3217 QT_INSTALL_TRANSLATIONS="$QT_INSTALL_PREFIX/translations" |
|
3218 fi |
|
3219 QT_INSTALL_TRANSLATIONS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_TRANSLATIONS"` |
|
3220 |
|
3221 #settings |
|
3222 if [ -z "$QT_INSTALL_SETTINGS" ]; then #default |
|
3223 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
3224 QT_INSTALL_SETTINGS=/Library/Preferences/Qt |
|
3225 else |
|
3226 QT_INSTALL_SETTINGS=/etc/xdg |
|
3227 fi |
|
3228 fi |
|
3229 QT_INSTALL_SETTINGS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_SETTINGS"` |
|
3230 |
|
3231 #examples |
|
3232 if [ -z "$QT_INSTALL_EXAMPLES" ]; then #default |
|
3233 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then |
|
3234 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
3235 QT_INSTALL_EXAMPLES="/Developer/Examples/Qt" |
|
3236 fi |
|
3237 fi |
|
3238 [ -z "$QT_INSTALL_EXAMPLES" ] && QT_INSTALL_EXAMPLES="$QT_INSTALL_PREFIX/examples" #fallback |
|
3239 fi |
|
3240 QT_INSTALL_EXAMPLES=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_EXAMPLES"` |
|
3241 |
|
3242 #demos |
|
3243 if [ -z "$QT_INSTALL_DEMOS" ]; then #default |
|
3244 if [ "$CFG_PREFIX_INSTALL" = "no" ]; then |
|
3245 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
3246 QT_INSTALL_DEMOS="/Developer/Examples/Qt/Demos" |
|
3247 fi |
|
3248 fi |
|
3249 [ -z "$QT_INSTALL_DEMOS" ] && QT_INSTALL_DEMOS="$QT_INSTALL_PREFIX/demos" |
|
3250 fi |
|
3251 QT_INSTALL_DEMOS=`"$relpath/config.tests/unix/makeabs" "$QT_INSTALL_DEMOS"` |
|
3252 |
|
3253 #------------------------------------------------------------------------------- |
|
3254 # help - interactive parts of the script _after_ this section please |
|
3255 #------------------------------------------------------------------------------- |
|
3256 |
|
3257 # next, emit a usage message if something failed. |
|
3258 if [ "$OPT_HELP" = "yes" ]; then |
|
3259 [ "x$ERROR" = "xyes" ] && echo |
|
3260 if [ "$CFG_NIS" = "no" ]; then |
|
3261 NSY=" " |
|
3262 NSN="*" |
|
3263 else |
|
3264 NSY="*" |
|
3265 NSN=" " |
|
3266 fi |
|
3267 if [ "$CFG_CUPS" = "no" ]; then |
|
3268 CUY=" " |
|
3269 CUN="*" |
|
3270 else |
|
3271 CUY="*" |
|
3272 CUN=" " |
|
3273 fi |
|
3274 if [ "$CFG_ICONV" = "no" ]; then |
|
3275 CIY=" " |
|
3276 CIN="*" |
|
3277 else |
|
3278 CIY="*" |
|
3279 CIN=" " |
|
3280 fi |
|
3281 if [ "$CFG_LARGEFILE" = "no" ]; then |
|
3282 LFSY=" " |
|
3283 LFSN="*" |
|
3284 else |
|
3285 LFSY="*" |
|
3286 LFSN=" " |
|
3287 fi |
|
3288 if [ "$CFG_STL" = "auto" ] || [ "$CFG_STL" = "yes" ]; then |
|
3289 SHY="*" |
|
3290 SHN=" " |
|
3291 else |
|
3292 SHY=" " |
|
3293 SHN="*" |
|
3294 fi |
|
3295 if [ "$CFG_IPV6" = "auto" ]; then |
|
3296 I6Y="*" |
|
3297 I6N=" " |
|
3298 fi |
|
3299 if [ "$CFG_PRECOMPILE" = "auto" ] || [ "$CFG_PRECOMPILE" = "no" ]; then |
|
3300 PHY=" " |
|
3301 PHN="*" |
|
3302 else |
|
3303 PHY="*" |
|
3304 PHN=" " |
|
3305 fi |
|
3306 |
|
3307 cat <<EOF |
|
3308 Usage: $relconf [-h] [-prefix <dir>] [-prefix-install] [-bindir <dir>] [-libdir <dir>] |
|
3309 [-docdir <dir>] [-headerdir <dir>] [-plugindir <dir> ] [-datadir <dir>] |
|
3310 [-translationdir <dir>] [-sysconfdir <dir>] [-examplesdir <dir>] |
|
3311 [-demosdir <dir>] [-buildkey <key>] [-release] [-debug] |
|
3312 [-debug-and-release] [-developer-build] [-shared] [-static] [-no-fast] [-fast] [-no-largefile] |
|
3313 [-largefile] [-no-exceptions] [-exceptions] [-no-accessibility] |
|
3314 [-accessibility] [-no-stl] [-stl] [-no-sql-<driver>] [-sql-<driver>] |
|
3315 [-plugin-sql-<driver>] [-system-sqlite] [-no-qt3support] [-qt3support] |
|
3316 [-platform] [-D <string>] [-I <string>] [-L <string>] [-help] |
|
3317 [-qt-zlib] [-system-zlib] [-no-gif] [-qt-gif] [-no-libtiff] [-qt-libtiff] [-system-libtiff] |
|
3318 [-no-libpng] [-qt-libpng] [-system-libpng] [-no-libmng] [-qt-libmng] |
|
3319 [-system-libmng] [-no-libjpeg] [-qt-libjpeg] [-system-libjpeg] [-make <part>] |
|
3320 [-nomake <part>] [-R <string>] [-l <string>] [-no-rpath] [-rpath] [-continue] |
|
3321 [-verbose] [-v] [-silent] [-no-nis] [-nis] [-no-cups] [-cups] [-no-iconv] |
|
3322 [-iconv] [-no-pch] [-pch] [-no-dbus] [-dbus] [-dbus-linked] |
|
3323 [-no-separate-debug-info] [-no-mmx] [-no-3dnow] [-no-sse] [-no-sse2] |
|
3324 [-qtnamespace <namespace>] [-qtlibinfix <infix>] [-separate-debug-info] [-armfpa] |
|
3325 [-no-optimized-qmake] [-optimized-qmake] [-no-xmlpatterns] [-xmlpatterns] |
|
3326 [-no-multimedia] [-multimedia] [-no-phonon] [-phonon] [-no-phonon-backend] [-phonon-backend] |
|
3327 [-no-audio-backend] [-audio-backend] [-no-openssl] [-openssl] [-openssl-linked] |
|
3328 [-no-gtkstyle] [-gtkstyle] [-no-svg] [-svg] [-no-webkit] [-webkit] [-no-javascript-jit] [-javascript-jit] |
|
3329 [-no-script] [-script] [-no-scripttools] [-scripttools] [-no-declarative] [-declarative] |
|
3330 |
|
3331 [additional platform specific options (see below)] |
|
3332 |
|
3333 |
|
3334 Installation options: |
|
3335 |
|
3336 These are optional, but you may specify install directories. |
|
3337 |
|
3338 -prefix <dir> ...... This will install everything relative to <dir> |
|
3339 (default $QT_INSTALL_PREFIX) |
|
3340 EOF |
|
3341 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
3342 cat <<EOF |
|
3343 |
|
3344 -hostprefix [dir] .. Tools and libraries needed when developing |
|
3345 applications are installed in [dir]. If [dir] is |
|
3346 not given, the current build directory will be used. |
|
3347 EOF |
|
3348 fi |
|
3349 cat <<EOF |
|
3350 |
|
3351 * -prefix-install .... Force a sandboxed "local" installation of |
|
3352 Qt. This will install into |
|
3353 $QT_INSTALL_PREFIX, if this option is |
|
3354 disabled then some platforms will attempt a |
|
3355 "system" install by placing default values to |
|
3356 be placed in a system location other than |
|
3357 PREFIX. |
|
3358 |
|
3359 You may use these to separate different parts of the install: |
|
3360 |
|
3361 -bindir <dir> ......... Executables will be installed to <dir> |
|
3362 (default PREFIX/bin) |
|
3363 -libdir <dir> ......... Libraries will be installed to <dir> |
|
3364 (default PREFIX/lib) |
|
3365 -docdir <dir> ......... Documentation will be installed to <dir> |
|
3366 (default PREFIX/doc) |
|
3367 -headerdir <dir> ...... Headers will be installed to <dir> |
|
3368 (default PREFIX/include) |
|
3369 -plugindir <dir> ...... Plugins will be installed to <dir> |
|
3370 (default PREFIX/plugins) |
|
3371 -datadir <dir> ........ Data used by Qt programs will be installed to <dir> |
|
3372 (default PREFIX) |
|
3373 -translationdir <dir> . Translations of Qt programs will be installed to <dir> |
|
3374 (default PREFIX/translations) |
|
3375 -sysconfdir <dir> ..... Settings used by Qt programs will be looked for in <dir> |
|
3376 (default PREFIX/etc/settings) |
|
3377 -examplesdir <dir> .... Examples will be installed to <dir> |
|
3378 (default PREFIX/examples) |
|
3379 -demosdir <dir> ....... Demos will be installed to <dir> |
|
3380 (default PREFIX/demos) |
|
3381 |
|
3382 You may use these options to turn on strict plugin loading. |
|
3383 |
|
3384 -buildkey <key> .... Build the Qt library and plugins using the specified |
|
3385 <key>. When the library loads plugins, it will only |
|
3386 load those that have a matching key. |
|
3387 |
|
3388 Configure options: |
|
3389 |
|
3390 The defaults (*) are usually acceptable. A plus (+) denotes a default value |
|
3391 that needs to be evaluated. If the evaluation succeeds, the feature is |
|
3392 included. Here is a short explanation of each option: |
|
3393 |
|
3394 * -release ........... Compile and link Qt with debugging turned off. |
|
3395 -debug ............. Compile and link Qt with debugging turned on. |
|
3396 -debug-and-release . Compile and link two versions of Qt, with and without |
|
3397 debugging turned on (Mac only). |
|
3398 |
|
3399 -developer-build ... Compile and link Qt with Qt developer options (including auto-tests exporting) |
|
3400 |
|
3401 -opensource ........ Compile and link the Open-Source Edition of Qt. |
|
3402 -commercial ........ Compile and link the Commercial Edition of Qt. |
|
3403 |
|
3404 |
|
3405 * -shared ............ Create and use shared Qt libraries. |
|
3406 -static ............ Create and use static Qt libraries. |
|
3407 |
|
3408 * -no-fast ........... Configure Qt normally by generating Makefiles for all |
|
3409 project files. |
|
3410 -fast .............. Configure Qt quickly by generating Makefiles only for |
|
3411 library and subdirectory targets. All other Makefiles |
|
3412 are created as wrappers, which will in turn run qmake. |
|
3413 |
|
3414 -no-largefile ...... Disables large file support. |
|
3415 + -largefile ......... Enables Qt to access files larger than 4 GB. |
|
3416 |
|
3417 EOF |
|
3418 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
3419 EXCN="*" |
|
3420 EXCY=" " |
|
3421 else |
|
3422 EXCN=" " |
|
3423 EXCY="*" |
|
3424 fi |
|
3425 if [ "$CFG_DBUS" = "no" ]; then |
|
3426 DBY=" " |
|
3427 DBN="+" |
|
3428 else |
|
3429 DBY="+" |
|
3430 DBN=" " |
|
3431 fi |
|
3432 |
|
3433 cat << EOF |
|
3434 $EXCN -no-exceptions ..... Disable exceptions on compilers that support it. |
|
3435 $EXCY -exceptions ........ Enable exceptions on compilers that support it. |
|
3436 |
|
3437 -no-accessibility .. Do not compile Accessibility support. |
|
3438 * -accessibility ..... Compile Accessibility support. |
|
3439 |
|
3440 $SHN -no-stl ............ Do not compile STL support. |
|
3441 $SHY -stl ............... Compile STL support. |
|
3442 |
|
3443 -no-sql-<driver> ... Disable SQL <driver> entirely. |
|
3444 -qt-sql-<driver> ... Enable a SQL <driver> in the QtSql library, by default |
|
3445 none are turned on. |
|
3446 -plugin-sql-<driver> Enable SQL <driver> as a plugin to be linked to |
|
3447 at run time. |
|
3448 |
|
3449 Possible values for <driver>: |
|
3450 [ $CFG_SQL_AVAILABLE ] |
|
3451 |
|
3452 -system-sqlite ..... Use sqlite from the operating system. |
|
3453 |
|
3454 -no-qt3support ..... Disables the Qt 3 support functionality. |
|
3455 * -qt3support ........ Enables the Qt 3 support functionality. |
|
3456 |
|
3457 -no-xmlpatterns .... Do not build the QtXmlPatterns module. |
|
3458 + -xmlpatterns ....... Build the QtXmlPatterns module. |
|
3459 QtXmlPatterns is built if a decent C++ compiler |
|
3460 is used and exceptions are enabled. |
|
3461 |
|
3462 -no-multimedia ..... Do not build the QtMultimedia module. |
|
3463 + -multimedia ........ Build the QtMultimedia module. |
|
3464 |
|
3465 -no-audio-backend .. Do not build the platform audio backend into QtMultimedia. |
|
3466 + -audio-backend ..... Build the platform audio backend into QtMultimedia if available. |
|
3467 |
|
3468 -no-phonon ......... Do not build the Phonon module. |
|
3469 + -phonon ............ Build the Phonon module. |
|
3470 Phonon is built if a decent C++ compiler is used. |
|
3471 -no-phonon-backend.. Do not build the platform phonon plugin. |
|
3472 + -phonon-backend..... Build the platform phonon plugin. |
|
3473 |
|
3474 -no-svg ............ Do not build the SVG module. |
|
3475 + -svg ............... Build the SVG module. |
|
3476 |
|
3477 -no-webkit ......... Do not build the WebKit module. |
|
3478 + -webkit ............ Build the WebKit module. |
|
3479 WebKit is built if a decent C++ compiler is used. |
|
3480 |
|
3481 -no-javascript-jit . Do not build the JavaScriptCore JIT compiler. |
|
3482 + -javascript-jit .... Build the JavaScriptCore JIT compiler. |
|
3483 |
|
3484 -no-script ......... Do not build the QtScript module. |
|
3485 + -script ............ Build the QtScript module. |
|
3486 |
|
3487 -no-scripttools .... Do not build the QtScriptTools module. |
|
3488 + -scripttools ....... Build the QtScriptTools module. |
|
3489 |
|
3490 + -no-declarative .....Do not build the declarative module. |
|
3491 -declarative ....... Build the declarative module. |
|
3492 |
|
3493 -platform target ... The operating system and compiler you are building |
|
3494 on ($PLATFORM). |
|
3495 |
|
3496 See the README file for a list of supported |
|
3497 operating systems and compilers. |
|
3498 EOF |
|
3499 if [ "${PLATFORM_QWS}" != "yes" ]; then |
|
3500 cat << EOF |
|
3501 -graphicssystem <sys> Sets an alternate graphics system. Available options are: |
|
3502 raster - Software rasterizer |
|
3503 opengl - Rendering via OpenGL, Experimental! |
|
3504 EOF |
|
3505 fi |
|
3506 cat << EOF |
|
3507 |
|
3508 -no-mmx ............ Do not compile with use of MMX instructions. |
|
3509 -no-3dnow .......... Do not compile with use of 3DNOW instructions. |
|
3510 -no-sse ............ Do not compile with use of SSE instructions. |
|
3511 -no-sse2 ........... Do not compile with use of SSE2 instructions. |
|
3512 |
|
3513 -qtnamespace <name> Wraps all Qt library code in 'namespace <name> {...}'. |
|
3514 -qtlibinfix <infix> Renames all libQt*.so to libQt*<infix>.so. |
|
3515 |
|
3516 -D <string> ........ Add an explicit define to the preprocessor. |
|
3517 -I <string> ........ Add an explicit include path. |
|
3518 -L <string> ........ Add an explicit library path. |
|
3519 |
|
3520 -help, -h .......... Display this information. |
|
3521 |
|
3522 Third Party Libraries: |
|
3523 |
|
3524 -qt-zlib ........... Use the zlib bundled with Qt. |
|
3525 + -system-zlib ....... Use zlib from the operating system. |
|
3526 See http://www.gzip.org/zlib |
|
3527 |
|
3528 -no-gif ............ Do not compile the plugin for GIF reading support. |
|
3529 * -qt-gif ............ Compile the plugin for GIF reading support. |
|
3530 See also src/plugins/imageformats/gif/qgifhandler.h |
|
3531 |
|
3532 -no-libtiff ........ Do not compile the plugin for TIFF support. |
|
3533 -qt-libtiff ........ Use the libtiff bundled with Qt. |
|
3534 + -system-libtiff .... Use libtiff from the operating system. |
|
3535 See http://www.libtiff.org |
|
3536 |
|
3537 -no-libpng ......... Do not compile in PNG support. |
|
3538 -qt-libpng ......... Use the libpng bundled with Qt. |
|
3539 + -system-libpng ..... Use libpng from the operating system. |
|
3540 See http://www.libpng.org/pub/png |
|
3541 |
|
3542 -no-libmng ......... Do not compile the plugin for MNG support. |
|
3543 -qt-libmng ......... Use the libmng bundled with Qt. |
|
3544 + -system-libmng ..... Use libmng from the operating system. |
|
3545 See http://www.libmng.com |
|
3546 |
|
3547 -no-libjpeg ........ Do not compile the plugin for JPEG support. |
|
3548 -qt-libjpeg ........ Use the libjpeg bundled with Qt. |
|
3549 + -system-libjpeg .... Use libjpeg from the operating system. |
|
3550 See http://www.ijg.org |
|
3551 |
|
3552 -no-openssl ........ Do not compile support for OpenSSL. |
|
3553 + -openssl ........... Enable run-time OpenSSL support. |
|
3554 -openssl-linked .... Enabled linked OpenSSL support. |
|
3555 |
|
3556 -ptmalloc .......... Override the system memory allocator with ptmalloc. |
|
3557 (Experimental.) |
|
3558 |
|
3559 Additional options: |
|
3560 |
|
3561 -make <part> ....... Add part to the list of parts to be built at make time. |
|
3562 ($QT_DEFAULT_BUILD_PARTS) |
|
3563 -nomake <part> ..... Exclude part from the list of parts to be built. |
|
3564 |
|
3565 -R <string> ........ Add an explicit runtime library path to the Qt |
|
3566 libraries. |
|
3567 -l <string> ........ Add an explicit library. |
|
3568 |
|
3569 -no-rpath .......... Do not use the library install path as a runtime |
|
3570 library path. |
|
3571 + -rpath ............. Link Qt libraries and executables using the library |
|
3572 install path as a runtime library path. Equivalent |
|
3573 to -R install_libpath |
|
3574 |
|
3575 -continue .......... Continue as far as possible if an error occurs. |
|
3576 |
|
3577 -verbose, -v ....... Print verbose information about each step of the |
|
3578 configure process. |
|
3579 |
|
3580 -silent ............ Reduce the build output so that warnings and errors |
|
3581 can be seen more easily. |
|
3582 |
|
3583 * -no-optimized-qmake ... Do not build qmake optimized. |
|
3584 -optimized-qmake ...... Build qmake optimized. |
|
3585 |
|
3586 $NSN -no-nis ............ Do not compile NIS support. |
|
3587 $NSY -nis ............... Compile NIS support. |
|
3588 |
|
3589 $CUN -no-cups ........... Do not compile CUPS support. |
|
3590 $CUY -cups .............. Compile CUPS support. |
|
3591 Requires cups/cups.h and libcups.so.2. |
|
3592 |
|
3593 $CIN -no-iconv .......... Do not compile support for iconv(3). |
|
3594 $CIY -iconv ............. Compile support for iconv(3). |
|
3595 |
|
3596 $PHN -no-pch ............ Do not use precompiled header support. |
|
3597 $PHY -pch ............... Use precompiled header support. |
|
3598 |
|
3599 $DBN -no-dbus ........... Do not compile the QtDBus module. |
|
3600 $DBY -dbus .............. Compile the QtDBus module and dynamically load libdbus-1. |
|
3601 -dbus-linked ....... Compile the QtDBus module and link to libdbus-1. |
|
3602 |
|
3603 -reduce-relocations ..... Reduce relocations in the libraries through extra |
|
3604 linker optimizations (Qt/X11 and Qt for Embedded Linux only; |
|
3605 experimental; needs GNU ld >= 2.18). |
|
3606 EOF |
|
3607 |
|
3608 if [ "$CFG_SEPARATE_DEBUG_INFO" = "auto" ]; then |
|
3609 if [ "$QT_CROSS_COMPILE" = "yes" ]; then |
|
3610 SBY="" |
|
3611 SBN="*" |
|
3612 else |
|
3613 SBY="*" |
|
3614 SBN=" " |
|
3615 fi |
|
3616 elif [ "$CFG_SEPARATE_DEBUG_INFO" = "yes" ]; then |
|
3617 SBY="*" |
|
3618 SBN=" " |
|
3619 else |
|
3620 SBY=" " |
|
3621 SBN="*" |
|
3622 fi |
|
3623 |
|
3624 if [ "$PLATFORM_X11" = "yes" -o "$PLATFORM_QWS" = "yes" ]; then |
|
3625 |
|
3626 cat << EOF |
|
3627 |
|
3628 $SBN -no-separate-debug-info . Do not store debug information in a separate file. |
|
3629 $SBY -separate-debug-info .... Strip debug information into a separate .debug file. |
|
3630 |
|
3631 EOF |
|
3632 |
|
3633 fi # X11/QWS |
|
3634 |
|
3635 if [ "$PLATFORM_X11" = "yes" ]; then |
|
3636 if [ "$CFG_SM" = "no" ]; then |
|
3637 SMY=" " |
|
3638 SMN="*" |
|
3639 else |
|
3640 SMY="*" |
|
3641 SMN=" " |
|
3642 fi |
|
3643 if [ "$CFG_XSHAPE" = "no" ]; then |
|
3644 SHY=" " |
|
3645 SHN="*" |
|
3646 else |
|
3647 SHY="*" |
|
3648 SHN=" " |
|
3649 fi |
|
3650 if [ "$CFG_XINERAMA" = "no" ]; then |
|
3651 XAY=" " |
|
3652 XAN="*" |
|
3653 else |
|
3654 XAY="*" |
|
3655 XAN=" " |
|
3656 fi |
|
3657 if [ "$CFG_FONTCONFIG" = "no" ]; then |
|
3658 FCGY=" " |
|
3659 FCGN="*" |
|
3660 else |
|
3661 FCGY="*" |
|
3662 FCGN=" " |
|
3663 fi |
|
3664 if [ "$CFG_XCURSOR" = "no" ]; then |
|
3665 XCY=" " |
|
3666 XCN="*" |
|
3667 else |
|
3668 XCY="*" |
|
3669 XCN=" " |
|
3670 fi |
|
3671 if [ "$CFG_XFIXES" = "no" ]; then |
|
3672 XFY=" " |
|
3673 XFN="*" |
|
3674 else |
|
3675 XFY="*" |
|
3676 XFN=" " |
|
3677 fi |
|
3678 if [ "$CFG_XRANDR" = "no" ]; then |
|
3679 XZY=" " |
|
3680 XZN="*" |
|
3681 else |
|
3682 XZY="*" |
|
3683 XZN=" " |
|
3684 fi |
|
3685 if [ "$CFG_XRENDER" = "no" ]; then |
|
3686 XRY=" " |
|
3687 XRN="*" |
|
3688 else |
|
3689 XRY="*" |
|
3690 XRN=" " |
|
3691 fi |
|
3692 if [ "$CFG_MITSHM" = "no" ]; then |
|
3693 XMY=" " |
|
3694 XMN="*" |
|
3695 else |
|
3696 XMY="*" |
|
3697 XMN=" " |
|
3698 fi |
|
3699 if [ "$CFG_XINPUT" = "no" ]; then |
|
3700 XIY=" " |
|
3701 XIN="*" |
|
3702 else |
|
3703 XIY="*" |
|
3704 XIN=" " |
|
3705 fi |
|
3706 if [ "$CFG_XKB" = "no" ]; then |
|
3707 XKY=" " |
|
3708 XKN="*" |
|
3709 else |
|
3710 XKY="*" |
|
3711 XKN=" " |
|
3712 fi |
|
3713 if [ "$CFG_IM" = "no" ]; then |
|
3714 IMY=" " |
|
3715 IMN="*" |
|
3716 else |
|
3717 IMY="*" |
|
3718 IMN=" " |
|
3719 fi |
|
3720 cat << EOF |
|
3721 |
|
3722 Qt/X11 only: |
|
3723 |
|
3724 -no-gtkstyle ....... Do not build the GTK theme integration. |
|
3725 + -gtkstyle .......... Build the GTK theme integration. |
|
3726 |
|
3727 * -no-nas-sound ...... Do not compile in NAS sound support. |
|
3728 -system-nas-sound .. Use NAS libaudio from the operating system. |
|
3729 See http://radscan.com/nas.html |
|
3730 |
|
3731 -no-opengl ......... Do not support OpenGL. |
|
3732 + -opengl <api> ...... Enable OpenGL support. |
|
3733 With no parameter, this will auto-detect the "best" |
|
3734 OpenGL API to use. If desktop OpenGL is available, it |
|
3735 will be used. Use desktop, es1, es1cl or es2 for <api> |
|
3736 to force the use of the Desktop (OpenGL 1.x or 2.x), |
|
3737 OpenGL ES 1.x Common profile, 1.x Common Lite profile |
|
3738 or 2.x APIs instead. On X11, the EGL API will be used |
|
3739 to manage GL contexts in the case of OpenGL ES |
|
3740 |
|
3741 -no-openvg ........ Do not support OpenVG. |
|
3742 + -openvg ........... Enable OpenVG support. |
|
3743 Requires EGL support, typically supplied by an OpenGL |
|
3744 or other graphics implementation. |
|
3745 |
|
3746 $SMN -no-sm ............. Do not support X Session Management. |
|
3747 $SMY -sm ................ Support X Session Management, links in -lSM -lICE. |
|
3748 |
|
3749 $SHN -no-xshape ......... Do not compile XShape support. |
|
3750 $SHY -xshape ............ Compile XShape support. |
|
3751 Requires X11/extensions/shape.h. |
|
3752 |
|
3753 $SHN -no-xsync .......... Do not compile XSync support. |
|
3754 $SHY -xsync ............. Compile XSync support. |
|
3755 Requires X11/extensions/sync.h. |
|
3756 |
|
3757 $XAN -no-xinerama ....... Do not compile Xinerama (multihead) support. |
|
3758 $XAY -xinerama .......... Compile Xinerama support. |
|
3759 Requires X11/extensions/Xinerama.h and libXinerama. |
|
3760 By default, Xinerama support will be compiled if |
|
3761 available and the shared libraries are dynamically |
|
3762 loaded at runtime. |
|
3763 |
|
3764 $XCN -no-xcursor ........ Do not compile Xcursor support. |
|
3765 $XCY -xcursor ........... Compile Xcursor support. |
|
3766 Requires X11/Xcursor/Xcursor.h and libXcursor. |
|
3767 By default, Xcursor support will be compiled if |
|
3768 available and the shared libraries are dynamically |
|
3769 loaded at runtime. |
|
3770 |
|
3771 $XFN -no-xfixes ......... Do not compile Xfixes support. |
|
3772 $XFY -xfixes ............ Compile Xfixes support. |
|
3773 Requires X11/extensions/Xfixes.h and libXfixes. |
|
3774 By default, Xfixes support will be compiled if |
|
3775 available and the shared libraries are dynamically |
|
3776 loaded at runtime. |
|
3777 |
|
3778 $XZN -no-xrandr ......... Do not compile Xrandr (resize and rotate) support. |
|
3779 $XZY -xrandr ............ Compile Xrandr support. |
|
3780 Requires X11/extensions/Xrandr.h and libXrandr. |
|
3781 |
|
3782 $XRN -no-xrender ........ Do not compile Xrender support. |
|
3783 $XRY -xrender ........... Compile Xrender support. |
|
3784 Requires X11/extensions/Xrender.h and libXrender. |
|
3785 |
|
3786 $XMN -no-mitshm ......... Do not compile MIT-SHM support. |
|
3787 $XMY -mitshm ............ Compile MIT-SHM support. |
|
3788 Requires sys/ipc.h, sys/shm.h and X11/extensions/XShm.h |
|
3789 |
|
3790 $FCGN -no-fontconfig ..... Do not compile FontConfig (anti-aliased font) support. |
|
3791 $FCGY -fontconfig ........ Compile FontConfig support. |
|
3792 Requires fontconfig/fontconfig.h, libfontconfig, |
|
3793 freetype.h and libfreetype. |
|
3794 |
|
3795 $XIN -no-xinput ......... Do not compile Xinput support. |
|
3796 $XIY -xinput ............ Compile Xinput support. This also enabled tablet support |
|
3797 which requires IRIX with wacom.h and libXi or |
|
3798 XFree86 with X11/extensions/XInput.h and libXi. |
|
3799 |
|
3800 $XKN -no-xkb ............ Do not compile XKB (X KeyBoard extension) support. |
|
3801 $XKY -xkb ............... Compile XKB support. |
|
3802 |
|
3803 EOF |
|
3804 fi |
|
3805 |
|
3806 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
3807 cat << EOF |
|
3808 |
|
3809 Qt/Mac only: |
|
3810 |
|
3811 -Fstring ........... Add an explicit framework path. |
|
3812 -fw string ......... Add an explicit framework. |
|
3813 |
|
3814 -cocoa ............. Build the Cocoa version of Qt. Note that -no-framework |
|
3815 and -static is not supported with -cocoa. Specifying |
|
3816 this option creates Qt binaries that requires Mac OS X |
|
3817 10.5 or higher. |
|
3818 |
|
3819 * -framework ......... Build Qt as a series of frameworks and |
|
3820 link tools against those frameworks. |
|
3821 -no-framework ...... Do not build Qt as a series of frameworks. |
|
3822 |
|
3823 * -dwarf2 ............ Enable dwarf2 debugging symbols. |
|
3824 -no-dwarf2 ......... Disable dwarf2 debugging symbols. |
|
3825 |
|
3826 -universal ......... Equivalent to -arch "ppc x86" |
|
3827 |
|
3828 -arch <arch> ....... Build Qt for <arch> |
|
3829 Example values for <arch>: x86 ppc x86_64 ppc64 |
|
3830 Multiple -arch arguments can be specified, 64-bit archs |
|
3831 will be built with the Cocoa framework. |
|
3832 |
|
3833 -sdk <sdk> ......... Build Qt using Apple provided SDK <sdk>. This option requires gcc 4. |
|
3834 To use a different SDK with gcc 3.3, set the SDKROOT environment variable. |
|
3835 |
|
3836 EOF |
|
3837 fi |
|
3838 |
|
3839 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
3840 cat << EOF |
|
3841 |
|
3842 Qt for Embedded Linux only: |
|
3843 |
|
3844 -xplatform target ... The target platform when cross-compiling. |
|
3845 |
|
3846 -no-feature-<feature> Do not compile in <feature>. |
|
3847 -feature-<feature> .. Compile in <feature>. The available features |
|
3848 are described in src/corelib/global/qfeatures.txt |
|
3849 |
|
3850 -embedded <arch> .... This will enable the embedded build, you must have a |
|
3851 proper license for this switch to work. |
|
3852 Example values for <arch>: arm mips x86 generic |
|
3853 |
|
3854 -armfpa ............. Target platform uses the ARM-FPA floating point format. |
|
3855 -no-armfpa .......... Target platform does not use the ARM-FPA floating point format. |
|
3856 |
|
3857 The floating point format is usually autodetected by configure. Use this |
|
3858 to override the detected value. |
|
3859 |
|
3860 -little-endian ...... Target platform is little endian (LSB first). |
|
3861 -big-endian ......... Target platform is big endian (MSB first). |
|
3862 |
|
3863 -host-little-endian . Host platform is little endian (LSB first). |
|
3864 -host-big-endian .... Host platform is big endian (MSB first). |
|
3865 |
|
3866 You only need to specify the endianness when |
|
3867 cross-compiling, otherwise the host |
|
3868 endianness will be used. |
|
3869 |
|
3870 -no-freetype ........ Do not compile in Freetype2 support. |
|
3871 -qt-freetype ........ Use the libfreetype bundled with Qt. |
|
3872 * -system-freetype .... Use libfreetype from the operating system. |
|
3873 See http://www.freetype.org/ |
|
3874 |
|
3875 -qconfig local ...... Use src/corelib/global/qconfig-local.h rather than the |
|
3876 default ($CFG_QCONFIG). |
|
3877 |
|
3878 -depths <list> ...... Comma-separated list of supported bit-per-pixel |
|
3879 depths, from: 1, 4, 8, 12, 15, 16, 18, 24, 32 and 'all'. |
|
3880 |
|
3881 -qt-decoration-<style> ....Enable a decoration <style> in the QtGui library, |
|
3882 by default all available decorations are on. |
|
3883 Possible values for <style>: [ $CFG_DECORATION_AVAILABLE ] |
|
3884 -plugin-decoration-<style> Enable decoration <style> as a plugin to be |
|
3885 linked to at run time. |
|
3886 Possible values for <style>: [ $CFG_DECORATION_PLUGIN_AVAILABLE ] |
|
3887 -no-decoration-<style> ....Disable decoration <style> entirely. |
|
3888 Possible values for <style>: [ $CFG_DECORATION_AVAILABLE ] |
|
3889 |
|
3890 -no-opengl .......... Do not support OpenGL. |
|
3891 -opengl <api> ....... Enable OpenGL ES support |
|
3892 With no parameter, this will attempt to auto-detect OpenGL ES 1.x |
|
3893 or 2.x. Use es1, es1cl or es2 for <api> to override auto-detection. |
|
3894 |
|
3895 NOTE: A QGLScreen driver for the hardware is required to support |
|
3896 OpenGL ES on Qt for Embedded Linux. |
|
3897 |
|
3898 -qt-gfx-<driver> ... Enable a graphics <driver> in the QtGui library. |
|
3899 Possible values for <driver>: [ $CFG_GFX_AVAILABLE ] |
|
3900 -plugin-gfx-<driver> Enable graphics <driver> as a plugin to be |
|
3901 linked to at run time. |
|
3902 Possible values for <driver>: [ $CFG_GFX_PLUGIN_AVAILABLE ] |
|
3903 -no-gfx-<driver> ... Disable graphics <driver> entirely. |
|
3904 Possible values for <driver>: [ $CFG_GFX_AVAILABLE ] |
|
3905 |
|
3906 -qt-kbd-<driver> ... Enable a keyboard <driver> in the QtGui library. |
|
3907 Possible values for <driver>: [ $CFG_KBD_AVAILABLE ] |
|
3908 |
|
3909 -plugin-kbd-<driver> Enable keyboard <driver> as a plugin to be linked to |
|
3910 at runtime. |
|
3911 Possible values for <driver>: [ $CFG_KBD_PLUGIN_AVAILABLE ] |
|
3912 |
|
3913 -no-kbd-<driver> ... Disable keyboard <driver> entirely. |
|
3914 Possible values for <driver>: [ $CFG_KBD_AVAILABLE ] |
|
3915 |
|
3916 -qt-mouse-<driver> ... Enable a mouse <driver> in the QtGui library. |
|
3917 Possible values for <driver>: [ $CFG_MOUSE_AVAILABLE ] |
|
3918 -plugin-mouse-<driver> Enable mouse <driver> as a plugin to be linked to |
|
3919 at runtime. |
|
3920 Possible values for <driver>: [ $CFG_MOUSE_PLUGIN_AVAILABLE ] |
|
3921 -no-mouse-<driver> ... Disable mouse <driver> entirely. |
|
3922 Possible values for <driver>: [ $CFG_MOUSE_AVAILABLE ] |
|
3923 |
|
3924 -iwmmxt ............ Compile using the iWMMXt instruction set |
|
3925 (available on some XScale CPUs). |
|
3926 |
|
3927 -no-neon ........... Do not compile with use of NEON instructions. |
|
3928 EOF |
|
3929 fi |
|
3930 |
|
3931 |
|
3932 if [ "$PLATFORM_QWS" = "yes" -o "$PLATFORM_X11" = "yes" ]; then |
|
3933 if [ "$CFG_GLIB" = "no" ]; then |
|
3934 GBY=" " |
|
3935 GBN="+" |
|
3936 else |
|
3937 GBY="+" |
|
3938 GBN=" " |
|
3939 fi |
|
3940 cat << EOF |
|
3941 $GBN -no-glib ........... Do not compile Glib support. |
|
3942 $GBY -glib .............. Compile Glib support. |
|
3943 |
|
3944 EOF |
|
3945 fi |
|
3946 |
|
3947 # QTP:QTPROD-7 Cross compiling on Linux broken |
|
3948 if [ "$XPLATFORM" = "symbian-sbsv2" ]; then |
|
3949 cat << EOF |
|
3950 |
|
3951 Qt for Symbian only: |
|
3952 -no-style-s60....... Disable s60 entirely |
|
3953 -qt-style-s60....... Enable s60 in the Qt Library |
|
3954 EOF |
|
3955 fi |
|
3956 |
|
3957 [ "x$ERROR" = "xyes" ] && exit 1 |
|
3958 exit 0 |
|
3959 fi # Help |
|
3960 |
|
3961 |
|
3962 # ----------------------------------------------------------------------------- |
|
3963 # LICENSING, INTERACTIVE PART |
|
3964 # ----------------------------------------------------------------------------- |
|
3965 |
|
3966 |
|
3967 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
3968 Platform="Qt for Embedded Linux" |
|
3969 elif [ "$PLATFORM_MAC" = "yes" ]; then |
|
3970 Platform="Qt/Mac" |
|
3971 elif [ "$XPLATFORM" = "symbian-sbsv2" ]; then |
|
3972 Platform="Qt/Symbian" |
|
3973 else |
|
3974 PLATFORM_X11=yes |
|
3975 Platform="Qt for Linux/X11" |
|
3976 fi |
|
3977 |
|
3978 echo |
|
3979 echo "This is the $Platform ${EditionString} Edition." |
|
3980 echo |
|
3981 |
|
3982 if [ "$Edition" = "NokiaInternalBuild" ]; then |
|
3983 echo "Detected -nokia-developer option" |
|
3984 echo "Nokia employees and agents are allowed to use this software under" |
|
3985 echo "the authority of Nokia Corporation and/or its subsidiary(-ies)" |
|
3986 elif [ "$Edition" = "OpenSource" ]; then |
|
3987 while true; do |
|
3988 echo "You are licensed to use this software under the terms of" |
|
3989 echo "the Lesser GNU General Public License (LGPL) versions 2.1." |
|
3990 if [ -f "$relpath/LICENSE.GPL3" ]; then |
|
3991 echo "You are also licensed to use this software under the terms of" |
|
3992 echo "the GNU General Public License (GPL) versions 3." |
|
3993 affix="either" |
|
3994 else |
|
3995 affix="the" |
|
3996 fi |
|
3997 echo |
|
3998 if [ "$OPT_CONFIRM_LICENSE" = "yes" ]; then |
|
3999 echo "You have already accepted the terms of the $LicenseType license." |
|
4000 acceptance=yes |
|
4001 else |
|
4002 if [ -f "$relpath/LICENSE.GPL3" ]; then |
|
4003 echo "Type '3' to view the GNU General Public License version 3." |
|
4004 fi |
|
4005 echo "Type 'L' to view the Lesser GNU General Public License version 2.1." |
|
4006 echo "Type 'yes' to accept this license offer." |
|
4007 echo "Type 'no' to decline this license offer." |
|
4008 echo |
|
4009 if echo '\c' | grep '\c' >/dev/null; then |
|
4010 echo -n "Do you accept the terms of $affix license? " |
|
4011 else |
|
4012 echo "Do you accept the terms of $affix license? \c" |
|
4013 fi |
|
4014 read acceptance |
|
4015 fi |
|
4016 echo |
|
4017 if [ "$acceptance" = "yes" ] || [ "$acceptance" = "y" ]; then |
|
4018 break |
|
4019 elif [ "$acceptance" = "no" ]; then |
|
4020 echo "You are not licensed to use this software." |
|
4021 echo |
|
4022 exit 1 |
|
4023 elif [ "$acceptance" = "3" ]; then |
|
4024 more "$relpath/LICENSE.GPL3" |
|
4025 elif [ "$acceptance" = "L" ]; then |
|
4026 more "$relpath/LICENSE.LGPL" |
|
4027 fi |
|
4028 done |
|
4029 elif [ "$Edition" = "Preview" ]; then |
|
4030 TheLicense=`head -n 1 "$relpath/LICENSE.PREVIEW.COMMERCIAL"` |
|
4031 while true; do |
|
4032 |
|
4033 if [ "$OPT_CONFIRM_LICENSE" = "yes" ]; then |
|
4034 echo "You have already accepted the terms of the $LicenseType license." |
|
4035 acceptance=yes |
|
4036 else |
|
4037 echo "You are licensed to use this software under the terms of" |
|
4038 echo "the $TheLicense" |
|
4039 echo |
|
4040 echo "Type '?' to read the Preview License." |
|
4041 echo "Type 'yes' to accept this license offer." |
|
4042 echo "Type 'no' to decline this license offer." |
|
4043 echo |
|
4044 if echo '\c' | grep '\c' >/dev/null; then |
|
4045 echo -n "Do you accept the terms of the license? " |
|
4046 else |
|
4047 echo "Do you accept the terms of the license? \c" |
|
4048 fi |
|
4049 read acceptance |
|
4050 fi |
|
4051 echo |
|
4052 if [ "$acceptance" = "yes" ]; then |
|
4053 break |
|
4054 elif [ "$acceptance" = "no" ] ;then |
|
4055 echo "You are not licensed to use this software." |
|
4056 echo |
|
4057 exit 0 |
|
4058 elif [ "$acceptance" = "?" ]; then |
|
4059 more "$relpath/LICENSE.PREVIEW.COMMERCIAL" |
|
4060 fi |
|
4061 done |
|
4062 elif [ "$Edition" != "OpenSource" ]; then |
|
4063 if [ -n "$ExpiryDate" ]; then |
|
4064 ExpiryDate=`echo $ExpiryDate | sed -e "s,-,,g" | tr -d "\n\r"` |
|
4065 [ -z "$ExpiryDate" ] && ExpiryDate="0" |
|
4066 Today=`date +%Y%m%d` |
|
4067 if [ "$Today" -gt "$ExpiryDate" ]; then |
|
4068 case "$LicenseType" in |
|
4069 Commercial|Academic|Educational) |
|
4070 if [ "$QT_PACKAGEDATE" -gt "$ExpiryDate" ]; then |
|
4071 echo |
|
4072 echo "NOTICE NOTICE NOTICE NOTICE" |
|
4073 echo |
|
4074 echo " Your support and upgrade period has expired." |
|
4075 echo |
|
4076 echo " You are no longer licensed to use this version of Qt." |
|
4077 echo " Please contact qt-info@nokia.com to renew your support" |
|
4078 echo " and upgrades for this license." |
|
4079 echo |
|
4080 echo "NOTICE NOTICE NOTICE NOTICE" |
|
4081 echo |
|
4082 exit 1 |
|
4083 else |
|
4084 echo |
|
4085 echo "WARNING WARNING WARNING WARNING" |
|
4086 echo |
|
4087 echo " Your support and upgrade period has expired." |
|
4088 echo |
|
4089 echo " You may continue to use your last licensed release" |
|
4090 echo " of Qt under the terms of your existing license" |
|
4091 echo " agreement. But you are not entitled to technical" |
|
4092 echo " support, nor are you entitled to use any more recent" |
|
4093 echo " Qt releases." |
|
4094 echo |
|
4095 echo " Please contact qt-info@nokia.com to renew your" |
|
4096 echo " support and upgrades for this license." |
|
4097 echo |
|
4098 echo "WARNING WARNING WARNING WARNING" |
|
4099 echo |
|
4100 sleep 3 |
|
4101 fi |
|
4102 ;; |
|
4103 Evaluation|*) |
|
4104 echo |
|
4105 echo "NOTICE NOTICE NOTICE NOTICE" |
|
4106 echo |
|
4107 echo " Your Evaluation license has expired." |
|
4108 echo |
|
4109 echo " You are no longer licensed to use this software. Please" |
|
4110 echo " contact qt-info@nokia.com to purchase license, or install" |
|
4111 echo " the Qt Open Source Edition if you intend to develop free" |
|
4112 echo " software." |
|
4113 echo |
|
4114 echo "NOTICE NOTICE NOTICE NOTICE" |
|
4115 echo |
|
4116 exit 1 |
|
4117 ;; |
|
4118 esac |
|
4119 fi |
|
4120 fi |
|
4121 TheLicense=`head -n 1 "$outpath/LICENSE"` |
|
4122 while true; do |
|
4123 if [ "$OPT_CONFIRM_LICENSE" = "yes" ]; then |
|
4124 echo "You have already accepted the terms of the $TheLicense." |
|
4125 acceptance=yes |
|
4126 else |
|
4127 echo "You are licensed to use this software under the terms of" |
|
4128 echo "the $TheLicense." |
|
4129 echo |
|
4130 echo "Type '?' to view the $TheLicense." |
|
4131 echo "Type 'yes' to accept this license offer." |
|
4132 echo "Type 'no' to decline this license offer." |
|
4133 echo |
|
4134 if echo '\c' | grep '\c' >/dev/null; then |
|
4135 echo -n "Do you accept the terms of the $TheLicense? " |
|
4136 else |
|
4137 echo "Do you accept the terms of the $TheLicense? \c" |
|
4138 fi |
|
4139 read acceptance |
|
4140 fi |
|
4141 echo |
|
4142 if [ "$acceptance" = "yes" ]; then |
|
4143 break |
|
4144 elif [ "$acceptance" = "no" ]; then |
|
4145 echo "You are not licensed to use this software." |
|
4146 echo |
|
4147 exit 1 |
|
4148 else [ "$acceptance" = "?" ] |
|
4149 more "$outpath/LICENSE" |
|
4150 fi |
|
4151 done |
|
4152 fi |
|
4153 |
|
4154 # this should be moved somewhere else |
|
4155 case "$PLATFORM" in |
|
4156 aix-*) |
|
4157 AIX_VERSION=`uname -v` |
|
4158 if [ "$AIX_VERSION" -lt "5" ]; then |
|
4159 QMakeVar add QMAKE_LIBS_X11 -lbind |
|
4160 fi |
|
4161 ;; |
|
4162 *) |
|
4163 ;; |
|
4164 esac |
|
4165 |
|
4166 #------------------------------------------------------------------------------- |
|
4167 # generate qconfig.cpp |
|
4168 #------------------------------------------------------------------------------- |
|
4169 [ -d "$outpath/src/corelib/global" ] || mkdir -p "$outpath/src/corelib/global" |
|
4170 |
|
4171 LICENSE_USER_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_lcnsuser=$Licensee"` |
|
4172 LICENSE_PRODUCTS_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_lcnsprod=$Edition"` |
|
4173 PREFIX_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_prfxpath=$QT_INSTALL_PREFIX"` |
|
4174 DOCUMENTATION_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_docspath=$QT_INSTALL_DOCS"` |
|
4175 HEADERS_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_hdrspath=$QT_INSTALL_HEADERS"` |
|
4176 LIBRARIES_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_libspath=$QT_INSTALL_LIBS"` |
|
4177 BINARIES_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_binspath=$QT_INSTALL_BINS"` |
|
4178 PLUGINS_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_plugpath=$QT_INSTALL_PLUGINS"` |
|
4179 DATA_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_datapath=$QT_INSTALL_DATA"` |
|
4180 TRANSLATIONS_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_trnspath=$QT_INSTALL_TRANSLATIONS"` |
|
4181 SETTINGS_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_stngpath=$QT_INSTALL_SETTINGS"` |
|
4182 EXAMPLES_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_xmplpath=$QT_INSTALL_EXAMPLES"` |
|
4183 DEMOS_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_demopath=$QT_INSTALL_DEMOS"` |
|
4184 |
|
4185 TODAY=`date +%Y-%m-%d` |
|
4186 cat > "$outpath/src/corelib/global/qconfig.cpp.new" <<EOF |
|
4187 /* License Info */ |
|
4188 static const char qt_configure_licensee_str [256 + 12] = "$LICENSE_USER_STR"; |
|
4189 static const char qt_configure_licensed_products_str [256 + 12] = "$LICENSE_PRODUCTS_STR"; |
|
4190 |
|
4191 /* Installation date */ |
|
4192 static const char qt_configure_installation [12+11] = "qt_instdate=$TODAY"; |
|
4193 EOF |
|
4194 |
|
4195 |
|
4196 if [ ! -z "$QT_HOST_PREFIX" ]; then |
|
4197 HOSTPREFIX_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_prfxpath=$QT_HOST_PREFIX"` |
|
4198 HOSTDOCUMENTATION_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_docspath=$QT_HOST_PREFIX/doc"` |
|
4199 HOSTHEADERS_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_hdrspath=$QT_HOST_PREFIX/include"` |
|
4200 HOSTLIBRARIES_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_libspath=$QT_HOST_PREFIX/lib"` |
|
4201 HOSTBINARIES_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_binspath=$QT_HOST_PREFIX/bin"` |
|
4202 HOSTPLUGINS_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_plugpath=$QT_HOST_PREFIX/plugins"` |
|
4203 HOSTDATA_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_datapath=$QT_HOST_PREFIX"` |
|
4204 HOSTTRANSLATIONS_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_trnspath=$QT_HOST_PREFIX/translations"` |
|
4205 HOSTSETTINGS_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_stngpath=$QT_INSTALL_SETTINGS"` |
|
4206 HOSTEXAMPLES_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_xmplpath=$QT_INSTALL_EXAMPLES"` |
|
4207 HOSTDEMOS_PATH_STR=`"$relpath/config.tests/unix/padstring" 268 "qt_demopath=$QT_INSTALL_DEMOS"` |
|
4208 |
|
4209 cat >> "$outpath/src/corelib/global/qconfig.cpp.new" <<EOF |
|
4210 |
|
4211 #if defined(QT_BOOTSTRAPPED) || defined(QT_BUILD_QMAKE) |
|
4212 /* Installation Info */ |
|
4213 static const char qt_configure_prefix_path_str [256 + 12] = "$HOSTPREFIX_PATH_STR"; |
|
4214 static const char qt_configure_documentation_path_str[256 + 12] = "$HOSTDOCUMENTATION_PATH_STR"; |
|
4215 static const char qt_configure_headers_path_str [256 + 12] = "$HOSTHEADERS_PATH_STR"; |
|
4216 static const char qt_configure_libraries_path_str [256 + 12] = "$HOSTLIBRARIES_PATH_STR"; |
|
4217 static const char qt_configure_binaries_path_str [256 + 12] = "$HOSTBINARIES_PATH_STR"; |
|
4218 static const char qt_configure_plugins_path_str [256 + 12] = "$HOSTPLUGINS_PATH_STR"; |
|
4219 static const char qt_configure_data_path_str [256 + 12] = "$HOSTDATA_PATH_STR"; |
|
4220 static const char qt_configure_translations_path_str [256 + 12] = "$HOSTTRANSLATIONS_PATH_STR"; |
|
4221 static const char qt_configure_settings_path_str [256 + 12] = "$HOSTSETTINGS_PATH_STR"; |
|
4222 static const char qt_configure_examples_path_str [256 + 12] = "$HOSTEXAMPLES_PATH_STR"; |
|
4223 static const char qt_configure_demos_path_str [256 + 12] = "$HOSTDEMOS_PATH_STR"; |
|
4224 #else // QT_BOOTSTRAPPED |
|
4225 EOF |
|
4226 fi |
|
4227 |
|
4228 cat >> "$outpath/src/corelib/global/qconfig.cpp.new" <<EOF |
|
4229 /* Installation Info */ |
|
4230 static const char qt_configure_prefix_path_str [256 + 12] = "$PREFIX_PATH_STR"; |
|
4231 static const char qt_configure_documentation_path_str[256 + 12] = "$DOCUMENTATION_PATH_STR"; |
|
4232 static const char qt_configure_headers_path_str [256 + 12] = "$HEADERS_PATH_STR"; |
|
4233 static const char qt_configure_libraries_path_str [256 + 12] = "$LIBRARIES_PATH_STR"; |
|
4234 static const char qt_configure_binaries_path_str [256 + 12] = "$BINARIES_PATH_STR"; |
|
4235 static const char qt_configure_plugins_path_str [256 + 12] = "$PLUGINS_PATH_STR"; |
|
4236 static const char qt_configure_data_path_str [256 + 12] = "$DATA_PATH_STR"; |
|
4237 static const char qt_configure_translations_path_str [256 + 12] = "$TRANSLATIONS_PATH_STR"; |
|
4238 static const char qt_configure_settings_path_str [256 + 12] = "$SETTINGS_PATH_STR"; |
|
4239 static const char qt_configure_examples_path_str [256 + 12] = "$EXAMPLES_PATH_STR"; |
|
4240 static const char qt_configure_demos_path_str [256 + 12] = "$DEMOS_PATH_STR"; |
|
4241 EOF |
|
4242 |
|
4243 if [ ! -z "$QT_HOST_PREFIX" ]; then |
|
4244 cat >> "$outpath/src/corelib/global/qconfig.cpp.new" <<EOF |
|
4245 #endif // QT_BOOTSTRAPPED |
|
4246 |
|
4247 EOF |
|
4248 fi |
|
4249 |
|
4250 cat >> "$outpath/src/corelib/global/qconfig.cpp.new" <<EOF |
|
4251 /* strlen( "qt_lcnsxxxx" ) == 12 */ |
|
4252 #define QT_CONFIGURE_LICENSEE qt_configure_licensee_str + 12; |
|
4253 #define QT_CONFIGURE_LICENSED_PRODUCTS qt_configure_licensed_products_str + 12; |
|
4254 #define QT_CONFIGURE_PREFIX_PATH qt_configure_prefix_path_str + 12; |
|
4255 #define QT_CONFIGURE_DOCUMENTATION_PATH qt_configure_documentation_path_str + 12; |
|
4256 #define QT_CONFIGURE_HEADERS_PATH qt_configure_headers_path_str + 12; |
|
4257 #define QT_CONFIGURE_LIBRARIES_PATH qt_configure_libraries_path_str + 12; |
|
4258 #define QT_CONFIGURE_BINARIES_PATH qt_configure_binaries_path_str + 12; |
|
4259 #define QT_CONFIGURE_PLUGINS_PATH qt_configure_plugins_path_str + 12; |
|
4260 #define QT_CONFIGURE_DATA_PATH qt_configure_data_path_str + 12; |
|
4261 #define QT_CONFIGURE_TRANSLATIONS_PATH qt_configure_translations_path_str + 12; |
|
4262 #define QT_CONFIGURE_SETTINGS_PATH qt_configure_settings_path_str + 12; |
|
4263 #define QT_CONFIGURE_EXAMPLES_PATH qt_configure_examples_path_str + 12; |
|
4264 #define QT_CONFIGURE_DEMOS_PATH qt_configure_demos_path_str + 12; |
|
4265 EOF |
|
4266 |
|
4267 # avoid unecessary rebuilds by copying only if qconfig.cpp has changed |
|
4268 if cmp -s "$outpath/src/corelib/global/qconfig.cpp" "$outpath/src/corelib/global/qconfig.cpp.new"; then |
|
4269 rm -f "$outpath/src/corelib/global/qconfig.cpp.new" |
|
4270 else |
|
4271 [ -f "$outpath/src/corelib/global/qconfig.cpp" ] && chmod +w "$outpath/src/corelib/global/qconfig.cpp" |
|
4272 mv "$outpath/src/corelib/global/qconfig.cpp.new" "$outpath/src/corelib/global/qconfig.cpp" |
|
4273 chmod -w "$outpath/src/corelib/global/qconfig.cpp" |
|
4274 fi |
|
4275 |
|
4276 # ----------------------------------------------------------------------------- |
|
4277 if [ "$LicenseType" = "Evaluation" ]; then |
|
4278 EVALKEY=`"$relpath/config.tests/unix/padstring" 524 "qt_qevalkey=$LicenseKeyExt"` |
|
4279 elif echo "$D_FLAGS" | grep QT_EVAL >/dev/null 2>&1; then |
|
4280 EVALKEY=`"$relpath/config.tests/unix/padstring" 524 "qt_qevalkey="` |
|
4281 fi |
|
4282 |
|
4283 if [ -n "$EVALKEY" ]; then |
|
4284 rm -f "$outpath/src/corelib/global/qconfig_eval.cpp" |
|
4285 cat > "$outpath/src/corelib/global/qconfig_eval.cpp" <<EOF |
|
4286 /* Evaluation license key */ |
|
4287 static const char qt_eval_key_data [512 + 12] = "$EVALKEY"; |
|
4288 EOF |
|
4289 chmod -w "$outpath/src/corelib/global/qconfig_eval.cpp" |
|
4290 fi |
|
4291 |
|
4292 |
|
4293 # ----------------------------------------------------------------------------- |
|
4294 # build qmake |
|
4295 # ----------------------------------------------------------------------------- |
|
4296 |
|
4297 # symlink includes |
|
4298 if [ -n "$PERL" ] && [ -x "$relpath/bin/syncqt" ]; then |
|
4299 SYNCQT_OPTS= |
|
4300 [ "$CFG_DEV" = "yes" ] && SYNCQT_OPTS="$SYNCQT_OPTS -check-includes" |
|
4301 if [ "$OPT_SHADOW" = "yes" ]; then |
|
4302 "$outpath/bin/syncqt" $SYNCQT_OPTS |
|
4303 elif [ "$CFG_DEV" = "yes" ] || [ ! -d $relpath/include ]; then |
|
4304 QTDIR="$relpath" perl "$outpath/bin/syncqt" $SYNCQT_OPTS |
|
4305 fi |
|
4306 fi |
|
4307 |
|
4308 # $1: variable name |
|
4309 # $2: optional transformation |
|
4310 # relies on $QMAKESPEC, $COMPILER_CONF and $mkfile being set correctly, as the latter |
|
4311 # is where the resulting variable is written to |
|
4312 setBootstrapVariable() |
|
4313 { |
|
4314 variableRegExp="^$1[^_A-Z0-9]" |
|
4315 getQMakeConf | grep "$variableRegExp" | ( [ -n "$2" ] && sed "$2" ; [ -z "$2" ] && cat ) | $AWK ' |
|
4316 { |
|
4317 varLength = index($0, "=") - 1 |
|
4318 valStart = varLength + 2 |
|
4319 if (substr($0, varLength, 1) == "+") { |
|
4320 varLength = varLength - 1 |
|
4321 valStart = valStart + 1 |
|
4322 } |
|
4323 var = substr($0, 0, varLength) |
|
4324 gsub("[ \t]+", "", var) |
|
4325 val = substr($0, valStart) |
|
4326 printf "%s_%s = %s\n", var, NR, val |
|
4327 } |
|
4328 END { |
|
4329 if (length(var) > 0) { |
|
4330 printf "%s =", var |
|
4331 for (i = 1; i <= NR; ++i) |
|
4332 printf " $(%s_%s)", var, i |
|
4333 printf "\n" |
|
4334 } |
|
4335 }' >> "$mkfile" |
|
4336 } |
|
4337 |
|
4338 # build qmake |
|
4339 if true; then ###[ '!' -f "$outpath/bin/qmake" ]; |
|
4340 echo "Creating qmake. Please wait..." |
|
4341 |
|
4342 OLD_QCONFIG_H= |
|
4343 QCONFIG_H="$outpath/src/corelib/global/qconfig.h" |
|
4344 QMAKE_QCONFIG_H="${QCONFIG_H}.qmake" |
|
4345 if [ -f "$QCONFIG_H" ]; then |
|
4346 OLD_QCONFIG_H=$QCONFIG_H |
|
4347 mv -f "$OLD_QCONFIG_H" "${OLD_QCONFIG_H}.old" |
|
4348 fi |
|
4349 |
|
4350 # create temporary qconfig.h for compiling qmake, if it doesn't exist |
|
4351 # when building qmake, we use #defines for the install paths, |
|
4352 # however they are real functions in the library |
|
4353 if [ '!' -f "$QMAKE_QCONFIG_H" ]; then |
|
4354 mkdir -p "$outpath/src/corelib/global" |
|
4355 [ -f "$QCONFIG_H" ] && chmod +w "$QCONFIG_H" |
|
4356 echo "/* All features enabled while building qmake */" >"$QMAKE_QCONFIG_H" |
|
4357 fi |
|
4358 |
|
4359 mv -f "$QMAKE_QCONFIG_H" "$QCONFIG_H" |
|
4360 for conf in "$outpath/include/QtCore/qconfig.h" "$outpath/include/Qt/qconfig.h"; do |
|
4361 if [ '!' -f "$conf" ]; then |
|
4362 ln -s "$QCONFIG_H" "$conf" |
|
4363 fi |
|
4364 done |
|
4365 |
|
4366 #mkspecs/default is used as a (gasp!) default mkspec so QMAKESPEC needn't be set once configured |
|
4367 rm -f mkspecs/default |
|
4368 ln -s `echo $XQMAKESPEC | sed "s,^${relpath}/mkspecs/,,"` mkspecs/default |
|
4369 # fix makefiles |
|
4370 for mkfile in GNUmakefile Makefile; do |
|
4371 EXTRA_LFLAGS= |
|
4372 EXTRA_CFLAGS= |
|
4373 in_mkfile="${mkfile}.in" |
|
4374 if [ "$mkfile" = "Makefile" ]; then |
|
4375 # if which qmake >/dev/null 2>&1 && [ -f qmake/qmake.pro ]; then |
|
4376 # (cd qmake && qmake) >/dev/null 2>&1 && continue |
|
4377 # fi |
|
4378 in_mkfile="${mkfile}.unix" |
|
4379 fi |
|
4380 in_mkfile="$relpath/qmake/$in_mkfile" |
|
4381 mkfile="$outpath/qmake/$mkfile" |
|
4382 if [ -f "$mkfile" ]; then |
|
4383 [ "$CFG_DEV" = "yes" ] && "$WHICH" chflags >/dev/null 2>&1 && chflags nouchg "$mkfile" |
|
4384 rm -f "$mkfile" |
|
4385 fi |
|
4386 [ -f "$in_mkfile" ] || continue |
|
4387 |
|
4388 echo "########################################################################" > "$mkfile" |
|
4389 echo "## This file was autogenerated by configure, all changes will be lost ##" >> "$mkfile" |
|
4390 echo "########################################################################" >> "$mkfile" |
|
4391 EXTRA_OBJS= |
|
4392 EXTRA_SRCS= |
|
4393 EXTRA_CFLAGS="\$(QMAKE_CFLAGS)" |
|
4394 EXTRA_CXXFLAGS="\$(QMAKE_CXXFLAGS)" |
|
4395 EXTRA_LFLAGS="\$(QMAKE_LFLAGS)" |
|
4396 |
|
4397 if [ "$PLATFORM" = "irix-cc" ] || [ "$PLATFORM" = "irix-cc-64" ]; then |
|
4398 EXTRA_LFLAGS="$EXTRA_LFLAGS -lm" |
|
4399 fi |
|
4400 |
|
4401 [ -n "$CC" ] && echo "CC = $CC" >> "$mkfile" |
|
4402 [ -n "$CXX" ] && echo "CXX = $CXX" >> "$mkfile" |
|
4403 if [ "$CFG_SILENT" = "yes" ]; then |
|
4404 [ -z "$CC" ] && setBootstrapVariable QMAKE_CC 's,QMAKE_CC.*=,CC=\@,' |
|
4405 [ -z "$CXX" ] && setBootstrapVariable QMAKE_CXX 's,QMAKE_CXX.*=,CXX=\@,' |
|
4406 else |
|
4407 [ -z "$CC" ] && setBootstrapVariable QMAKE_CC 's,QMAKE_CC,CC,' |
|
4408 [ -z "$CXX" ] && setBootstrapVariable QMAKE_CXX 's,QMAKE_CXX,CXX,' |
|
4409 fi |
|
4410 setBootstrapVariable QMAKE_CFLAGS |
|
4411 setBootstrapVariable QMAKE_CXXFLAGS 's,\$\$QMAKE_CFLAGS,\$(QMAKE_CFLAGS),' |
|
4412 setBootstrapVariable QMAKE_LFLAGS |
|
4413 |
|
4414 if [ $QT_EDITION = "QT_EDITION_OPENSOURCE" ]; then |
|
4415 EXTRA_CFLAGS="$EXTRA_CFLAGS -DQMAKE_OPENSOURCE_EDITION" |
|
4416 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -DQMAKE_OPENSOURCE_EDITION" |
|
4417 fi |
|
4418 if [ "$CFG_RELEASE_QMAKE" = "yes" ]; then |
|
4419 setBootstrapVariable QMAKE_CFLAGS_RELEASE |
|
4420 setBootstrapVariable QMAKE_CXXFLAGS_RELEASE 's,\$\$QMAKE_CFLAGS_RELEASE,\$(QMAKE_CFLAGS_RELEASE),' |
|
4421 EXTRA_CFLAGS="$EXTRA_CFLAGS \$(QMAKE_CFLAGS_RELEASE)" |
|
4422 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(QMAKE_CXXFLAGS_RELEASE)" |
|
4423 elif [ "$CFG_DEBUG" = "yes" ]; then |
|
4424 setBootstrapVariable QMAKE_CFLAGS_DEBUG |
|
4425 setBootstrapVariable QMAKE_CXXFLAGS_DEBUG 's,\$\$QMAKE_CFLAGS_DEBUG,\$(QMAKE_CFLAGS_DEBUG),' |
|
4426 EXTRA_CFLAGS="$EXTRA_CFLAGS \$(QMAKE_CFLAGS_DEBUG)" |
|
4427 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(QMAKE_CXXFLAGS_DEBUG)" |
|
4428 fi |
|
4429 |
|
4430 if [ '!' -z "$RPATH_FLAGS" ] && [ '!' -z "`getQMakeConf \"$QMAKESPEC\" | grep QMAKE_RPATH | awk '{print $3;}'`" ]; then |
|
4431 setBootstrapVariable QMAKE_RPATH 's,\$\$LITERAL_WHITESPACE, ,' |
|
4432 for rpath in $RPATH_FLAGS; do |
|
4433 EXTRA_LFLAGS="\$(QMAKE_RPATH)\"$rpath\" $EXTRA_LFLAGS" |
|
4434 done |
|
4435 fi |
|
4436 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
4437 echo "export MACOSX_DEPLOYMENT_TARGET = 10.4" >> "$mkfile" |
|
4438 echo "CARBON_LFLAGS =-framework ApplicationServices" >>"$mkfile" |
|
4439 echo "CARBON_CFLAGS =-fconstant-cfstrings" >>"$mkfile" |
|
4440 EXTRA_LFLAGS="$EXTRA_LFLAGS \$(CARBON_LFLAGS)" |
|
4441 EXTRA_CFLAGS="$EXTRA_CFLAGS \$(CARBON_CFLAGS)" |
|
4442 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(CARBON_CFLAGS)" |
|
4443 EXTRA_OBJS="qsettings_mac.o qcore_mac.o" |
|
4444 EXTRA_SRCS="\"$relpath/src/corelib/io/qsettings_mac.cpp\" \"$relpath/src/corelib/kernel/qcore_mac.cpp\"" |
|
4445 if echo "$CFG_MAC_ARCHS" | grep x86 > /dev/null 2>&1; then # matches both x86 and x86_64 |
|
4446 X86_CFLAGS="-arch i386" |
|
4447 X86_LFLAGS="-arch i386" |
|
4448 EXTRA_CFLAGS="$X86_CFLAGS $EXTRA_CFLAGS" |
|
4449 EXTRA_CXXFLAGS="$X86_CFLAGS $EXTRA_CXXFLAGS" |
|
4450 EXTRA_LFLAGS="$EXTRA_LFLAGS $X86_LFLAGS" |
|
4451 fi |
|
4452 if echo "$CFG_MAC_ARCHS" | grep ppc > /dev/null 2>&1; then # matches both ppc and ppc64 |
|
4453 PPC_CFLAGS="-arch ppc" |
|
4454 PPC_LFLAGS="-arch ppc" |
|
4455 EXTRA_CFLAGS="$PPC_CFLAGS $EXTRA_CFLAGS" |
|
4456 EXTRA_CXXFLAGS="$PPC_CFLAGS $EXTRA_CXXFLAGS" |
|
4457 EXTRA_LFLAGS="$EXTRA_LFLAGS $PPC_LFLAGS" |
|
4458 fi |
|
4459 if [ '!' -z "$CFG_SDK" ]; then |
|
4460 echo "SDK_LFLAGS =-Wl,-syslibroot,$CFG_SDK" >>"$mkfile" |
|
4461 echo "SDK_CFLAGS =-isysroot $CFG_SDK" >>"$mkfile" |
|
4462 EXTRA_CFLAGS="$EXTRA_CFLAGS \$(SDK_CFLAGS)" |
|
4463 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS \$(SDK_CFLAGS)" |
|
4464 EXTRA_LFLAGS="$EXTRA_LFLAGS \$(SDK_LFLAGS)" |
|
4465 fi |
|
4466 fi |
|
4467 [ "$CFG_EMBEDDED" != "no" ] && EXTRA_CFLAGS="$EXTRA_CFLAGS -DQWS" |
|
4468 if [ '!' -z "$D_FLAGS" ]; then |
|
4469 for DEF in $D_FLAGS; do |
|
4470 EXTRA_CFLAGS="$EXTRA_CFLAGS \"-D${DEF}\"" |
|
4471 done |
|
4472 fi |
|
4473 QMAKE_BIN_DIR="$QT_INSTALL_BINS" |
|
4474 [ -z "$QMAKE_BIN_DIR" ] && QMAKE_BIN_DIR="${QT_INSTALL_PREFIX}/bin" |
|
4475 QMAKE_DATA_DIR="$QT_INSTALL_DATA" |
|
4476 [ -z "$QMAKE_DATA_DIR" ] && QMAKE_DATA_DIR="${QT_INSTALL_PREFIX}" |
|
4477 echo >>"$mkfile" |
|
4478 adjrelpath=`echo "$relpath" | sed 's/ /\\\\\\\\ /g'` |
|
4479 adjoutpath=`echo "$outpath" | sed 's/ /\\\\\\\\ /g'` |
|
4480 adjqmakespec=`echo "$QMAKESPEC" | sed 's/ /\\\\\\\\ /g'` |
|
4481 sed -e "s,@SOURCE_PATH@,$adjrelpath,g" -e "s,@BUILD_PATH@,$adjoutpath,g" \ |
|
4482 -e "s,@QMAKE_CFLAGS@,$EXTRA_CFLAGS,g" -e "s,@QMAKE_LFLAGS@,$EXTRA_LFLAGS,g" \ |
|
4483 -e "s,@QMAKE_CXXFLAGS@,$EXTRA_CXXFLAGS,g" \ |
|
4484 -e "s,@QT_INSTALL_BINS@,\$(INSTALL_ROOT)$QMAKE_BIN_DIR,g" \ |
|
4485 -e "s,@QT_INSTALL_DATA@,\$(INSTALL_ROOT)$QMAKE_DATA_DIR,g" \ |
|
4486 -e "s,@QMAKE_QTOBJS@,$EXTRA_OBJS,g" -e "s,@QMAKE_QTSRCS@,$EXTRA_SRCS,g" \ |
|
4487 -e "s,@QMAKESPEC@,$adjqmakespec,g" "$in_mkfile" >>"$mkfile" |
|
4488 |
|
4489 if "$WHICH" makedepend >/dev/null 2>&1 && grep 'depend:' "$mkfile" >/dev/null 2>&1; then |
|
4490 (cd "$outpath/qmake" && "$MAKE" -f "$mkfile" depend) >/dev/null 2>&1 |
|
4491 sed "s,^.*/\([^/]*.o\):,\1:,g" "$mkfile" >"$mkfile.tmp" |
|
4492 sed "s,$outpath,$adjoutpath,g" "$mkfile.tmp" >"$mkfile" |
|
4493 rm "$mkfile.tmp" |
|
4494 fi |
|
4495 done |
|
4496 |
|
4497 QMAKE_BUILD_ERROR=no |
|
4498 (cd "$outpath/qmake"; "$MAKE") || QMAKE_BUILD_ERROR=yes |
|
4499 [ '!' -z "$QCONFIG_H" ] && mv -f "$QCONFIG_H" "$QMAKE_QCONFIG_H" #move qmake's qconfig.h to qconfig.h.qmake |
|
4500 [ '!' -z "$OLD_QCONFIG_H" ] && mv -f "${OLD_QCONFIG_H}.old" "$OLD_QCONFIG_H" #put back qconfig.h |
|
4501 [ "$QMAKE_BUILD_ERROR" = "yes" ] && exit 2 |
|
4502 fi # Build qmake |
|
4503 |
|
4504 #------------------------------------------------------------------------------- |
|
4505 # tests that need qmake |
|
4506 #------------------------------------------------------------------------------- |
|
4507 |
|
4508 # detect availability of float math.h functions |
|
4509 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/floatmath "floatmath" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
4510 CFG_USE_FLOATMATH=yes |
|
4511 else |
|
4512 CFG_USE_FLOATMATH=no |
|
4513 fi |
|
4514 |
|
4515 # detect mmx support |
|
4516 if [ "${CFG_MMX}" = "auto" ]; then |
|
4517 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/mmx "mmx" $L_FLAGS $I_FLAGS $l_FLAGS "-mmmx"; then |
|
4518 CFG_MMX=yes |
|
4519 else |
|
4520 CFG_MMX=no |
|
4521 fi |
|
4522 fi |
|
4523 |
|
4524 # detect 3dnow support |
|
4525 if [ "${CFG_3DNOW}" = "auto" ]; then |
|
4526 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/3dnow "3dnow" $L_FLAGS $I_FLAGS $l_FLAGS "-m3dnow"; then |
|
4527 CFG_3DNOW=yes |
|
4528 else |
|
4529 CFG_3DNOW=no |
|
4530 fi |
|
4531 fi |
|
4532 |
|
4533 # detect sse support |
|
4534 if [ "${CFG_SSE}" = "auto" ]; then |
|
4535 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/sse "sse" $L_FLAGS $I_FLAGS $l_FLAGS "-msse"; then |
|
4536 CFG_SSE=yes |
|
4537 else |
|
4538 CFG_SSE=no |
|
4539 fi |
|
4540 fi |
|
4541 |
|
4542 # detect sse2 support |
|
4543 if [ "${CFG_SSE2}" = "auto" ]; then |
|
4544 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/sse2 "sse2" $L_FLAGS $I_FLAGS $l_FLAGS "-msse2"; then |
|
4545 CFG_SSE2=yes |
|
4546 else |
|
4547 CFG_SSE2=no |
|
4548 fi |
|
4549 fi |
|
4550 |
|
4551 # check iWMMXt support |
|
4552 if [ "$CFG_IWMMXT" = "yes" ]; then |
|
4553 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/iwmmxt "iwmmxt" $L_FLAGS $I_FLAGS $l_FLAGS "-mcpu=iwmmxt" |
|
4554 if [ $? != "0" ]; then |
|
4555 echo "The iWMMXt functionality test failed!" |
|
4556 echo " Please make sure your compiler supports iWMMXt intrinsics!" |
|
4557 exit 1 |
|
4558 fi |
|
4559 fi |
|
4560 |
|
4561 # detect neon support |
|
4562 if ([ "$CFG_ARCH" = "arm" ] || [ "$CFG_ARCH" = "armv6" ]) && [ "${CFG_NEON}" = "auto" ]; then |
|
4563 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/neon "neon" $L_FLAGS $I_FLAGS $l_FLAGS "-mfpu=neon"; then |
|
4564 CFG_NEON=yes |
|
4565 else |
|
4566 CFG_NEON=no |
|
4567 fi |
|
4568 fi |
|
4569 |
|
4570 # detect zlib |
|
4571 if [ "$CFG_ZLIB" = "no" ]; then |
|
4572 # Note: Qt no longer support builds without zlib |
|
4573 # So we force a "no" to be "auto" here. |
|
4574 # If you REALLY really need no zlib support, you can still disable |
|
4575 # it by doing the following: |
|
4576 # add "no-zlib" to mkspecs/qconfig.pri |
|
4577 # #define QT_NO_COMPRESS (probably by adding to src/corelib/global/qconfig.h) |
|
4578 # |
|
4579 # There's no guarantee that Qt will build under those conditions |
|
4580 |
|
4581 CFG_ZLIB=auto |
|
4582 ZLIB_FORCED=yes |
|
4583 fi |
|
4584 if [ "$CFG_ZLIB" = "auto" ]; then |
|
4585 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/zlib "zlib" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4586 CFG_ZLIB=system |
|
4587 else |
|
4588 CFG_ZLIB=yes |
|
4589 fi |
|
4590 fi |
|
4591 |
|
4592 # detect how jpeg should be built |
|
4593 if [ "$CFG_JPEG" = "auto" ]; then |
|
4594 if [ "$CFG_SHARED" = "yes" ]; then |
|
4595 CFG_JPEG=plugin |
|
4596 else |
|
4597 CFG_JPEG=yes |
|
4598 fi |
|
4599 fi |
|
4600 # detect jpeg |
|
4601 if [ "$CFG_LIBJPEG" = "auto" ]; then |
|
4602 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/libjpeg "libjpeg" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4603 CFG_LIBJPEG=system |
|
4604 else |
|
4605 CFG_LIBJPEG=qt |
|
4606 fi |
|
4607 fi |
|
4608 |
|
4609 # detect how gif should be built |
|
4610 if [ "$CFG_GIF" = "auto" ]; then |
|
4611 if [ "$CFG_SHARED" = "yes" ]; then |
|
4612 CFG_GIF=plugin |
|
4613 else |
|
4614 CFG_GIF=yes |
|
4615 fi |
|
4616 fi |
|
4617 |
|
4618 # detect how tiff should be built |
|
4619 if [ "$CFG_TIFF" = "auto" ]; then |
|
4620 if [ "$CFG_SHARED" = "yes" ]; then |
|
4621 CFG_TIFF=plugin |
|
4622 else |
|
4623 CFG_TIFF=yes |
|
4624 fi |
|
4625 fi |
|
4626 |
|
4627 # detect tiff |
|
4628 if [ "$CFG_LIBTIFF" = "auto" ]; then |
|
4629 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/libtiff "libtiff" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4630 CFG_LIBTIFF=system |
|
4631 else |
|
4632 CFG_LIBTIFF=qt |
|
4633 fi |
|
4634 fi |
|
4635 |
|
4636 # detect how mng should be built |
|
4637 if [ "$CFG_MNG" = "auto" ]; then |
|
4638 if [ "$CFG_SHARED" = "yes" ]; then |
|
4639 CFG_MNG=plugin |
|
4640 else |
|
4641 CFG_MNG=yes |
|
4642 fi |
|
4643 fi |
|
4644 # detect mng |
|
4645 if [ "$CFG_LIBMNG" = "auto" ]; then |
|
4646 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/libmng "libmng" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4647 CFG_LIBMNG=system |
|
4648 else |
|
4649 CFG_LIBMNG=qt |
|
4650 fi |
|
4651 fi |
|
4652 |
|
4653 # detect png |
|
4654 if [ "$CFG_LIBPNG" = "auto" ]; then |
|
4655 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/libpng "libpng" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4656 CFG_LIBPNG=system |
|
4657 else |
|
4658 CFG_LIBPNG=qt |
|
4659 fi |
|
4660 fi |
|
4661 |
|
4662 # detect accessibility |
|
4663 if [ "$CFG_ACCESSIBILITY" = "auto" ]; then |
|
4664 CFG_ACCESSIBILITY=yes |
|
4665 fi |
|
4666 |
|
4667 # auto-detect SQL-modules support |
|
4668 for _SQLDR in $CFG_SQL_AVAILABLE; do |
|
4669 case $_SQLDR in |
|
4670 mysql) |
|
4671 if [ "$CFG_SQL_mysql" != "no" ]; then |
|
4672 [ -z "$CFG_MYSQL_CONFIG" ] && CFG_MYSQL_CONFIG=`"$WHICH" mysql_config` |
|
4673 if [ -x "$CFG_MYSQL_CONFIG" ]; then |
|
4674 QT_CFLAGS_MYSQL=`$CFG_MYSQL_CONFIG --include 2>/dev/null` |
|
4675 QT_LFLAGS_MYSQL_R=`$CFG_MYSQL_CONFIG --libs_r 2>/dev/null` |
|
4676 QT_LFLAGS_MYSQL=`$CFG_MYSQL_CONFIG --libs 2>/dev/null` |
|
4677 QT_MYSQL_VERSION=`$CFG_MYSQL_CONFIG --version 2>/dev/null` |
|
4678 QT_MYSQL_VERSION_MAJOR=`echo $QT_MYSQL_VERSION | cut -d . -f 1` |
|
4679 fi |
|
4680 if [ -n "$QT_MYSQL_VERSION" ] && [ "$QT_MYSQL_VERSION_MAJOR" -lt 4 ]; then |
|
4681 if [ "$CFG_SQL_mysql" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4682 echo "This version of MySql is not supported ($QT_MYSQL_VERSION)." |
|
4683 echo " You need MySql 4 or higher." |
|
4684 echo " If you believe this message is in error you may use the continue" |
|
4685 echo " switch (-continue) to $0 to continue." |
|
4686 exit 101 |
|
4687 else |
|
4688 CFG_SQL_mysql="no" |
|
4689 QT_LFLAGS_MYSQL="" |
|
4690 QT_LFLAGS_MYSQL_R="" |
|
4691 QT_CFLAGS_MYSQL="" |
|
4692 fi |
|
4693 else |
|
4694 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 $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4695 QMakeVar add CONFIG use_libmysqlclient_r |
|
4696 if [ "$CFG_SQL_mysql" = "auto" ]; then |
|
4697 CFG_SQL_mysql=plugin |
|
4698 fi |
|
4699 QT_LFLAGS_MYSQL="$QT_LFLAGS_MYSQL_R" |
|
4700 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 $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4701 if [ "$CFG_SQL_mysql" = "auto" ]; then |
|
4702 CFG_SQL_mysql=plugin |
|
4703 fi |
|
4704 else |
|
4705 if [ "$CFG_SQL_mysql" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4706 echo "MySQL support cannot be enabled due to functionality tests!" |
|
4707 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4708 echo " If you believe this message is in error you may use the continue" |
|
4709 echo " switch (-continue) to $0 to continue." |
|
4710 exit 101 |
|
4711 else |
|
4712 CFG_SQL_mysql=no |
|
4713 QT_LFLAGS_MYSQL="" |
|
4714 QT_LFLAGS_MYSQL_R="" |
|
4715 QT_CFLAGS_MYSQL="" |
|
4716 fi |
|
4717 fi |
|
4718 fi |
|
4719 fi |
|
4720 ;; |
|
4721 psql) |
|
4722 if [ "$CFG_SQL_psql" != "no" ]; then |
|
4723 if "$WHICH" pg_config >/dev/null 2>&1; then |
|
4724 QT_CFLAGS_PSQL=`pg_config --includedir 2>/dev/null` |
|
4725 QT_LFLAGS_PSQL=`pg_config --libdir 2>/dev/null` |
|
4726 fi |
|
4727 [ -z "$QT_CFLAGS_PSQL" ] || QT_CFLAGS_PSQL="-I$QT_CFLAGS_PSQL" |
|
4728 [ -z "$QT_LFLAGS_PSQL" ] || QT_LFLAGS_PSQL="-L$QT_LFLAGS_PSQL" |
|
4729 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 $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4730 if [ "$CFG_SQL_psql" = "auto" ]; then |
|
4731 CFG_SQL_psql=plugin |
|
4732 fi |
|
4733 else |
|
4734 if [ "$CFG_SQL_psql" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4735 echo "PostgreSQL support cannot be enabled due to functionality tests!" |
|
4736 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4737 echo " If you believe this message is in error you may use the continue" |
|
4738 echo " switch (-continue) to $0 to continue." |
|
4739 exit 101 |
|
4740 else |
|
4741 CFG_SQL_psql=no |
|
4742 QT_CFLAGS_PSQL="" |
|
4743 QT_LFLAGS_PSQL="" |
|
4744 fi |
|
4745 fi |
|
4746 fi |
|
4747 ;; |
|
4748 odbc) |
|
4749 if [ "$CFG_SQL_odbc" != "no" ]; then |
|
4750 if [ "$PLATFORM_MAC" != "yes" ] && "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/odbc "ODBC" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4751 if [ "$CFG_SQL_odbc" = "auto" ]; then |
|
4752 CFG_SQL_odbc=plugin |
|
4753 fi |
|
4754 else |
|
4755 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/iodbc "iODBC" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4756 QT_LFLAGS_ODBC="-liodbc" |
|
4757 if [ "$CFG_SQL_odbc" = "auto" ]; then |
|
4758 CFG_SQL_odbc=plugin |
|
4759 fi |
|
4760 else |
|
4761 if [ "$CFG_SQL_odbc" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4762 echo "ODBC support cannot be enabled due to functionality tests!" |
|
4763 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4764 echo " If you believe this message is in error you may use the continue" |
|
4765 echo " switch (-continue) to $0 to continue." |
|
4766 exit 101 |
|
4767 else |
|
4768 CFG_SQL_odbc=no |
|
4769 fi |
|
4770 fi |
|
4771 fi |
|
4772 fi |
|
4773 ;; |
|
4774 oci) |
|
4775 if [ "$CFG_SQL_oci" != "no" ]; then |
|
4776 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/oci "OCI" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4777 if [ "$CFG_SQL_oci" = "auto" ]; then |
|
4778 CFG_SQL_oci=plugin |
|
4779 fi |
|
4780 else |
|
4781 if [ "$CFG_SQL_oci" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4782 echo "Oracle (OCI) support cannot be enabled due to functionality tests!" |
|
4783 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4784 echo " If you believe this message is in error you may use the continue" |
|
4785 echo " switch (-continue) to $0 to continue." |
|
4786 exit 101 |
|
4787 else |
|
4788 CFG_SQL_oci=no |
|
4789 fi |
|
4790 fi |
|
4791 fi |
|
4792 ;; |
|
4793 tds) |
|
4794 if [ "$CFG_SQL_tds" != "no" ]; then |
|
4795 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/tds "TDS" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4796 if [ "$CFG_SQL_tds" = "auto" ]; then |
|
4797 CFG_SQL_tds=plugin |
|
4798 fi |
|
4799 else |
|
4800 if [ "$CFG_SQL_tds" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4801 echo "TDS support cannot be enabled due to functionality tests!" |
|
4802 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4803 echo " If you believe this message is in error you may use the continue" |
|
4804 echo " switch (-continue) to $0 to continue." |
|
4805 exit 101 |
|
4806 else |
|
4807 CFG_SQL_tds=no |
|
4808 fi |
|
4809 fi |
|
4810 fi |
|
4811 ;; |
|
4812 db2) |
|
4813 if [ "$CFG_SQL_db2" != "no" ]; then |
|
4814 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/db2 "DB2" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4815 if [ "$CFG_SQL_db2" = "auto" ]; then |
|
4816 CFG_SQL_db2=plugin |
|
4817 fi |
|
4818 else |
|
4819 if [ "$CFG_SQL_db2" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4820 echo "ODBC support cannot be enabled due to functionality tests!" |
|
4821 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4822 echo " If you believe this message is in error you may use the continue" |
|
4823 echo " switch (-continue) to $0 to continue." |
|
4824 exit 101 |
|
4825 else |
|
4826 CFG_SQL_db2=no |
|
4827 fi |
|
4828 fi |
|
4829 fi |
|
4830 ;; |
|
4831 ibase) |
|
4832 if [ "$CFG_SQL_ibase" != "no" ]; then |
|
4833 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/ibase "InterBase" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4834 if [ "$CFG_SQL_ibase" = "auto" ]; then |
|
4835 CFG_SQL_ibase=plugin |
|
4836 fi |
|
4837 else |
|
4838 if [ "$CFG_SQL_ibase" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4839 echo "InterBase support cannot be enabled due to functionality tests!" |
|
4840 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4841 echo " If you believe this message is in error you may use the continue" |
|
4842 echo " switch (-continue) to $0 to continue." |
|
4843 exit 101 |
|
4844 else |
|
4845 CFG_SQL_ibase=no |
|
4846 fi |
|
4847 fi |
|
4848 fi |
|
4849 ;; |
|
4850 sqlite2) |
|
4851 if [ "$CFG_SQL_sqlite2" != "no" ]; then |
|
4852 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/sqlite2 "SQLite2" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4853 if [ "$CFG_SQL_sqlite2" = "auto" ]; then |
|
4854 CFG_SQL_sqlite2=plugin |
|
4855 fi |
|
4856 else |
|
4857 if [ "$CFG_SQL_sqlite2" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4858 echo "SQLite2 support cannot be enabled due to functionality tests!" |
|
4859 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4860 echo " If you believe this message is in error you may use the continue" |
|
4861 echo " switch (-continue) to $0 to continue." |
|
4862 exit 101 |
|
4863 else |
|
4864 CFG_SQL_sqlite2=no |
|
4865 fi |
|
4866 fi |
|
4867 fi |
|
4868 ;; |
|
4869 sqlite) |
|
4870 if [ "$CFG_SQL_sqlite" != "no" ]; then |
|
4871 SQLITE_AUTODETECT_FAILED="no" |
|
4872 if [ "$CFG_SQLITE" = "system" ]; then |
|
4873 if [ -n "$PKG_CONFIG" ]; then |
|
4874 QT_CFLAGS_SQLITE=`$PKG_CONFIG --cflags sqlite3 2>/dev/null` |
|
4875 QT_LFLAGS_SQLITE=`$PKG_CONFIG --libs sqlite3 2>/dev/null` |
|
4876 fi |
|
4877 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 $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4878 if [ "$CFG_SQL_sqlite" = "auto" ]; then |
|
4879 CFG_SQL_sqlite=plugin |
|
4880 fi |
|
4881 QMAKE_CONFIG="$QMAKE_CONFIG system-sqlite" |
|
4882 else |
|
4883 SQLITE_AUTODETECT_FAILED="yes" |
|
4884 CFG_SQL_sqlite=no |
|
4885 fi |
|
4886 elif [ -f "$relpath/src/3rdparty/sqlite/sqlite3.h" ]; then |
|
4887 if [ "$CFG_SQL_sqlite" = "auto" ]; then |
|
4888 CFG_SQL_sqlite=plugin |
|
4889 fi |
|
4890 else |
|
4891 SQLITE_AUTODETECT_FAILED="yes" |
|
4892 CFG_SQL_sqlite=no |
|
4893 fi |
|
4894 |
|
4895 if [ "$SQLITE_AUTODETECT_FAILED" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4896 echo "SQLite support cannot be enabled due to functionality tests!" |
|
4897 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4898 echo " If you believe this message is in error you may use the continue" |
|
4899 echo " switch (-continue) to $0 to continue." |
|
4900 exit 101 |
|
4901 fi |
|
4902 fi |
|
4903 ;; |
|
4904 *) |
|
4905 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
4906 echo "unknown SQL driver: $_SQLDR" |
|
4907 fi |
|
4908 ;; |
|
4909 esac |
|
4910 done |
|
4911 |
|
4912 # auto-detect NIS support |
|
4913 if [ "$CFG_NIS" != "no" ]; then |
|
4914 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/nis "NIS" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4915 CFG_NIS=yes |
|
4916 else |
|
4917 if [ "$CFG_NIS" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4918 echo "NIS support cannot be enabled due to functionality tests!" |
|
4919 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4920 echo " If you believe this message is in error you may use the continue" |
|
4921 echo " switch (-continue) to $0 to continue." |
|
4922 exit 101 |
|
4923 else |
|
4924 CFG_NIS=no |
|
4925 fi |
|
4926 fi |
|
4927 fi |
|
4928 |
|
4929 # auto-detect CUPS support |
|
4930 if [ "$CFG_CUPS" != "no" ]; then |
|
4931 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/cups "Cups" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4932 CFG_CUPS=yes |
|
4933 else |
|
4934 if [ "$CFG_CUPS" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4935 echo "Cups support cannot be enabled due to functionality tests!" |
|
4936 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4937 echo " If you believe this message is in error you may use the continue" |
|
4938 echo " switch (-continue) to $0 to continue." |
|
4939 exit 101 |
|
4940 else |
|
4941 CFG_CUPS=no |
|
4942 fi |
|
4943 fi |
|
4944 fi |
|
4945 |
|
4946 # auto-detect iconv(3) support |
|
4947 if [ "$CFG_ICONV" != "no" ]; then |
|
4948 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
4949 CFG_ICONV=no |
|
4950 elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" "$OPT_VERBOSE" "$relpath" "$outpath" "config.tests/unix/iconv" "POSIX iconv" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4951 CFG_ICONV=yes |
|
4952 elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" "$OPT_VERBOSE" "$relpath" "$outpath" "config.tests/unix/gnu-libiconv" "GNU libiconv" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4953 CFG_ICONV=gnu |
|
4954 else |
|
4955 if [ "$CFG_ICONV" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4956 echo "Iconv support cannot be enabled due to functionality tests!" |
|
4957 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4958 echo " If you believe this message is in error you may use the continue" |
|
4959 echo " switch (-continue) to $0 to continue." |
|
4960 exit 101 |
|
4961 else |
|
4962 CFG_ICONV=no |
|
4963 fi |
|
4964 fi |
|
4965 fi |
|
4966 |
|
4967 # auto-detect libdbus-1 support |
|
4968 if [ "$CFG_DBUS" != "no" ]; then |
|
4969 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --atleast-version="$MIN_DBUS_1_VERSION" dbus-1 2>/dev/null; then |
|
4970 QT_CFLAGS_DBUS=`$PKG_CONFIG --cflags dbus-1 2>/dev/null` |
|
4971 QT_LIBS_DBUS=`$PKG_CONFIG --libs dbus-1 2>/dev/null` |
|
4972 fi |
|
4973 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/dbus "D-Bus" $L_FLAGS $I_FLAGS $l_FLAGS $QT_CFLAGS_DBUS $QT_LIBS_DBUS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
4974 [ "$CFG_DBUS" = "auto" ] && CFG_DBUS=yes |
|
4975 QMakeVar set QT_CFLAGS_DBUS "$QT_CFLAGS_DBUS" |
|
4976 QMakeVar set QT_LIBS_DBUS "$QT_LIBS_DBUS" |
|
4977 else |
|
4978 if [ "$CFG_DBUS" = "auto" ]; then |
|
4979 CFG_DBUS=no |
|
4980 elif [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
4981 # CFG_DBUS is "yes" or "linked" here |
|
4982 |
|
4983 echo "The QtDBus module cannot be enabled because libdbus-1 version $MIN_DBUS_1_VERSION was not found." |
|
4984 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
4985 echo " If you believe this message is in error you may use the continue" |
|
4986 echo " switch (-continue) to $0 to continue." |
|
4987 exit 101 |
|
4988 fi |
|
4989 fi |
|
4990 fi |
|
4991 |
|
4992 # Generate a CRC of the namespace for using in constants for the Carbon port. |
|
4993 # This should mean that you really *can* load two Qt's and have our custom |
|
4994 # Carbon events work. |
|
4995 if [ "$PLATFORM_MAC" = "yes" -a ! -z "$QT_NAMESPACE" ]; then |
|
4996 QT_NAMESPACE_MAC_CRC=`"$mactests/crc.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/mac/crc $QT_NAMESPACE $L_FLAGS $I_FLAGS $l_FLAGS` |
|
4997 fi |
|
4998 |
|
4999 if [ "$PLATFORM_X11" = "yes" -o "$PLATFORM_QWS" = "yes" ]; then |
|
5000 |
|
5001 # detect EGL support |
|
5002 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/egl" "EGL (EGL/egl.h)" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5003 # EGL specified by QMAKE_*_EGL, included with <EGL/egl.h> |
|
5004 CFG_EGL=yes |
|
5005 CFG_EGL_GLES_INCLUDES=no |
|
5006 elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/egl4gles1" "EGL (GLES/egl.h)" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5007 # EGL specified by QMAKE_*_EGL, included with <GLES/egl.h> |
|
5008 CFG_EGL=yes |
|
5009 CFG_EGL_GLES_INCLUDES=yes |
|
5010 fi |
|
5011 if ( [ "$CFG_OPENGL" = "es1" ] || [ "$CFG_OPENGL" = "es1cl" ] || [ "$CFG_OPENGL" = "es2" ] ) && [ "$CFG_EGL" != "yes" ]; then |
|
5012 echo "The EGL functionality test failed!" |
|
5013 echo " EGL is required for OpenGL ES to manage contexts & surfaces." |
|
5014 echo " You might need to modify the include and library search paths by editing" |
|
5015 echo " QMAKE_INCDIR_EGL, QMAKE_LIBDIR_EGL and QMAKE_LIBS_EGL in" |
|
5016 echo " ${XQMAKESPEC}." |
|
5017 exit 1 |
|
5018 fi |
|
5019 |
|
5020 |
|
5021 # auto-detect Glib support |
|
5022 if [ "$CFG_GLIB" != "no" ]; then |
|
5023 if [ -n "$PKG_CONFIG" ]; then |
|
5024 QT_CFLAGS_GLIB=`$PKG_CONFIG --cflags glib-2.0 gthread-2.0 2>/dev/null` |
|
5025 QT_LIBS_GLIB=`$PKG_CONFIG --libs glib-2.0 gthread-2.0 2>/dev/null` |
|
5026 fi |
|
5027 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/glib "Glib" $L_FLAGS $I_FLAGS $l_FLAGS $QT_CFLAGS_GLIB $QT_LIBS_GLIB $X11TESTS_FLAGS ; then |
|
5028 CFG_GLIB=yes |
|
5029 QMakeVar set QT_CFLAGS_GLIB "$QT_CFLAGS_GLIB" |
|
5030 QMakeVar set QT_LIBS_GLIB "$QT_LIBS_GLIB" |
|
5031 else |
|
5032 if [ "$CFG_GLIB" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5033 echo "Glib support cannot be enabled due to functionality tests!" |
|
5034 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5035 echo " If you believe this message is in error you may use the continue" |
|
5036 echo " switch (-continue) to $0 to continue." |
|
5037 exit 101 |
|
5038 else |
|
5039 CFG_GLIB=no |
|
5040 fi |
|
5041 fi |
|
5042 fi |
|
5043 |
|
5044 if [ "$CFG_PHONON" != "no" ]; then |
|
5045 if [ "$CFG_PHONON_BACKEND" != "no" ]; then |
|
5046 if [ "$CFG_GLIB" = "yes" -a "$CFG_GSTREAMER" != "no" ]; then |
|
5047 if [ -n "$PKG_CONFIG" ]; then |
|
5048 QT_CFLAGS_GSTREAMER=`$PKG_CONFIG --cflags gstreamer-0.10 gstreamer-plugins-base-0.10 2>/dev/null` |
|
5049 QT_LIBS_GSTREAMER=`$PKG_CONFIG --libs gstreamer-0.10 gstreamer-plugins-base-0.10 2>/dev/null` |
|
5050 fi |
|
5051 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/gstreamer "GStreamer" $L_FLAGS $I_FLAGS $l_FLAGS $QT_CFLAGS_GSTREAMER $QT_LIBS_GSTREAMER $X11TESTS_FLAGS; then |
|
5052 CFG_GSTREAMER=yes |
|
5053 QMakeVar set QT_CFLAGS_GSTREAMER "$QT_CFLAGS_GSTREAMER" |
|
5054 QMakeVar set QT_LIBS_GSTREAMER "$QT_LIBS_GSTREAMER" |
|
5055 else |
|
5056 if [ "$CFG_GSTREAMER" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5057 echo "Gstreamer support cannot be enabled due to functionality tests!" |
|
5058 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5059 echo " If you believe this message is in error you may use the continue" |
|
5060 echo " switch (-continue) to $0 to continue." |
|
5061 exit 101 |
|
5062 else |
|
5063 CFG_GSTREAMER=no |
|
5064 fi |
|
5065 fi |
|
5066 elif [ "$CFG_GLIB" = "no" ]; then |
|
5067 CFG_GSTREAMER=no |
|
5068 fi |
|
5069 |
|
5070 if [ "$CFG_GSTREAMER" = "yes" ]; then |
|
5071 CFG_PHONON=yes |
|
5072 else |
|
5073 if [ "$CFG_PHONON" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5074 echo "Phonon support cannot be enabled due to functionality tests!" |
|
5075 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5076 echo " If you believe this message is in error you may use the continue" |
|
5077 echo " switch (-continue) to $0 to continue." |
|
5078 exit 101 |
|
5079 else |
|
5080 CFG_PHONON=no |
|
5081 fi |
|
5082 fi |
|
5083 else |
|
5084 CFG_PHONON=yes |
|
5085 fi |
|
5086 fi |
|
5087 fi # X11/QWS |
|
5088 |
|
5089 # x11 |
|
5090 if [ "$PLATFORM_X11" = "yes" ]; then |
|
5091 x11tests="$relpath/config.tests/x11" |
|
5092 X11TESTS_FLAGS= |
|
5093 |
|
5094 # work around broken X11 headers when using GCC 2.95 or later |
|
5095 NOTYPE=no |
|
5096 "$x11tests/notype.test" "$XQMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath" && NOTYPE=yes |
|
5097 if [ $NOTYPE = "yes" ]; then |
|
5098 QMakeVar add QMAKE_CXXFLAGS -fpermissive |
|
5099 X11TESTS_FLAGS="$X11TESTS_FLAGS -fpermissive" |
|
5100 fi |
|
5101 |
|
5102 # Check we actually have X11 :-) |
|
5103 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xlib "XLib" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS |
|
5104 if [ $? != "0" ]; then |
|
5105 echo "Basic XLib functionality test failed!" |
|
5106 echo " You might need to modify the include and library search paths by editing" |
|
5107 echo " QMAKE_INCDIR_X11 and QMAKE_LIBDIR_X11 in ${XQMAKESPEC}." |
|
5108 exit 1 |
|
5109 fi |
|
5110 |
|
5111 # auto-detect OpenGL support (es1 = OpenGL ES 1.x Common, es1cl = ES 1.x common lite, es2 = OpenGL ES 2.x) |
|
5112 if [ "$CFG_OPENGL" = "auto" ] || [ "$CFG_OPENGL" = "yes" ]; then |
|
5113 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/opengl "OpenGL" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5114 CFG_OPENGL=desktop |
|
5115 elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles2 "OpenGL ES 2.x" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5116 CFG_OPENGL=es2 |
|
5117 elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles1 "OpenGL ES 1.x" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5118 CFG_OPENGL=es1 |
|
5119 elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles1cl "OpenGL ES 1.x Lite" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5120 CFG_OPENGL=es1cl |
|
5121 else |
|
5122 if [ "$CFG_OPENGL" = "yes" ]; then |
|
5123 echo "All the OpenGL functionality tests failed!" |
|
5124 echo " You might need to modify the include and library search paths by editing" |
|
5125 echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in" |
|
5126 echo " ${XQMAKESPEC}." |
|
5127 exit 1 |
|
5128 fi |
|
5129 CFG_OPENGL=no |
|
5130 fi |
|
5131 case "$PLATFORM" in |
|
5132 hpux*) |
|
5133 # HP-UX have buggy glx headers; check if we really need to define the GLXFBConfig struct. |
|
5134 if [ "$CFG_OPENGL" = "desktop" ]; then |
|
5135 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/glxfbconfig "OpenGL" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS |
|
5136 if [ $? != "0" ]; then |
|
5137 QMakeVar add DEFINES QT_DEFINE_GLXFBCONFIG_STRUCT |
|
5138 fi |
|
5139 fi |
|
5140 ;; |
|
5141 *) |
|
5142 ;; |
|
5143 esac |
|
5144 elif [ "$CFG_OPENGL" = "es1cl" ]; then |
|
5145 # OpenGL ES 1.x common lite |
|
5146 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles1cl "OpenGL ES 1.x Lite" $L_FLAGS $I_FLAGS $l_FLAGS |
|
5147 if [ $? != "0" ]; then |
|
5148 echo "The OpenGL ES 1.x Common Lite Profile functionality test failed!" |
|
5149 echo " You might need to modify the include and library search paths by editing" |
|
5150 echo " QMAKE_INCDIR_OPENGL_ES1CL, QMAKE_LIBDIR_OPENGL_ES1CL and QMAKE_LIBS_OPENGL_ES1CL in" |
|
5151 echo " ${XQMAKESPEC}." |
|
5152 exit 1 |
|
5153 fi |
|
5154 elif [ "$CFG_OPENGL" = "es1" ]; then |
|
5155 # OpenGL ES 1.x |
|
5156 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles1 "OpenGL ES 1.x" $L_FLAGS $I_FLAGS $l_FLAGS |
|
5157 if [ $? != "0" ]; then |
|
5158 echo "The OpenGL ES 1.x functionality test failed!" |
|
5159 echo " You might need to modify the include and library search paths by editing" |
|
5160 echo " QMAKE_INCDIR_OPENGL_ES1, QMAKE_LIBDIR_OPENGL_ES1 and QMAKE_LIBS_OPENGL_ES1 in" |
|
5161 echo " ${XQMAKESPEC}." |
|
5162 exit 1 |
|
5163 fi |
|
5164 elif [ "$CFG_OPENGL" = "es2" ]; then |
|
5165 #OpenGL ES 2.x |
|
5166 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles2 "OpenGL ES 2.x" $L_FLAGS $I_FLAGS $l_FLAGS |
|
5167 if [ $? != "0" ]; then |
|
5168 echo "The OpenGL ES 2.0 functionality test failed!" |
|
5169 echo " You might need to modify the include and library search paths by editing" |
|
5170 echo " QMAKE_INCDIR_OPENGL_ES2, QMAKE_LIBDIR_OPENGL_ES2 and QMAKE_LIBS_OPENGL_ES2 in" |
|
5171 echo " ${XQMAKESPEC}." |
|
5172 exit 1 |
|
5173 fi |
|
5174 elif [ "$CFG_OPENGL" = "desktop" ]; then |
|
5175 # Desktop OpenGL support |
|
5176 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/opengl "OpenGL" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS |
|
5177 if [ $? != "0" ]; then |
|
5178 echo "The OpenGL functionality test failed!" |
|
5179 echo " You might need to modify the include and library search paths by editing" |
|
5180 echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in" |
|
5181 echo " ${XQMAKESPEC}." |
|
5182 exit 1 |
|
5183 fi |
|
5184 case "$PLATFORM" in |
|
5185 hpux*) |
|
5186 # HP-UX have buggy glx headers; check if we really need to define the GLXFBConfig struct. |
|
5187 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/glxfbconfig "OpenGL" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS |
|
5188 if [ $? != "0" ]; then |
|
5189 QMakeVar add DEFINES QT_DEFINE_GLXFBCONFIG_STRUCT |
|
5190 fi |
|
5191 ;; |
|
5192 *) |
|
5193 ;; |
|
5194 esac |
|
5195 fi |
|
5196 |
|
5197 # if opengl is disabled and the user specified graphicssystem gl, disable it... |
|
5198 if [ "$CFG_GRAPHICS_SYSTEM" = "opengl" ] && [ "$CFG_OPENGL" = "no" ]; then |
|
5199 echo "OpenGL Graphics System is disabled due to missing OpenGL support..." |
|
5200 CFG_GRAPHICS_SYSTEM=default |
|
5201 fi |
|
5202 |
|
5203 # auto-detect Xcursor support |
|
5204 if [ "$CFG_XCURSOR" != "no" ]; then |
|
5205 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xcursor "Xcursor" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5206 if [ "$CFG_XCURSOR" != "runtime" ]; then |
|
5207 CFG_XCURSOR=yes; |
|
5208 fi |
|
5209 else |
|
5210 if [ "$CFG_XCURSOR" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5211 echo "Xcursor support cannot be enabled due to functionality tests!" |
|
5212 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5213 echo " If you believe this message is in error you may use the continue" |
|
5214 echo " switch (-continue) to $0 to continue." |
|
5215 exit 101 |
|
5216 else |
|
5217 CFG_XCURSOR=no |
|
5218 fi |
|
5219 fi |
|
5220 fi |
|
5221 |
|
5222 # auto-detect Xfixes support |
|
5223 if [ "$CFG_XFIXES" != "no" ]; then |
|
5224 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xfixes "Xfixes" $L_FLAGS $I_FLAGS $X11TESTS_FLAGS; then |
|
5225 if [ "$CFG_XFIXES" != "runtime" ]; then |
|
5226 CFG_XFIXES=yes; |
|
5227 fi |
|
5228 else |
|
5229 if [ "$CFG_XFIXES" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5230 echo "Xfixes support cannot be enabled due to functionality tests!" |
|
5231 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5232 echo " If you believe this message is in error you may use the continue" |
|
5233 echo " switch (-continue) to $0 to continue." |
|
5234 exit 101 |
|
5235 else |
|
5236 CFG_XFIXES=no |
|
5237 fi |
|
5238 fi |
|
5239 fi |
|
5240 |
|
5241 # auto-detect Xrandr support (resize and rotate extension) |
|
5242 if [ "$CFG_XRANDR" != "no" ]; then |
|
5243 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xrandr "Xrandr" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5244 if [ "$CFG_XRANDR" != "runtime" ]; then |
|
5245 CFG_XRANDR=yes |
|
5246 fi |
|
5247 else |
|
5248 if [ "$CFG_XRANDR" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5249 echo "Xrandr support cannot be enabled due to functionality tests!" |
|
5250 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5251 echo " If you believe this message is in error you may use the continue" |
|
5252 echo " switch (-continue) to $0 to continue." |
|
5253 exit 101 |
|
5254 else |
|
5255 CFG_XRANDR=no |
|
5256 fi |
|
5257 fi |
|
5258 fi |
|
5259 |
|
5260 # auto-detect Xrender support |
|
5261 if [ "$CFG_XRENDER" != "no" ]; then |
|
5262 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xrender "Xrender" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5263 CFG_XRENDER=yes |
|
5264 else |
|
5265 if [ "$CFG_XRENDER" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5266 echo "Xrender support cannot be enabled due to functionality tests!" |
|
5267 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5268 echo " If you believe this message is in error you may use the continue" |
|
5269 echo " switch (-continue) to $0 to continue." |
|
5270 exit 101 |
|
5271 else |
|
5272 CFG_XRENDER=no |
|
5273 fi |
|
5274 fi |
|
5275 fi |
|
5276 |
|
5277 # auto-detect MIT-SHM support |
|
5278 if [ "$CFG_MITSHM" != "no" ]; then |
|
5279 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/mitshm "mitshm" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5280 CFG_MITSHM=yes |
|
5281 else |
|
5282 if [ "$CFG_MITSHM" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5283 echo "MITSHM support cannot be enabled due to functionality tests!" |
|
5284 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5285 echo " If you believe this message is in error you may use the continue" |
|
5286 echo " switch (-continue) to $0 to continue." |
|
5287 exit 101 |
|
5288 else |
|
5289 CFG_MITSHM=no |
|
5290 fi |
|
5291 fi |
|
5292 fi |
|
5293 |
|
5294 # auto-detect FontConfig support |
|
5295 if [ "$CFG_FONTCONFIG" != "no" ]; then |
|
5296 if [ -n "$PKG_CONFIG" ] && $PKG_CONFIG --exists fontconfig --exists freetype2 2>/dev/null; then |
|
5297 QT_CFLAGS_FONTCONFIG=`$PKG_CONFIG --cflags fontconfig --cflags freetype2 2>/dev/null` |
|
5298 QT_LIBS_FONTCONFIG=`$PKG_CONFIG --libs fontconfig --libs freetype2 2>/dev/null` |
|
5299 else |
|
5300 QT_CFLAGS_FONTCONFIG= |
|
5301 QT_LIBS_FONTCONFIG="-lfreetype -lfontconfig" |
|
5302 fi |
|
5303 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/fontconfig "FontConfig" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS $QT_CFLAGS_FONTCONFIG $QT_LIBS_FONTCONFIG; then |
|
5304 CFG_FONTCONFIG=yes |
|
5305 QMakeVar set QMAKE_CFLAGS_X11 "$QT_CFLAGS_FONTCONFIG \$\$QMAKE_CFLAGS_X11" |
|
5306 QMakeVar set QMAKE_LIBS_X11 "$QT_LIBS_FONTCONFIG \$\$QMAKE_LIBS_X11" |
|
5307 CFG_LIBFREETYPE=system |
|
5308 else |
|
5309 if [ "$CFG_FONTCONFIG" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5310 echo "FontConfig support cannot be enabled due to functionality tests!" |
|
5311 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5312 echo " If you believe this message is in error you may use the continue" |
|
5313 echo " switch (-continue) to $0 to continue." |
|
5314 exit 101 |
|
5315 else |
|
5316 CFG_FONTCONFIG=no |
|
5317 fi |
|
5318 fi |
|
5319 fi |
|
5320 |
|
5321 # auto-detect Session Management support |
|
5322 if [ "$CFG_SM" = "auto" ]; then |
|
5323 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/sm "Session Management" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5324 CFG_SM=yes |
|
5325 else |
|
5326 if [ "$CFG_SM" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5327 echo "Session Management support cannot be enabled due to functionality tests!" |
|
5328 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5329 echo " If you believe this message is in error you may use the continue" |
|
5330 echo " switch (-continue) to $0 to continue." |
|
5331 exit 101 |
|
5332 else |
|
5333 CFG_SM=no |
|
5334 fi |
|
5335 fi |
|
5336 fi |
|
5337 |
|
5338 # auto-detect SHAPE support |
|
5339 if [ "$CFG_XSHAPE" != "no" ]; then |
|
5340 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xshape "XShape" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5341 CFG_XSHAPE=yes |
|
5342 else |
|
5343 if [ "$CFG_XSHAPE" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5344 echo "XShape support cannot be enabled due to functionality tests!" |
|
5345 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5346 echo " If you believe this message is in error you may use the continue" |
|
5347 echo " switch (-continue) to $0 to continue." |
|
5348 exit 101 |
|
5349 else |
|
5350 CFG_XSHAPE=no |
|
5351 fi |
|
5352 fi |
|
5353 fi |
|
5354 |
|
5355 # auto-detect XSync support |
|
5356 if [ "$CFG_XSYNC" != "no" ]; then |
|
5357 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xsync "XSync" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5358 CFG_XSYNC=yes |
|
5359 else |
|
5360 if [ "$CFG_XSYNC" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5361 echo "XSync support cannot be enabled due to functionality tests!" |
|
5362 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5363 echo " If you believe this message is in error you may use the continue" |
|
5364 echo " switch (-continue) to $0 to continue." |
|
5365 exit 101 |
|
5366 else |
|
5367 CFG_XSYNC=no |
|
5368 fi |
|
5369 fi |
|
5370 fi |
|
5371 |
|
5372 # auto-detect Xinerama support |
|
5373 if [ "$CFG_XINERAMA" != "no" ]; then |
|
5374 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xinerama "Xinerama" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5375 if [ "$CFG_XINERAMA" != "runtime" ]; then |
|
5376 CFG_XINERAMA=yes |
|
5377 fi |
|
5378 else |
|
5379 if [ "$CFG_XINERAMA" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5380 echo "Xinerama support cannot be enabled due to functionality tests!" |
|
5381 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5382 echo " If you believe this message is in error you may use the continue" |
|
5383 echo " switch (-continue) to $0 to continue." |
|
5384 exit 101 |
|
5385 else |
|
5386 CFG_XINERAMA=no |
|
5387 fi |
|
5388 fi |
|
5389 fi |
|
5390 |
|
5391 # auto-detect Xinput support |
|
5392 if [ "$CFG_XINPUT" != "no" ]; then |
|
5393 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xinput "XInput" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5394 if [ "$CFG_XINPUT" != "runtime" ]; then |
|
5395 CFG_XINPUT=yes |
|
5396 fi |
|
5397 else |
|
5398 if [ "$CFG_XINPUT" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5399 echo "Tablet and Xinput support cannot be enabled due to functionality tests!" |
|
5400 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5401 echo " If you believe this message is in error you may use the continue" |
|
5402 echo " switch (-continue) to $0 to continue." |
|
5403 exit 101 |
|
5404 else |
|
5405 CFG_XINPUT=no |
|
5406 fi |
|
5407 fi |
|
5408 fi |
|
5409 |
|
5410 # auto-detect XKB support |
|
5411 if [ "$CFG_XKB" != "no" ]; then |
|
5412 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/x11/xkb "XKB" $L_FLAGS $I_FLAGS $l_FLAGS $X11TESTS_FLAGS; then |
|
5413 CFG_XKB=yes |
|
5414 else |
|
5415 if [ "$CFG_XKB" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5416 echo "XKB support cannot be enabled due to functionality tests!" |
|
5417 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5418 echo " If you believe this message is in error you may use the continue" |
|
5419 echo " switch (-continue) to $0 to continue." |
|
5420 exit 101 |
|
5421 else |
|
5422 CFG_XKB=no |
|
5423 fi |
|
5424 fi |
|
5425 fi |
|
5426 |
|
5427 if [ "$CFG_GLIB" = "yes" -a "$CFG_QGTKSTYLE" != "no" ]; then |
|
5428 if [ -n "$PKG_CONFIG" ]; then |
|
5429 QT_CFLAGS_QGTKSTYLE=`$PKG_CONFIG --cflags gtk+-2.0 ">=" 2.10 atk 2>/dev/null` |
|
5430 QT_LIBS_QGTKSTYLE=`$PKG_CONFIG --libs gobject-2.0 2>/dev/null` |
|
5431 fi |
|
5432 if [ -n "$QT_CFLAGS_QGTKSTYLE" ] ; then |
|
5433 CFG_QGTKSTYLE=yes |
|
5434 QMakeVar set QT_CFLAGS_QGTKSTYLE "$QT_CFLAGS_QGTKSTYLE" |
|
5435 QMakeVar set QT_LIBS_QGTKSTYLE "$QT_LIBS_QGTKSTYLE" |
|
5436 else |
|
5437 if [ "$CFG_QGTKSTYLE" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5438 echo "Gtk theme support cannot be enabled due to functionality tests!" |
|
5439 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5440 echo " If you believe this message is in error you may use the continue" |
|
5441 echo " switch (-continue) to $0 to continue." |
|
5442 exit 101 |
|
5443 else |
|
5444 CFG_QGTKSTYLE=no |
|
5445 fi |
|
5446 fi |
|
5447 elif [ "$CFG_GLIB" = "no" ]; then |
|
5448 CFG_QGTKSTYLE=no |
|
5449 fi |
|
5450 fi # X11 |
|
5451 |
|
5452 |
|
5453 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
5454 if [ "$CFG_PHONON" != "no" ]; then |
|
5455 # Always enable Phonon (unless it was explicitly disabled) |
|
5456 CFG_PHONON=yes |
|
5457 fi |
|
5458 fi |
|
5459 |
|
5460 # QWS |
|
5461 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
5462 |
|
5463 # auto-detect OpenGL support (es1 = OpenGL ES 1.x Common, es1cl = ES 1.x common lite, es2 = OpenGL ES 2.x) |
|
5464 if [ "$CFG_OPENGL" = "yes" ]; then |
|
5465 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles2 "OpenGL ES 2.x" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5466 CFG_OPENGL=es2 |
|
5467 elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles1 "OpenGL ES 1.x" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5468 CFG_OPENGL=es1 |
|
5469 elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles1cl "OpenGL ES 1.x Lite" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5470 CFG_OPENGL=es1cl |
|
5471 else |
|
5472 echo "All the OpenGL ES functionality tests failed!" |
|
5473 echo " You might need to modify the include and library search paths by editing" |
|
5474 echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in" |
|
5475 echo " ${XQMAKESPEC}." |
|
5476 exit 1 |
|
5477 fi |
|
5478 elif [ "$CFG_OPENGL" = "es1" ]; then |
|
5479 # OpenGL ES 1.x |
|
5480 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles1 "OpenGL ES 1.x" $L_FLAGS $I_FLAGS $l_FLAGS |
|
5481 if [ $? != "0" ]; then |
|
5482 echo "The OpenGL ES 1.x functionality test failed!" |
|
5483 echo " You might need to modify the include and library search paths by editing" |
|
5484 echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in" |
|
5485 echo " ${XQMAKESPEC}." |
|
5486 exit 1 |
|
5487 fi |
|
5488 elif [ "$CFG_OPENGL" = "es2" ]; then |
|
5489 #OpenGL ES 2.x |
|
5490 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/opengles2 "OpenGL ES 2.x" $L_FLAGS $I_FLAGS $l_FLAGS |
|
5491 if [ $? != "0" ]; then |
|
5492 echo "The OpenGL ES 2.0 functionality test failed!" |
|
5493 echo " You might need to modify the include and library search paths by editing" |
|
5494 echo " QMAKE_INCDIR_OPENGL, QMAKE_LIBDIR_OPENGL and QMAKE_LIBS_OPENGL in" |
|
5495 echo " ${XQMAKESPEC}." |
|
5496 exit 1 |
|
5497 fi |
|
5498 elif [ "$CFG_OPENGL" = "desktop" ]; then |
|
5499 # Desktop OpenGL support |
|
5500 echo "Desktop OpenGL support is not avaliable on Qt for Embedded Linux" |
|
5501 exit 1 |
|
5502 fi |
|
5503 |
|
5504 # screen drivers |
|
5505 for screen in ${CFG_GFX_ON} ${CFG_GFX_PLUGIN}; do |
|
5506 if [ "${screen}" = "ahi" ] && [ "${CFG_CONFIGURE_EXIT_ON_ERROR}" = "yes" ]; then |
|
5507 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/qws/ahi "Ahi" $L_FLAGS $I_FLAGS $l_FLAGS |
|
5508 if [ $? != "0" ]; then |
|
5509 echo "The Ahi screen driver functionality test failed!" |
|
5510 echo " You might need to modify the include and library search paths by editing" |
|
5511 echo " QMAKE_INCDIR and QMAKE_LIBDIR in" |
|
5512 echo " ${XQMAKESPEC}." |
|
5513 exit 1 |
|
5514 fi |
|
5515 fi |
|
5516 |
|
5517 if [ "${screen}" = "svgalib" ] && [ "${CFG_CONFIGURE_EXIT_ON_ERROR}" = "yes" ]; then |
|
5518 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/qws/svgalib "SVGAlib" $L_FLAGS $I_FLAGS $l_FLAGS |
|
5519 if [ $? != "0" ]; then |
|
5520 echo "The SVGAlib screen driver functionality test failed!" |
|
5521 echo " You might need to modify the include and library search paths by editing" |
|
5522 echo " QMAKE_INCDIR and QMAKE_LIBDIR in" |
|
5523 echo " ${XQMAKESPEC}." |
|
5524 exit 1 |
|
5525 fi |
|
5526 fi |
|
5527 |
|
5528 if [ "${screen}" = "directfb" ] && [ "${CFG_CONFIGURE_EXIT_ON_ERROR}" = "yes" ]; then |
|
5529 if [ -n "$PKG_CONFIG" ]; then |
|
5530 if $PKG_CONFIG --exists directfb 2>/dev/null; then |
|
5531 QT_CFLAGS_DIRECTFB=`$PKG_CONFIG --cflags directfb 2>/dev/null` |
|
5532 QT_LIBS_DIRECTFB=`$PKG_CONFIG --libs directfb 2>/dev/null` |
|
5533 elif directfb-config --version >/dev/null 2>&1; then |
|
5534 QT_CFLAGS_DIRECTFB=`directfb-config --cflags 2>/dev/null` |
|
5535 QT_LIBS_DIRECTFB=`directfb-config --libs 2>/dev/null` |
|
5536 fi |
|
5537 fi |
|
5538 |
|
5539 # QMake variables set here override those in the mkspec. Therefore we only set the variables here if they are not zero. |
|
5540 if [ -n "$QT_CFLAGS_DIRECTFB" ] || [ -n "$QT_LIBS_DIRECTFB" ]; then |
|
5541 QMakeVar set QT_CFLAGS_DIRECTFB "$QT_CFLAGS_DIRECTFB" |
|
5542 QMakeVar set QT_LIBS_DIRECTFB "$QT_LIBS_DIRECTFB" |
|
5543 fi |
|
5544 if [ "$CFG_QT3SUPPORT" = "yes" ]; then |
|
5545 QMakeVar set QT_DEFINES_DIRECTFB "QT3_SUPPORT" |
|
5546 fi |
|
5547 |
|
5548 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/qws/directfb "DirectFB" $L_FLAGS $I_FLAGS $l_FLAGS $QT_CFLAGS_DIRECTFB $QT_LIBS_DIRECTFB |
|
5549 if [ $? != "0" ]; then |
|
5550 echo "The DirectFB screen driver functionality test failed!" |
|
5551 echo " You might need to modify the include and library search paths by editing" |
|
5552 echo " QT_CFLAGS_DIRECTFB and QT_LIBS_DIRECTFB in" |
|
5553 echo " ${XQMAKESPEC}." |
|
5554 exit 1 |
|
5555 fi |
|
5556 fi |
|
5557 |
|
5558 done |
|
5559 |
|
5560 # mouse drivers |
|
5561 for mouse in ${CFG_MOUSE_ON} ${CFG_MOUSE_PLUGIN}; do |
|
5562 if [ "${mouse}" = "tslib" ] && [ "${CFG_CONFIGURE_EXIT_ON_ERROR}" = "yes" ]; then |
|
5563 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/tslib "tslib" $L_FLAGS $I_FLAGS $l_FLAGS |
|
5564 if [ $? != "0" ]; then |
|
5565 echo "The tslib functionality test failed!" |
|
5566 echo " You might need to modify the include and library search paths by editing" |
|
5567 echo " QMAKE_INCDIR and QMAKE_LIBDIR in" |
|
5568 echo " ${XQMAKESPEC}." |
|
5569 exit 1 |
|
5570 fi |
|
5571 fi |
|
5572 done |
|
5573 |
|
5574 CFG_QGTKSTYLE=no |
|
5575 |
|
5576 # sound |
|
5577 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/qws/sound "sound" $L_FLAGS $I_FLAGS $l_FLAGS |
|
5578 if [ $? != "0" ]; then |
|
5579 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SOUND" |
|
5580 fi |
|
5581 |
|
5582 fi # QWS |
|
5583 |
|
5584 # freetype support |
|
5585 [ "x$CFG_EMBEDDED" != "xno" ] && CFG_LIBFREETYPE="$CFG_QWS_FREETYPE" |
|
5586 [ "x$PLATFORM_MAC" = "xyes" ] && CFG_LIBFREETYPE=no |
|
5587 if [ "$CFG_LIBFREETYPE" = "auto" ]; then |
|
5588 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/freetype "FreeType" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
5589 CFG_LIBFREETYPE=system |
|
5590 else |
|
5591 CFG_LIBFREETYPE=yes |
|
5592 fi |
|
5593 fi |
|
5594 |
|
5595 if [ "$CFG_ENDIAN" = "auto" ]; then |
|
5596 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
5597 true #leave as auto |
|
5598 else |
|
5599 "$unixtests/endian.test" "$XQMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath" |
|
5600 F="$?" |
|
5601 if [ "$F" -eq 0 ]; then |
|
5602 CFG_ENDIAN="Q_LITTLE_ENDIAN" |
|
5603 elif [ "$F" -eq 1 ]; then |
|
5604 CFG_ENDIAN="Q_BIG_ENDIAN" |
|
5605 else |
|
5606 echo |
|
5607 echo "The target system byte order could not be detected!" |
|
5608 echo "Turn on verbose messaging (-v) to see the final report." |
|
5609 echo "You can use the -little-endian or -big-endian switch to" |
|
5610 echo "$0 to continue." |
|
5611 exit 101 |
|
5612 fi |
|
5613 fi |
|
5614 fi |
|
5615 |
|
5616 if [ "$CFG_HOST_ENDIAN" = "auto" ]; then |
|
5617 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
5618 true #leave as auto |
|
5619 else |
|
5620 "$unixtests/endian.test" "$QMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath" |
|
5621 F="$?" |
|
5622 if [ "$F" -eq 0 ]; then |
|
5623 CFG_HOST_ENDIAN="Q_LITTLE_ENDIAN" |
|
5624 elif [ "$F" -eq 1 ]; then |
|
5625 CFG_HOST_ENDIAN="Q_BIG_ENDIAN" |
|
5626 else |
|
5627 echo |
|
5628 echo "The host system byte order could not be detected!" |
|
5629 echo "Turn on verbose messaging (-v) to see the final report." |
|
5630 echo "You can use the -host-little-endian or -host-big-endian switch to" |
|
5631 echo "$0 to continue." |
|
5632 exit 101 |
|
5633 fi |
|
5634 fi |
|
5635 fi |
|
5636 |
|
5637 if [ "$CFG_ARMFPA" != "auto" ]; then |
|
5638 if [ "$CFG_ARMFPA" = "yes" ]; then |
|
5639 if [ "$CFG_ENDIAN" = "Q_LITTLE_ENDIAN" ]; then |
|
5640 CFG_DOUBLEFORMAT="Q_DOUBLE_LITTLE_SWAPPED" |
|
5641 else |
|
5642 CFG_DOUBLEFORMAT="Q_DOUBLE_BIG_SWAPPED" |
|
5643 fi |
|
5644 else |
|
5645 CFG_DOUBLEFORMAT="normal" |
|
5646 fi |
|
5647 fi |
|
5648 |
|
5649 |
|
5650 if [ "$CFG_DOUBLEFORMAT" = "auto" ]; then |
|
5651 if [ "$PLATFORM_QWS" != "yes" ]; then |
|
5652 CFG_DOUBLEFORMAT=normal |
|
5653 else |
|
5654 "$unixtests/doubleformat.test" "$XQMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath" |
|
5655 F="$?" |
|
5656 if [ "$F" -eq 10 ] && [ "$CFG_ENDIAN" = "Q_LITTLE_ENDIAN" ]; then |
|
5657 CFG_DOUBLEFORMAT=normal |
|
5658 elif [ "$F" -eq 11 ] && [ "$CFG_ENDIAN" = "Q_BIG_ENDIAN" ]; then |
|
5659 CFG_DOUBLEFORMAT=normal |
|
5660 elif [ "$F" -eq 10 ]; then |
|
5661 CFG_DOUBLEFORMAT="Q_DOUBLE_LITTLE" |
|
5662 elif [ "$F" -eq 11 ]; then |
|
5663 CFG_DOUBLEFORMAT="Q_DOUBLE_BIG" |
|
5664 elif [ "$F" -eq 12 ]; then |
|
5665 CFG_DOUBLEFORMAT="Q_DOUBLE_LITTLE_SWAPPED" |
|
5666 CFG_ARMFPA="yes" |
|
5667 elif [ "$F" -eq 13 ]; then |
|
5668 CFG_DOUBLEFORMAT="Q_DOUBLE_BIG_SWAPPED" |
|
5669 CFG_ARMFPA="yes" |
|
5670 else |
|
5671 echo |
|
5672 echo "The system floating point format could not be detected." |
|
5673 echo "This may cause data to be generated in a wrong format" |
|
5674 echo "Turn on verbose messaging (-v) to see the final report." |
|
5675 # we do not fail on this since this is a new test, and if it fails, |
|
5676 # the old behavior should be correct in most cases |
|
5677 CFG_DOUBLEFORMAT=normal |
|
5678 fi |
|
5679 fi |
|
5680 fi |
|
5681 |
|
5682 HAVE_STL=no |
|
5683 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/stl "STL" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5684 HAVE_STL=yes |
|
5685 fi |
|
5686 |
|
5687 if [ "$CFG_STL" != "no" ]; then |
|
5688 if [ "$HAVE_STL" = "yes" ]; then |
|
5689 CFG_STL=yes |
|
5690 else |
|
5691 if [ "$CFG_STL" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5692 echo "STL support cannot be enabled due to functionality tests!" |
|
5693 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5694 echo " If you believe this message is in error you may use the continue" |
|
5695 echo " switch (-continue) to $0 to continue." |
|
5696 exit 101 |
|
5697 else |
|
5698 CFG_STL=no |
|
5699 fi |
|
5700 fi |
|
5701 fi |
|
5702 |
|
5703 # find if the platform supports IPv6 |
|
5704 if [ "$CFG_IPV6" != "no" ]; then |
|
5705 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/ipv6 "IPv6" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
5706 CFG_IPV6=yes |
|
5707 else |
|
5708 if [ "$CFG_IPV6" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5709 echo "IPv6 support cannot be enabled due to functionality tests!" |
|
5710 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5711 echo " If you believe this message is in error you may use the continue" |
|
5712 echo " switch (-continue) to $0 to continue." |
|
5713 exit 101 |
|
5714 else |
|
5715 CFG_IPV6=no |
|
5716 fi |
|
5717 fi |
|
5718 fi |
|
5719 |
|
5720 # detect POSIX clock_gettime() |
|
5721 if [ "$CFG_CLOCK_GETTIME" = "auto" ]; then |
|
5722 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/clock-gettime "POSIX clock_gettime()" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5723 CFG_CLOCK_GETTIME=yes |
|
5724 else |
|
5725 CFG_CLOCK_GETTIME=no |
|
5726 fi |
|
5727 fi |
|
5728 |
|
5729 # detect POSIX monotonic clocks |
|
5730 if [ "$CFG_CLOCK_GETTIME" = "yes" ] && [ "$CFG_CLOCK_MONOTONIC" = "auto" ]; then |
|
5731 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/clock-monotonic "POSIX Monotonic Clock" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5732 CFG_CLOCK_MONOTONIC=yes |
|
5733 else |
|
5734 CFG_CLOCK_MONOTONIC=no |
|
5735 fi |
|
5736 elif [ "$CFG_CLOCK_GETTIME" = "no" ]; then |
|
5737 CFG_CLOCK_MONOTONIC=no |
|
5738 fi |
|
5739 |
|
5740 # detect mremap |
|
5741 if [ "$CFG_MREMAP" = "auto" ]; then |
|
5742 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/mremap "mremap" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5743 CFG_MREMAP=yes |
|
5744 else |
|
5745 CFG_MREMAP=no |
|
5746 fi |
|
5747 fi |
|
5748 |
|
5749 # find if the platform provides getaddrinfo (ipv6 dns lookups) |
|
5750 if [ "$CFG_GETADDRINFO" != "no" ]; then |
|
5751 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/getaddrinfo "getaddrinfo" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5752 CFG_GETADDRINFO=yes |
|
5753 else |
|
5754 if [ "$CFG_GETADDRINFO" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5755 echo "getaddrinfo support cannot be enabled due to functionality tests!" |
|
5756 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5757 echo " If you believe this message is in error you may use the continue" |
|
5758 echo " switch (-continue) to $0 to continue." |
|
5759 exit 101 |
|
5760 else |
|
5761 CFG_GETADDRINFO=no |
|
5762 fi |
|
5763 fi |
|
5764 fi |
|
5765 |
|
5766 # find if the platform provides inotify |
|
5767 if [ "$CFG_INOTIFY" != "no" ]; then |
|
5768 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/inotify "inotify" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5769 CFG_INOTIFY=yes |
|
5770 else |
|
5771 if [ "$CFG_INOTIFY" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5772 echo "inotify support cannot be enabled due to functionality tests!" |
|
5773 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5774 echo " If you believe this message is in error you may use the continue" |
|
5775 echo " switch (-continue) to $0 to continue." |
|
5776 exit 101 |
|
5777 else |
|
5778 CFG_INOTIFY=no |
|
5779 fi |
|
5780 fi |
|
5781 fi |
|
5782 |
|
5783 # find if the platform provides if_nametoindex (ipv6 interface name support) |
|
5784 if [ "$CFG_IPV6IFNAME" != "no" ]; then |
|
5785 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/ipv6ifname "IPv6 interface name" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5786 CFG_IPV6IFNAME=yes |
|
5787 else |
|
5788 if [ "$CFG_IPV6IFNAME" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5789 echo "IPv6 interface name support cannot be enabled due to functionality tests!" |
|
5790 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5791 echo " If you believe this message is in error you may use the continue" |
|
5792 echo " switch (-continue) to $0 to continue." |
|
5793 exit 101 |
|
5794 else |
|
5795 CFG_IPV6IFNAME=no |
|
5796 fi |
|
5797 fi |
|
5798 fi |
|
5799 |
|
5800 # find if the platform provides getifaddrs (network interface enumeration) |
|
5801 if [ "$CFG_GETIFADDRS" != "no" ]; then |
|
5802 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/getifaddrs "getifaddrs" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5803 CFG_GETIFADDRS=yes |
|
5804 else |
|
5805 if [ "$CFG_GETIFADDRS" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5806 echo "getifaddrs support cannot be enabled due to functionality tests!" |
|
5807 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5808 echo " If you believe this message is in error you may use the continue" |
|
5809 echo " switch (-continue) to $0 to continue." |
|
5810 exit 101 |
|
5811 else |
|
5812 CFG_GETIFADDRS=no |
|
5813 fi |
|
5814 fi |
|
5815 fi |
|
5816 |
|
5817 # find if the platform supports X/Open Large File compilation environment |
|
5818 if [ "$CFG_LARGEFILE" != "no" ]; then |
|
5819 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/largefile "X/Open Large File" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5820 CFG_LARGEFILE=yes |
|
5821 else |
|
5822 if [ "$CFG_LARGEFILE" = "yes" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5823 echo "X/Open Large File support cannot be enabled due to functionality tests!" |
|
5824 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5825 echo " If you believe this message is in error you may use the continue" |
|
5826 echo " switch (-continue) to $0 to continue." |
|
5827 exit 101 |
|
5828 else |
|
5829 CFG_LARGEFILE=no |
|
5830 fi |
|
5831 fi |
|
5832 fi |
|
5833 |
|
5834 # detect OpenSSL |
|
5835 if [ "$CFG_OPENSSL" != "no" ]; then |
|
5836 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/openssl "OpenSSL" $L_FLAGS $I_FLAGS $l_FLAGS $MAC_CONFIG_TEST_COMMANDLINE; then |
|
5837 if [ "$CFG_OPENSSL" = "auto" ]; then |
|
5838 CFG_OPENSSL=yes |
|
5839 fi |
|
5840 else |
|
5841 if ( [ "$CFG_OPENSSL" = "yes" ] || [ "$CFG_OPENSSL" = "linked" ] ) && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5842 echo "OpenSSL support cannot be enabled due to functionality tests!" |
|
5843 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5844 echo " If you believe this message is in error you may use the continue" |
|
5845 echo " switch (-continue) to $0 to continue." |
|
5846 exit 101 |
|
5847 else |
|
5848 CFG_OPENSSL=no |
|
5849 fi |
|
5850 fi |
|
5851 fi |
|
5852 |
|
5853 # detect OpenVG support |
|
5854 #QTP:QTPPROD-7 It is necessary to prohibit OpenVg checking for Symbian build |
|
5855 echo $XQMAKESPEC |
|
5856 if [ "$CFG_OPENVG" != "no" ] && [ "$XPLATFORM" != "symbian-sbsv2" ]; then |
|
5857 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/openvg" "OpenVG" $L_FLAGS $I_FLAGS $l_FLAGS $CONFIG_ARG; then |
|
5858 if [ "$CFG_OPENVG" = "auto" ]; then |
|
5859 CFG_OPENVG=yes |
|
5860 fi |
|
5861 elif "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG openvg_on_opengl" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/openvg" "OpenVG" $L_FLAGS $I_FLAGS $l_FLAGS $CONFIG_ARG; then |
|
5862 if [ "$CFG_OPENVG" = "auto" ]; then |
|
5863 CFG_OPENVG=yes |
|
5864 fi |
|
5865 CFG_OPENVG_ON_OPENGL=yes |
|
5866 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 $l_FLAGS $CONFIG_ARG; then |
|
5867 if [ "$CFG_OPENVG" = "auto" ]; then |
|
5868 CFG_OPENVG=yes |
|
5869 fi |
|
5870 CFG_OPENVG_LC_INCLUDES=yes |
|
5871 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 $l_FLAGS $CONFIG_ARG; then |
|
5872 if [ "$CFG_OPENVG" = "auto" ]; then |
|
5873 CFG_OPENVG=yes |
|
5874 fi |
|
5875 CFG_OPENVG_LC_INCLUDES=yes |
|
5876 CFG_OPENVG_ON_OPENGL=yes |
|
5877 else |
|
5878 if [ "$CFG_OPENVG" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then |
|
5879 echo "$CFG_OPENVG was specified for OpenVG but cannot be enabled due to functionality tests!" |
|
5880 echo " Turn on verbose messaging (-v) to $0 to see the final report." |
|
5881 echo " If you believe this message is in error you may use the continue" |
|
5882 echo " switch (-continue) to $0 to continue." |
|
5883 exit 101 |
|
5884 else |
|
5885 CFG_OPENVG=no |
|
5886 fi |
|
5887 fi |
|
5888 if [ "$CFG_OPENVG" = "yes" ] && "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" "config.tests/unix/shivavg" "ShivaVG" $L_FLAGS $I_FLAGS $l_FLAGS $CONFIG_ARG; then |
|
5889 CFG_OPENVG_SHIVA=yes |
|
5890 fi |
|
5891 fi |
|
5892 |
|
5893 # if openvg is disabled and the user specified graphicssystem vg, disable it... |
|
5894 if [ "$CFG_GRAPHICS_SYSTEM" = "openvg" ] && [ "$CFG_OPENVG" = "no" ]; then |
|
5895 echo "OpenVG Graphics System is disabled due to missing OpenVG support..." |
|
5896 CFG_GRAPHICS_SYSTEM=default |
|
5897 fi |
|
5898 |
|
5899 if [ "$CFG_PTMALLOC" != "no" ]; then |
|
5900 # build ptmalloc, copy .a file to lib/ |
|
5901 echo "Building ptmalloc. Please wait..." |
|
5902 (cd "$relpath/src/3rdparty/ptmalloc/"; "$MAKE" "clean" ; "$MAKE" "posix" |
|
5903 mkdir "$outpath/lib/" ; cp "libptmalloc3.a" "$outpath/lib/") |
|
5904 |
|
5905 QMakeVar add QMAKE_LFLAGS "$outpath/lib/libptmalloc3.a" |
|
5906 fi |
|
5907 |
|
5908 if [ "$CFG_ALSA" = "auto" ]; then |
|
5909 if "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/alsa "alsa" $L_FLAGS $I_FLAGS $l_FLAGS; then |
|
5910 CFG_ALSA=yes |
|
5911 else |
|
5912 CFG_ALSA=no |
|
5913 fi |
|
5914 fi |
|
5915 |
|
5916 if [ -f "$relpath/src/declarative/declarative.pro" ]; then |
|
5917 if [ "$CFG_DECLARATIVE" = "auto" ]; then |
|
5918 CFG_DECLARATIVE=yes |
|
5919 fi |
|
5920 else |
|
5921 if [ "$CFG_DECLARATIVE" = "auto" ] || [ "$CFG_DECLARATIVE" = "no" ]; then |
|
5922 CFG_DECLARATIVE=no |
|
5923 else |
|
5924 echo "Error: Unable to locate the qt-declarative package. Refer to the documentation on how to build the package." |
|
5925 exit 1 |
|
5926 fi |
|
5927 fi |
|
5928 |
|
5929 if [ "$CFG_JAVASCRIPTCORE_JIT" = "yes" ] || [ "$CFG_JAVASCRIPTCORE_JIT" = "auto" ]; then |
|
5930 if [ "$CFG_ARCH" = "arm" ] || [ "$CFG_ARCH" = "armv6" ]; then |
|
5931 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/javascriptcore-jit "javascriptcore-jit" $L_FLAGS $I_FLAGS $l_FLAGS |
|
5932 if [ $? != "0" ]; then |
|
5933 CFG_JAVASCRIPTCORE_JIT=no |
|
5934 fi |
|
5935 fi |
|
5936 fi |
|
5937 |
|
5938 if [ "$CFG_JAVASCRIPTCORE_JIT" = "yes" ]; then |
|
5939 QMakeVar set JAVASCRIPTCORE_JIT yes |
|
5940 elif [ "$CFG_JAVASCRIPTCORE_JIT" = "no" ]; then |
|
5941 QMakeVar set JAVASCRIPTCORE_JIT no |
|
5942 fi |
|
5943 |
|
5944 #------------------------------------------------------------------------------- |
|
5945 # ask for all that hasn't been auto-detected or specified in the arguments |
|
5946 #------------------------------------------------------------------------------- |
|
5947 |
|
5948 ### fix this: user input should be validated in a loop |
|
5949 if [ "$CFG_QWS_DEPTHS" = "prompted" -a "$PLATFORM_QWS" = "yes" ]; then |
|
5950 echo |
|
5951 echo "Choose pixel-depths to support:" |
|
5952 echo |
|
5953 echo " 1. 1bpp, black/white" |
|
5954 echo " 4. 4bpp, grayscale" |
|
5955 echo " 8. 8bpp, paletted" |
|
5956 echo " 12. 12bpp, rgb 4-4-4" |
|
5957 echo " 15. 15bpp, rgb 5-5-5" |
|
5958 echo " 16. 16bpp, rgb 5-6-5" |
|
5959 echo " 18. 18bpp, rgb 6-6-6" |
|
5960 echo " 24. 24bpp, rgb 8-8-8" |
|
5961 echo " 32. 32bpp, argb 8-8-8-8 and rgb 8-8-8" |
|
5962 echo " all. All supported depths" |
|
5963 echo |
|
5964 echo "Your choices (default 8,16,32):" |
|
5965 read CFG_QWS_DEPTHS |
|
5966 if [ -z "$CFG_QWS_DEPTHS" ] || [ "$CFG_QWS_DEPTHS" = "yes" ]; then |
|
5967 CFG_QWS_DEPTHS=8,16,32 |
|
5968 fi |
|
5969 fi |
|
5970 if [ -n "$CFG_QWS_DEPTHS" -a "$PLATFORM_QWS" = "yes" ]; then |
|
5971 if [ "$CFG_QWS_DEPTHS" = "all" ]; then |
|
5972 CFG_QWS_DEPTHS="1 4 8 12 15 16 18 24 32 generic" |
|
5973 fi |
|
5974 for D in `echo "$CFG_QWS_DEPTHS" | sed -e 's/,/ /g'`; do |
|
5975 case $D in |
|
5976 1|4|8|12|15|16|18|24|32) QCONFIG_FLAGS="$QCONFIG_FLAGS QT_QWS_DEPTH_$D";; |
|
5977 generic) QCONFIG_FLAGS="$QCONFIG_FLAGS QT_QWS_DEPTH_GENERIC";; |
|
5978 esac |
|
5979 done |
|
5980 fi |
|
5981 |
|
5982 # enable dwarf2 support on Mac |
|
5983 if [ "$CFG_MAC_DWARF2" = "yes" ]; then |
|
5984 QT_CONFIG="$QT_CONFIG dwarf2" |
|
5985 fi |
|
5986 |
|
5987 # Set the default arch. |
|
5988 # Carbon builds: 32 bit x86/ppc. |
|
5989 # For "-cocoa" builds on snow leopard : compiler default (64-bit). |
|
5990 # For "-cocoa" builds on leopard : compiler default (32-bit). |
|
5991 if [ "$PLATFORM_MAC" = "yes" ] && [ "$CFG_MAC_ARCHS" = "" ]; then |
|
5992 source "$mactests/defaultarch.test" "$TEST_COMPILER" "$OPT_VERBOSE" "$mactests" |
|
5993 |
|
5994 if [ "$CFG_MAC_COCOA" != "yes" ]; then |
|
5995 if [ "$QT_MAC_DEFAULT_ARCH" = "x86_64" ]; then |
|
5996 CFG_MAC_ARCHS=" x86" |
|
5997 elif [ "$QT_MAC_DEFAULT_ARCH" = "ppc64" ]; then |
|
5998 CFG_MAC_ARCHS=" ppc" |
|
5999 else |
|
6000 CFG_MAC_ARCHS=" $QT_MAC_DEFAULT_ARCH" |
|
6001 fi |
|
6002 else |
|
6003 CFG_MAC_ARCHS=" $QT_MAC_DEFAULT_ARCH" |
|
6004 fi |
|
6005 |
|
6006 [ "$OPT_VERBOSE" = "yes" ] && echo "Setting Mac architechture to$CFG_MAC_ARCHS." |
|
6007 fi |
|
6008 |
|
6009 # enable cocoa and/or carbon on Mac |
|
6010 if [ "$CFG_MAC_COCOA" = "yes" ]; then |
|
6011 # -cocoa on the command line disables carbon completely (i.e. use cocoa for 32-bit as well) |
|
6012 CFG_MAC_CARBON="no" |
|
6013 else |
|
6014 # check which archs are in use, enable cocoa if we find a 64-bit one |
|
6015 if echo "$CFG_MAC_ARCHS" | grep 64 > /dev/null 2>&1; then |
|
6016 CFG_MAC_COCOA="yes"; |
|
6017 CFG_MAC_CARBON="no"; |
|
6018 if echo "$CFG_MAC_ARCHS" | grep -w ppc > /dev/null 2>&1; then |
|
6019 CFG_MAC_CARBON="yes"; |
|
6020 fi |
|
6021 if echo "$CFG_MAC_ARCHS" | grep -w x86 > /dev/null 2>&1; then |
|
6022 CFG_MAC_CARBON="yes"; |
|
6023 fi |
|
6024 else |
|
6025 # no 64-bit archs found. |
|
6026 CFG_MAC_COCOA="no" |
|
6027 fi |
|
6028 fi; |
|
6029 |
|
6030 # set the global Mac deployment target. This is overridden on an arch-by-arch basis |
|
6031 # in some cases, see code further down |
|
6032 case "$PLATFORM,$CFG_MAC_COCOA" in |
|
6033 macx*,yes) |
|
6034 # Cocoa |
|
6035 QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.5 |
|
6036 ;; |
|
6037 macx*,no) |
|
6038 # gcc, Carbon |
|
6039 QMakeVar set QMAKE_MACOSX_DEPLOYMENT_TARGET 10.4 |
|
6040 ;; |
|
6041 esac |
|
6042 |
|
6043 # disable Qt 3 support on VxWorks |
|
6044 case "$XPLATFORM" in |
|
6045 unsupported/vxworks*) |
|
6046 CFG_QT3SUPPORT="no" |
|
6047 ;; |
|
6048 esac |
|
6049 |
|
6050 # enable Qt 3 support functionality |
|
6051 if [ "$CFG_QT3SUPPORT" = "yes" ]; then |
|
6052 QT_CONFIG="$QT_CONFIG qt3support" |
|
6053 fi |
|
6054 |
|
6055 # enable Phonon |
|
6056 if [ "$CFG_PHONON" = "yes" ]; then |
|
6057 QT_CONFIG="$QT_CONFIG phonon" |
|
6058 if [ "$CFG_PHONON_BACKEND" = "yes" ]; then |
|
6059 QT_CONFIG="$QT_CONFIG phonon-backend" |
|
6060 fi |
|
6061 else |
|
6062 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_PHONON" |
|
6063 fi |
|
6064 |
|
6065 # disable accessibility |
|
6066 if [ "$CFG_ACCESSIBILITY" = "no" ]; then |
|
6067 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ACCESSIBILITY" |
|
6068 else |
|
6069 QT_CONFIG="$QT_CONFIG accessibility" |
|
6070 fi |
|
6071 |
|
6072 # enable egl |
|
6073 if [ "$CFG_EGL" = "no" ]; then |
|
6074 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_EGL" |
|
6075 else |
|
6076 QT_CONFIG="$QT_CONFIG egl" |
|
6077 if [ "$CFG_EGL_GLES_INCLUDES" = "yes" ]; then |
|
6078 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_GLES_EGL" |
|
6079 fi |
|
6080 fi |
|
6081 |
|
6082 # enable openvg |
|
6083 if [ "$CFG_OPENVG" = "no" ]; then |
|
6084 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENVG" |
|
6085 else |
|
6086 QT_CONFIG="$QT_CONFIG openvg" |
|
6087 if [ "$CFG_OPENVG_LC_INCLUDES" = "yes" ]; then |
|
6088 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_LOWER_CASE_VG_INCLUDES" |
|
6089 fi |
|
6090 if [ "$CFG_OPENVG_ON_OPENGL" = "yes" ]; then |
|
6091 QT_CONFIG="$QT_CONFIG openvg_on_opengl" |
|
6092 fi |
|
6093 if [ "$CFG_OPENVG_SHIVA" = "yes" ]; then |
|
6094 QT_CONFIG="$QT_CONFIG shivavg" |
|
6095 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_SHIVAVG" |
|
6096 fi |
|
6097 fi |
|
6098 |
|
6099 # QTP:QTPROD-7 Cross compiling on Linux broken |
|
6100 if [ "$QT_SYMBIAN_STYLE_FLAGS" = "no" ]; then |
|
6101 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_STYLE_S60" |
|
6102 else |
|
6103 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_STYLE_S60" |
|
6104 fi |
|
6105 |
|
6106 # enable opengl |
|
6107 if [ "$CFG_OPENGL" = "no" ]; then |
|
6108 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENGL" |
|
6109 else |
|
6110 QT_CONFIG="$QT_CONFIG opengl" |
|
6111 fi |
|
6112 |
|
6113 if [ "$CFG_OPENGL" = "es1" ] || [ "$CFG_OPENGL" = "es1cl" ] || [ "$CFG_OPENGL" = "es2" ]; then |
|
6114 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
6115 QCONFIG_FLAGS="$QCONFIG_FLAGS Q_BACKINGSTORE_SUBSURFACES" |
|
6116 QCONFIG_FLAGS="$QCONFIG_FLAGS Q_USE_EGLWINDOWSURFACE" |
|
6117 fi |
|
6118 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_OPENGL_ES" |
|
6119 fi |
|
6120 |
|
6121 if [ "$CFG_OPENGL" = "es1" ]; then |
|
6122 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_OPENGL_ES_1" |
|
6123 QT_CONFIG="$QT_CONFIG opengles1" |
|
6124 fi |
|
6125 |
|
6126 if [ "$CFG_OPENGL" = "es1cl" ]; then |
|
6127 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_OPENGL_ES_1_CL" |
|
6128 QT_CONFIG="$QT_CONFIG opengles1cl" |
|
6129 fi |
|
6130 |
|
6131 if [ "$CFG_OPENGL" = "es2" ]; then |
|
6132 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_OPENGL_ES_2" |
|
6133 QT_CONFIG="$QT_CONFIG opengles2" |
|
6134 fi |
|
6135 |
|
6136 # safe execution environment |
|
6137 if [ "$CFG_SXE" != "no" ]; then |
|
6138 QT_CONFIG="$QT_CONFIG sxe" |
|
6139 fi |
|
6140 |
|
6141 # build up the variables for output |
|
6142 if [ "$CFG_DEBUG" = "yes" ]; then |
|
6143 QMAKE_OUTDIR="${QMAKE_OUTDIR}debug" |
|
6144 QMAKE_CONFIG="$QMAKE_CONFIG debug" |
|
6145 elif [ "$CFG_DEBUG" = "no" ]; then |
|
6146 QMAKE_OUTDIR="${QMAKE_OUTDIR}release" |
|
6147 QMAKE_CONFIG="$QMAKE_CONFIG release" |
|
6148 fi |
|
6149 if [ "$CFG_SHARED" = "yes" ]; then |
|
6150 QMAKE_OUTDIR="${QMAKE_OUTDIR}-shared" |
|
6151 QMAKE_CONFIG="$QMAKE_CONFIG shared dll" |
|
6152 elif [ "$CFG_SHARED" = "no" ]; then |
|
6153 QMAKE_OUTDIR="${QMAKE_OUTDIR}-static" |
|
6154 QMAKE_CONFIG="$QMAKE_CONFIG static" |
|
6155 fi |
|
6156 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
6157 QMAKE_OUTDIR="${QMAKE_OUTDIR}-emb-$CFG_EMBEDDED" |
|
6158 QMAKE_CONFIG="$QMAKE_CONFIG embedded" |
|
6159 QT_CONFIG="$QT_CONFIG embedded" |
|
6160 rm -f "src/.moc/$QMAKE_OUTDIR/allmoc.cpp" # needs remaking if config changes |
|
6161 fi |
|
6162 QMakeVar set PRECOMPILED_DIR ".pch/$QMAKE_OUTDIR" |
|
6163 QMakeVar set OBJECTS_DIR ".obj/$QMAKE_OUTDIR" |
|
6164 QMakeVar set MOC_DIR ".moc/$QMAKE_OUTDIR" |
|
6165 QMakeVar set RCC_DIR ".rcc/$QMAKE_OUTDIR" |
|
6166 QMakeVar set UI_DIR ".uic/$QMAKE_OUTDIR" |
|
6167 if [ "$CFG_LARGEFILE" = "yes" ]; then |
|
6168 QMAKE_CONFIG="$QMAKE_CONFIG largefile" |
|
6169 fi |
|
6170 if [ "$CFG_STL" = "no" ]; then |
|
6171 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_STL" |
|
6172 else |
|
6173 QMAKE_CONFIG="$QMAKE_CONFIG stl" |
|
6174 fi |
|
6175 if [ "$CFG_USE_GNUMAKE" = "yes" ]; then |
|
6176 QMAKE_CONFIG="$QMAKE_CONFIG GNUmake" |
|
6177 fi |
|
6178 [ "$CFG_REDUCE_EXPORTS" = "yes" ] && QT_CONFIG="$QT_CONFIG reduce_exports" |
|
6179 [ "$CFG_REDUCE_RELOCATIONS" = "yes" ] && QT_CONFIG="$QT_CONFIG reduce_relocations" |
|
6180 [ "$CFG_PRECOMPILE" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG precompile_header" |
|
6181 if [ "$CFG_SEPARATE_DEBUG_INFO" = "yes" ]; then |
|
6182 QMakeVar add QMAKE_CFLAGS -g |
|
6183 QMakeVar add QMAKE_CXXFLAGS -g |
|
6184 QMAKE_CONFIG="$QMAKE_CONFIG separate_debug_info" |
|
6185 fi |
|
6186 if [ "$CFG_SEPARATE_DEBUG_INFO_NOCOPY" = "yes" ] ; then |
|
6187 QMAKE_CONFIG="$QMAKE_CONFIG separate_debug_info_nocopy" |
|
6188 fi |
|
6189 [ "$CFG_MMX" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG mmx" |
|
6190 [ "$CFG_3DNOW" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG 3dnow" |
|
6191 [ "$CFG_SSE" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG sse" |
|
6192 [ "$CFG_SSE2" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG sse2" |
|
6193 [ "$CFG_IWMMXT" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG iwmmxt" |
|
6194 [ "$CFG_NEON" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG neon" |
|
6195 [ "$PLATFORM_MAC" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG $CFG_MAC_ARCHS" |
|
6196 if [ "$CFG_IPV6" = "yes" ]; then |
|
6197 QT_CONFIG="$QT_CONFIG ipv6" |
|
6198 fi |
|
6199 if [ "$CFG_CLOCK_GETTIME" = "yes" ]; then |
|
6200 QT_CONFIG="$QT_CONFIG clock-gettime" |
|
6201 fi |
|
6202 if [ "$CFG_CLOCK_MONOTONIC" = "yes" ]; then |
|
6203 QT_CONFIG="$QT_CONFIG clock-monotonic" |
|
6204 fi |
|
6205 if [ "$CFG_MREMAP" = "yes" ]; then |
|
6206 QT_CONFIG="$QT_CONFIG mremap" |
|
6207 fi |
|
6208 if [ "$CFG_GETADDRINFO" = "yes" ]; then |
|
6209 QT_CONFIG="$QT_CONFIG getaddrinfo" |
|
6210 fi |
|
6211 if [ "$CFG_IPV6IFNAME" = "yes" ]; then |
|
6212 QT_CONFIG="$QT_CONFIG ipv6ifname" |
|
6213 fi |
|
6214 if [ "$CFG_GETIFADDRS" = "yes" ]; then |
|
6215 QT_CONFIG="$QT_CONFIG getifaddrs" |
|
6216 fi |
|
6217 if [ "$CFG_INOTIFY" = "yes" ]; then |
|
6218 QT_CONFIG="$QT_CONFIG inotify" |
|
6219 fi |
|
6220 if [ "$CFG_LIBJPEG" = "no" ]; then |
|
6221 CFG_JPEG="no" |
|
6222 elif [ "$CFG_LIBJPEG" = "system" ]; then |
|
6223 QT_CONFIG="$QT_CONFIG system-jpeg" |
|
6224 fi |
|
6225 if [ "$CFG_JPEG" = "no" ]; then |
|
6226 QT_CONFIG="$QT_CONFIG no-jpeg" |
|
6227 elif [ "$CFG_JPEG" = "yes" ]; then |
|
6228 QT_CONFIG="$QT_CONFIG jpeg" |
|
6229 fi |
|
6230 if [ "$CFG_LIBMNG" = "no" ]; then |
|
6231 CFG_MNG="no" |
|
6232 elif [ "$CFG_LIBMNG" = "system" ]; then |
|
6233 QT_CONFIG="$QT_CONFIG system-mng" |
|
6234 fi |
|
6235 if [ "$CFG_MNG" = "no" ]; then |
|
6236 QT_CONFIG="$QT_CONFIG no-mng" |
|
6237 elif [ "$CFG_MNG" = "yes" ]; then |
|
6238 QT_CONFIG="$QT_CONFIG mng" |
|
6239 fi |
|
6240 if [ "$CFG_LIBPNG" = "no" ]; then |
|
6241 CFG_PNG="no" |
|
6242 fi |
|
6243 if [ "$CFG_LIBPNG" = "system" ]; then |
|
6244 QT_CONFIG="$QT_CONFIG system-png" |
|
6245 fi |
|
6246 if [ "$CFG_PNG" = "no" ]; then |
|
6247 QT_CONFIG="$QT_CONFIG no-png" |
|
6248 elif [ "$CFG_PNG" = "yes" ]; then |
|
6249 QT_CONFIG="$QT_CONFIG png" |
|
6250 fi |
|
6251 if [ "$CFG_GIF" = "no" ]; then |
|
6252 QT_CONFIG="$QT_CONFIG no-gif" |
|
6253 elif [ "$CFG_GIF" = "yes" ]; then |
|
6254 QT_CONFIG="$QT_CONFIG gif" |
|
6255 fi |
|
6256 if [ "$CFG_LIBTIFF" = "no" ]; then |
|
6257 CFG_TIFF="no" |
|
6258 elif [ "$CFG_LIBTIFF" = "system" ]; then |
|
6259 QT_CONFIG="$QT_CONFIG system-tiff" |
|
6260 fi |
|
6261 if [ "$CFG_TIFF" = "no" ]; then |
|
6262 QT_CONFIG="$QT_CONFIG no-tiff" |
|
6263 elif [ "$CFG_TIFF" = "yes" ]; then |
|
6264 QT_CONFIG="$QT_CONFIG tiff" |
|
6265 fi |
|
6266 if [ "$CFG_LIBFREETYPE" = "no" ]; then |
|
6267 QT_CONFIG="$QT_CONFIG no-freetype" |
|
6268 elif [ "$CFG_LIBFREETYPE" = "system" ]; then |
|
6269 QT_CONFIG="$QT_CONFIG system-freetype" |
|
6270 else |
|
6271 QT_CONFIG="$QT_CONFIG freetype" |
|
6272 fi |
|
6273 |
|
6274 if [ "x$PLATFORM_MAC" = "xyes" ]; then |
|
6275 #On Mac we implicitly link against libz, so we |
|
6276 #never use the 3rdparty stuff. |
|
6277 [ "$CFG_ZLIB" = "yes" ] && CFG_ZLIB="system" |
|
6278 fi |
|
6279 if [ "$CFG_ZLIB" = "yes" ]; then |
|
6280 QT_CONFIG="$QT_CONFIG zlib" |
|
6281 elif [ "$CFG_ZLIB" = "system" ]; then |
|
6282 QT_CONFIG="$QT_CONFIG system-zlib" |
|
6283 fi |
|
6284 |
|
6285 [ "$CFG_NIS" = "yes" ] && QT_CONFIG="$QT_CONFIG nis" |
|
6286 [ "$CFG_CUPS" = "yes" ] && QT_CONFIG="$QT_CONFIG cups" |
|
6287 [ "$CFG_ICONV" = "yes" ] && QT_CONFIG="$QT_CONFIG iconv" |
|
6288 [ "$CFG_ICONV" = "gnu" ] && QT_CONFIG="$QT_CONFIG gnu-libiconv" |
|
6289 [ "$CFG_GLIB" = "yes" ] && QT_CONFIG="$QT_CONFIG glib" |
|
6290 [ "$CFG_GSTREAMER" = "yes" ] && QT_CONFIG="$QT_CONFIG gstreamer" |
|
6291 [ "$CFG_DBUS" = "yes" ] && QT_CONFIG="$QT_CONFIG dbus" |
|
6292 [ "$CFG_DBUS" = "linked" ] && QT_CONFIG="$QT_CONFIG dbus dbus-linked" |
|
6293 [ "$CFG_NAS" = "system" ] && QT_CONFIG="$QT_CONFIG nas" |
|
6294 [ "$CFG_OPENSSL" = "yes" ] && QT_CONFIG="$QT_CONFIG openssl" |
|
6295 [ "$CFG_OPENSSL" = "linked" ] && QT_CONFIG="$QT_CONFIG openssl-linked" |
|
6296 |
|
6297 if [ "$PLATFORM_X11" = "yes" ]; then |
|
6298 [ "$CFG_SM" = "yes" ] && QT_CONFIG="$QT_CONFIG x11sm" |
|
6299 |
|
6300 # for some reason, the following libraries are not always built shared, |
|
6301 # so *every* program/lib (including Qt) has to link against them |
|
6302 if [ "$CFG_XSHAPE" = "yes" ]; then |
|
6303 QT_CONFIG="$QT_CONFIG xshape" |
|
6304 fi |
|
6305 if [ "$CFG_XSYNC" = "yes" ]; then |
|
6306 QT_CONFIG="$QT_CONFIG xsync" |
|
6307 fi |
|
6308 if [ "$CFG_XINERAMA" = "yes" ]; then |
|
6309 QT_CONFIG="$QT_CONFIG xinerama" |
|
6310 QMakeVar set QMAKE_LIBS_X11 '-lXinerama $$QMAKE_LIBS_X11' |
|
6311 fi |
|
6312 if [ "$CFG_XCURSOR" = "yes" ]; then |
|
6313 QT_CONFIG="$QT_CONFIG xcursor" |
|
6314 QMakeVar set QMAKE_LIBS_X11 '-lXcursor $$QMAKE_LIBS_X11' |
|
6315 fi |
|
6316 if [ "$CFG_XFIXES" = "yes" ]; then |
|
6317 QT_CONFIG="$QT_CONFIG xfixes" |
|
6318 QMakeVar set QMAKE_LIBS_X11 '-lXfixes $$QMAKE_LIBS_X11' |
|
6319 fi |
|
6320 if [ "$CFG_XRANDR" = "yes" ]; then |
|
6321 QT_CONFIG="$QT_CONFIG xrandr" |
|
6322 if [ "$CFG_XRENDER" != "yes" ]; then |
|
6323 # libXrandr uses 1 function from libXrender, so we always have to have it :/ |
|
6324 QMakeVar set QMAKE_LIBS_X11 '-lXrandr -lXrender $$QMAKE_LIBS_X11' |
|
6325 else |
|
6326 QMakeVar set QMAKE_LIBS_X11 '-lXrandr $$QMAKE_LIBS_X11' |
|
6327 fi |
|
6328 fi |
|
6329 if [ "$CFG_XRENDER" = "yes" ]; then |
|
6330 QT_CONFIG="$QT_CONFIG xrender" |
|
6331 QMakeVar set QMAKE_LIBS_X11 '-lXrender $$QMAKE_LIBS_X11' |
|
6332 fi |
|
6333 if [ "$CFG_MITSHM" = "yes" ]; then |
|
6334 QT_CONFIG="$QT_CONFIG mitshm" |
|
6335 fi |
|
6336 if [ "$CFG_FONTCONFIG" = "yes" ]; then |
|
6337 QT_CONFIG="$QT_CONFIG fontconfig" |
|
6338 fi |
|
6339 if [ "$CFG_XINPUT" = "yes" ]; then |
|
6340 QMakeVar set QMAKE_LIBS_X11 '-lXi $$QMAKE_LIBS_X11' |
|
6341 fi |
|
6342 if [ "$CFG_XINPUT" = "yes" ]; then |
|
6343 QT_CONFIG="$QT_CONFIG xinput tablet" |
|
6344 fi |
|
6345 if [ "$CFG_XKB" = "yes" ]; then |
|
6346 QT_CONFIG="$QT_CONFIG xkb" |
|
6347 fi |
|
6348 fi |
|
6349 |
|
6350 [ '!' -z "$D_FLAGS" ] && QMakeVar add DEFINES "$D_FLAGS" |
|
6351 [ '!' -z "$L_FLAGS" ] && QMakeVar add QMAKE_LIBDIR_FLAGS "$L_FLAGS" |
|
6352 [ '!' -z "$l_FLAGS" ] && QMakeVar add LIBS "$l_FLAGS" |
|
6353 |
|
6354 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
6355 if [ "$CFG_RPATH" = "yes" ]; then |
|
6356 QMAKE_CONFIG="$QMAKE_CONFIG absolute_library_soname" |
|
6357 fi |
|
6358 elif [ -z "`getQMakeConf \"$XQMAKESPEC\" | grep QMAKE_RPATH | awk '{print $3;}'`" ]; then |
|
6359 if [ -n "$RPATH_FLAGS" ]; then |
|
6360 echo |
|
6361 echo "ERROR: -R cannot be used on this platform as \$QMAKE_RPATH is" |
|
6362 echo " undefined." |
|
6363 echo |
|
6364 exit 1 |
|
6365 elif [ "$CFG_RPATH" = "yes" ]; then |
|
6366 RPATH_MESSAGE=" NOTE: This platform does not support runtime library paths, using -no-rpath." |
|
6367 CFG_RPATH=no |
|
6368 fi |
|
6369 else |
|
6370 if [ "$CFG_RPATH" = "yes" ]; then |
|
6371 # set the default rpath to the library installation directory |
|
6372 RPATH_FLAGS="\"$QT_INSTALL_LIBS\" $RPATH_FLAGS" |
|
6373 fi |
|
6374 if [ -n "$RPATH_FLAGS" ]; then |
|
6375 # add the user defined rpaths |
|
6376 QMakeVar add QMAKE_RPATHDIR "$RPATH_FLAGS" |
|
6377 fi |
|
6378 fi |
|
6379 |
|
6380 if [ '!' -z "$I_FLAGS" ]; then |
|
6381 # add the user define include paths |
|
6382 QMakeVar add QMAKE_CFLAGS "$I_FLAGS" |
|
6383 QMakeVar add QMAKE_CXXFLAGS "$I_FLAGS" |
|
6384 fi |
|
6385 |
|
6386 # turn off exceptions for the compilers that support it |
|
6387 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
6388 COMPILER=`echo $XPLATFORM | cut -f 3- -d-` |
|
6389 else |
|
6390 COMPILER=`echo $PLATFORM | cut -f 2- -d-` |
|
6391 fi |
|
6392 if [ "$CFG_EXCEPTIONS" = "unspecified" -a "$PLATFORM_QWS" = "yes" ]; then |
|
6393 CFG_EXCEPTIONS=no |
|
6394 fi |
|
6395 |
|
6396 if [ "$CFG_EXCEPTIONS" != "no" ]; then |
|
6397 QTCONFIG_CONFIG="$QTCONFIG_CONFIG exceptions" |
|
6398 fi |
|
6399 |
|
6400 if [ "$CFG_ALSA" = "yes" ]; then |
|
6401 QT_CONFIG="$QT_CONFIG alsa" |
|
6402 fi |
|
6403 |
|
6404 # |
|
6405 # Some Qt modules are too advanced in C++ for some old compilers |
|
6406 # Detect here the platforms where they are known to work. |
|
6407 # |
|
6408 # See Qt documentation for more information on which features are |
|
6409 # supported and on which compilers. |
|
6410 # |
|
6411 canBuildQtXmlPatterns="yes" |
|
6412 canBuildWebKit="$HAVE_STL" |
|
6413 canBuildQtConcurrent="yes" |
|
6414 |
|
6415 # WebKit requires stdint.h |
|
6416 "$unixtests/compile.test" "$XQMAKESPEC" "$QMAKE_CONFIG" $OPT_VERBOSE "$relpath" "$outpath" config.tests/unix/stdint "Stdint" $L_FLAGS $I_FLAGS $l_FLAGS |
|
6417 if [ $? != "0" ]; then |
|
6418 canBuildWebKit="no" |
|
6419 fi |
|
6420 |
|
6421 case "$XPLATFORM" in |
|
6422 hpux-g++*) |
|
6423 # PA-RISC's assembly is too limited |
|
6424 # gcc 3.4 on that platform can't build QtXmlPatterns |
|
6425 # the assembly it generates cannot be compiled |
|
6426 |
|
6427 # Check gcc's version |
|
6428 case "$(${QMAKE_CONF_COMPILER} -dumpversion)" in |
|
6429 4*) |
|
6430 ;; |
|
6431 3.4*) |
|
6432 canBuildQtXmlPatterns="no" |
|
6433 ;; |
|
6434 *) |
|
6435 canBuildWebKit="no" |
|
6436 canBuildQtXmlPatterns="no" |
|
6437 ;; |
|
6438 esac |
|
6439 ;; |
|
6440 unsupported/vxworks-*-g++*) |
|
6441 canBuildWebKit="no" |
|
6442 ;; |
|
6443 unsupported/vxworks-*-dcc*) |
|
6444 canBuildWebKit="no" |
|
6445 canBuildQtXmlPatterns="no" |
|
6446 ;; |
|
6447 *-g++*) |
|
6448 # Check gcc's version |
|
6449 case "$(${QMAKE_CONF_COMPILER} -dumpversion)" in |
|
6450 4*|3.4*) |
|
6451 ;; |
|
6452 3.3*) |
|
6453 canBuildWebKit="no" |
|
6454 ;; |
|
6455 *) |
|
6456 canBuildWebKit="no" |
|
6457 canBuildQtXmlPatterns="no" |
|
6458 ;; |
|
6459 esac |
|
6460 ;; |
|
6461 solaris-cc*) |
|
6462 # Check the compiler version |
|
6463 case `${QMAKE_CONF_COMPILER} -V 2>&1 | awk '{print $4}'` in |
|
6464 5.[012345678]) |
|
6465 canBuildWebKit="no" |
|
6466 canBuildQtXmlPatterns="no" |
|
6467 canBuildQtConcurrent="no" |
|
6468 ;; |
|
6469 5.9) |
|
6470 canBuildWebKit="no" |
|
6471 canBuildQtConcurrent="no" |
|
6472 ;; |
|
6473 esac |
|
6474 ;; |
|
6475 hpux-acc*) |
|
6476 canBuildWebKit="no" |
|
6477 canBuildQtXmlPatterns="no" |
|
6478 canBuildQtConcurrent="no" |
|
6479 ;; |
|
6480 hpuxi-acc*) |
|
6481 canBuildWebKit="no" |
|
6482 ;; |
|
6483 aix-xlc*) |
|
6484 # Get the xlC version |
|
6485 cat > xlcver.c <<EOF |
|
6486 #include <stdio.h> |
|
6487 int main() |
|
6488 { |
|
6489 printf("%d.%d\n", __xlC__ >> 8, __xlC__ & 0xFF); |
|
6490 return 0; |
|
6491 } |
|
6492 EOF |
|
6493 xlcver= |
|
6494 if ${QMAKE_CONF_COMPILER} -o xlcver xlcver.c >/dev/null 2>/dev/null; then |
|
6495 xlcver=`./xlcver 2>/dev/null` |
|
6496 rm -f ./xlcver |
|
6497 fi |
|
6498 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
6499 if [ -n "$xlcver" ]; then |
|
6500 echo Found IBM xlC version: $xlcver. |
|
6501 else |
|
6502 echo Could not determine IBM xlC version, assuming oldest supported. |
|
6503 fi |
|
6504 fi |
|
6505 |
|
6506 case "$xlcver" in |
|
6507 [123456].*) |
|
6508 canBuildWebKit="no" |
|
6509 canBuildQtXmlPatterns="no" |
|
6510 canBuildQtConcurrent="no" |
|
6511 ;; |
|
6512 *) |
|
6513 canBuildWebKit="no" |
|
6514 canBuildQtConcurrent="no" |
|
6515 ;; |
|
6516 esac |
|
6517 ;; |
|
6518 irix-cc*) |
|
6519 canBuildWebKit="no" |
|
6520 canBuildQtConcurrent="no" |
|
6521 ;; |
|
6522 esac |
|
6523 |
|
6524 CFG_CONCURRENT="yes" |
|
6525 if [ "$canBuildQtConcurrent" = "no" ]; then |
|
6526 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CONCURRENT" |
|
6527 CFG_CONCURRENT="no" |
|
6528 fi |
|
6529 |
|
6530 if [ "$CFG_XMLPATTERNS" = "yes" -a "$CFG_EXCEPTIONS" = "no" ]; then |
|
6531 echo "QtXmlPatterns was requested, but it can't be built due to exceptions being disabled." |
|
6532 exit 1 |
|
6533 fi |
|
6534 if [ "$CFG_XMLPATTERNS" = "auto" -a "$CFG_EXCEPTIONS" != "no" ]; then |
|
6535 CFG_XMLPATTERNS="$canBuildQtXmlPatterns" |
|
6536 elif [ "$CFG_EXCEPTIONS" = "no" ]; then |
|
6537 CFG_XMLPATTERNS="no" |
|
6538 fi |
|
6539 if [ "$CFG_XMLPATTERNS" = "yes" ]; then |
|
6540 QT_CONFIG="$QT_CONFIG xmlpatterns" |
|
6541 else |
|
6542 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XMLPATTERNS" |
|
6543 fi |
|
6544 |
|
6545 if [ "$CFG_MULTIMEDIA" = "no" ]; then |
|
6546 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MULTIMEDIA" |
|
6547 else |
|
6548 QT_CONFIG="$QT_CONFIG multimedia" |
|
6549 fi |
|
6550 |
|
6551 if [ "$CFG_AUDIO_BACKEND" = "yes" ]; then |
|
6552 QT_CONFIG="$QT_CONFIG audio-backend" |
|
6553 fi |
|
6554 |
|
6555 if [ "$CFG_SVG" = "yes" ]; then |
|
6556 QT_CONFIG="$QT_CONFIG svg" |
|
6557 else |
|
6558 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SVG" |
|
6559 fi |
|
6560 |
|
6561 if [ "$CFG_DECLARATIVE" = "yes" ]; then |
|
6562 QT_CONFIG="$QT_CONFIG declarative" |
|
6563 else |
|
6564 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_DECLARATIVE" |
|
6565 fi |
|
6566 |
|
6567 if [ "$CFG_WEBKIT" = "auto" ]; then |
|
6568 CFG_WEBKIT="$canBuildWebKit" |
|
6569 fi |
|
6570 |
|
6571 if [ "$CFG_WEBKIT" = "yes" ]; then |
|
6572 QT_CONFIG="$QT_CONFIG webkit" |
|
6573 # The reason we set CFG_WEBKIT, is such that the printed overview of what will be enabled, shows correctly. |
|
6574 CFG_WEBKIT="yes" |
|
6575 else |
|
6576 CFG_WEBKIT="no" |
|
6577 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_WEBKIT" |
|
6578 fi |
|
6579 |
|
6580 if [ "$CFG_SCRIPT" = "auto" ]; then |
|
6581 CFG_SCRIPT="yes" |
|
6582 fi |
|
6583 |
|
6584 if [ "$CFG_SCRIPT" = "yes" ]; then |
|
6585 QT_CONFIG="$QT_CONFIG script" |
|
6586 else |
|
6587 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SCRIPT" |
|
6588 fi |
|
6589 |
|
6590 if [ "$CFG_SCRIPTTOOLS" = "yes" -a "$CFG_SCRIPT" = "no" ]; then |
|
6591 echo "QtScriptTools was requested, but it can't be built due to QtScript being disabled." |
|
6592 exit 1 |
|
6593 fi |
|
6594 if [ "$CFG_SCRIPTTOOLS" = "auto" -a "$CFG_SCRIPT" != "no" ]; then |
|
6595 CFG_SCRIPTTOOLS="yes" |
|
6596 elif [ "$CFG_SCRIPT" = "no" ]; then |
|
6597 CFG_SCRIPTTOOLS="no" |
|
6598 fi |
|
6599 |
|
6600 if [ "$CFG_SCRIPTTOOLS" = "yes" ]; then |
|
6601 QT_CONFIG="$QT_CONFIG scripttools" |
|
6602 else |
|
6603 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SCRIPTTOOLS" |
|
6604 fi |
|
6605 |
|
6606 if [ "$CFG_EXCEPTIONS" = "no" ]; then |
|
6607 case "$COMPILER" in |
|
6608 g++*) |
|
6609 QMakeVar add QMAKE_CFLAGS -fno-exceptions |
|
6610 QMakeVar add QMAKE_CXXFLAGS -fno-exceptions |
|
6611 QMakeVar add QMAKE_LFLAGS -fno-exceptions |
|
6612 ;; |
|
6613 cc*) |
|
6614 case "$PLATFORM" in |
|
6615 irix-cc*) |
|
6616 QMakeVar add QMAKE_CFLAGS -LANG:exceptions=off |
|
6617 QMakeVar add QMAKE_CXXFLAGS -LANG:exceptions=off |
|
6618 QMakeVar add QMAKE_LFLAGS -LANG:exceptions=off |
|
6619 ;; |
|
6620 *) ;; |
|
6621 esac |
|
6622 ;; |
|
6623 *) ;; |
|
6624 esac |
|
6625 QMAKE_CONFIG="$QMAKE_CONFIG exceptions_off" |
|
6626 fi |
|
6627 |
|
6628 # On Mac, set the minimum deployment target for the different architechtures |
|
6629 # using the Xarch compiler option when supported (10.5 and up). On 10.4 the |
|
6630 # deployment version is set to 10.4 globally using the QMAKE_MACOSX_DEPLOYMENT_TARGET |
|
6631 # env. variable. "-cocoa" on the command line means Cocoa is used in 32-bit mode also, |
|
6632 # in this case fall back on QMAKE_MACOSX_DEPLOYMENT_TARGET which will be set to 10.5. |
|
6633 if [ "$PLATFORM_MAC" = "yes" ] && [ "$CFG_MAC_XARCH" != "no" ] && [ "$COMMANDLINE_MAC_COCOA" != "yes" ]; then |
|
6634 if echo "$CFG_MAC_ARCHS" | grep '\<x86\>' > /dev/null 2>&1; then |
|
6635 QMakeVar add QMAKE_CFLAGS "-Xarch_i386 -mmacosx-version-min=10.4" |
|
6636 QMakeVar add QMAKE_CXXFLAGS "-Xarch_i386 -mmacosx-version-min=10.4" |
|
6637 QMakeVar add QMAKE_LFLAGS "-Xarch_i386 -mmacosx-version-min=10.4" |
|
6638 QMakeVar add QMAKE_OBJECTIVE_CFLAGS_X86 "-arch i386 -Xarch_i386 -mmacosx-version-min=10.4" |
|
6639 fi |
|
6640 if echo "$CFG_MAC_ARCHS" | grep '\<ppc\>' > /dev/null 2>&1; then |
|
6641 QMakeVar add QMAKE_CFLAGS "-Xarch_ppc -mmacosx-version-min=10.4" |
|
6642 QMakeVar add QMAKE_CXXFLAGS "-Xarch_ppc -mmacosx-version-min=10.4" |
|
6643 QMakeVar add QMAKE_LFLAGS "-Xarch_ppc -mmacosx-version-min=10.4" |
|
6644 QMakeVar add QMAKE_OBJECTIVE_CFLAGS_PPC "-arch ppc -Xarch_ppc -mmacosx-version-min=10.4" |
|
6645 fi |
|
6646 if echo "$CFG_MAC_ARCHS" | grep '\<x86_64\>' > /dev/null 2>&1; then |
|
6647 QMakeVar add QMAKE_CFLAGS "-Xarch_x86_64 -mmacosx-version-min=10.5" |
|
6648 QMakeVar add QMAKE_CXXFLAGS "-Xarch_x86_64 -mmacosx-version-min=10.5" |
|
6649 QMakeVar add QMAKE_LFLAGS "-Xarch_x86_64 -mmacosx-version-min=10.5" |
|
6650 QMakeVar add QMAKE_OBJECTIVE_CFLAGS_X86_64 "-arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.5" |
|
6651 fi |
|
6652 if echo "$CFG_MAC_ARCHS" | grep '\<ppc64\>' > /dev/null 2>&1; then |
|
6653 QMakeVar add QMAKE_CFLAGS "-Xarch_ppc64 -mmacosx-version-min=10.5" |
|
6654 QMakeVar add QMAKE_CXXFLAGS "-Xarch_ppc64 -mmacosx-version-min=10.5" |
|
6655 QMakeVar add QMAKE_LFLAGS "-Xarch_ppc64 -mmacosx-version-min=10.5" |
|
6656 QMakeVar add QMAKE_OBJECTIVE_CFLAGS_PPC_64 "-arch ppc64 -Xarch_ppc64 -mmacosx-version-min=10.5" |
|
6657 fi |
|
6658 fi |
|
6659 |
|
6660 #------------------------------------------------------------------------------- |
|
6661 # generate QT_BUILD_KEY |
|
6662 #------------------------------------------------------------------------------- |
|
6663 |
|
6664 # some compilers generate binary incompatible code between different versions, |
|
6665 # so we need to generate a build key that is different between these compilers |
|
6666 case "$COMPILER" in |
|
6667 g++*) |
|
6668 # GNU C++ |
|
6669 COMPILER_VERSION=`${QMAKE_CONF_COMPILER} -dumpversion 2>/dev/null` |
|
6670 |
|
6671 case "$COMPILER_VERSION" in |
|
6672 *.*.*) |
|
6673 QT_GCC_MAJOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\1,'` |
|
6674 QT_GCC_MINOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\2,'` |
|
6675 QT_GCC_PATCH_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*,\3,'` |
|
6676 ;; |
|
6677 *.*) |
|
6678 QT_GCC_MAJOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\).*,\1,'` |
|
6679 QT_GCC_MINOR_VERSION=`echo $COMPILER_VERSION | sed 's,^\([0-9]*\)\.\([0-9]*\).*,\2,'` |
|
6680 QT_GCC_PATCH_VERSION=0 |
|
6681 ;; |
|
6682 esac |
|
6683 |
|
6684 case "$COMPILER_VERSION" in |
|
6685 2.95.*) |
|
6686 COMPILER_VERSION="2.95.*" |
|
6687 ;; |
|
6688 3.*) |
|
6689 COMPILER_VERSION="3.*" |
|
6690 ;; |
|
6691 4.*) |
|
6692 COMPILER_VERSION="4" |
|
6693 ;; |
|
6694 *) |
|
6695 ;; |
|
6696 esac |
|
6697 [ '!' -z "$COMPILER_VERSION" ] && COMPILER="g++-${COMPILER_VERSION}" |
|
6698 ;; |
|
6699 *) |
|
6700 # |
|
6701 ;; |
|
6702 esac |
|
6703 |
|
6704 # QT_CONFIG can contain the following: |
|
6705 # |
|
6706 # Things that affect the Qt API/ABI: |
|
6707 # |
|
6708 # Options: |
|
6709 # minimal-config small-config medium-config large-config full-config |
|
6710 # |
|
6711 # Different edition modules: |
|
6712 # network canvas table xml opengl sql |
|
6713 # |
|
6714 # Things that do not affect the Qt API/ABI: |
|
6715 # stl |
|
6716 # system-jpeg no-jpeg jpeg |
|
6717 # system-mng no-mng mng |
|
6718 # system-png no-png png |
|
6719 # system-zlib no-zlib zlib |
|
6720 # system-libtiff no-libtiff |
|
6721 # no-gif gif |
|
6722 # debug release |
|
6723 # dll staticlib |
|
6724 # |
|
6725 # nocrosscompiler |
|
6726 # GNUmake |
|
6727 # largefile |
|
6728 # nis |
|
6729 # nas |
|
6730 # tablet |
|
6731 # ipv6 |
|
6732 # |
|
6733 # X11 : x11sm xinerama xcursor xfixes xrandr xrender mitshm fontconfig xkb |
|
6734 # Embedded: embedded freetype |
|
6735 # |
|
6736 ALL_OPTIONS= |
|
6737 BUILD_CONFIG= |
|
6738 BUILD_OPTIONS= |
|
6739 |
|
6740 # determine the build options |
|
6741 for config_option in $QMAKE_CONFIG $QT_CONFIG; do |
|
6742 SKIP="yes" |
|
6743 case "$config_option" in |
|
6744 *-config) |
|
6745 # take the last *-config setting. this is the highest config being used, |
|
6746 # and is the one that we will use for tagging plugins |
|
6747 BUILD_CONFIG="$config_option" |
|
6748 ;; |
|
6749 |
|
6750 *) # skip all other options since they don't affect the Qt API/ABI. |
|
6751 ;; |
|
6752 esac |
|
6753 |
|
6754 if [ "$SKIP" = "no" ]; then |
|
6755 BUILD_OPTIONS="$BUILD_OPTIONS $config_option" |
|
6756 fi |
|
6757 done |
|
6758 |
|
6759 # put the options that we are missing into .options |
|
6760 rm -f .options |
|
6761 for opt in `echo $ALL_OPTIONS`; do |
|
6762 SKIP="no" |
|
6763 if echo $BUILD_OPTIONS | grep $opt >/dev/null 2>&1; then |
|
6764 SKIP="yes" |
|
6765 fi |
|
6766 if [ "$SKIP" = "no" ]; then |
|
6767 echo "$opt" >> .options |
|
6768 fi |
|
6769 done |
|
6770 |
|
6771 # reconstruct BUILD_OPTIONS with a sorted negative feature list |
|
6772 # (ie. only things that are missing are will be put into the build key) |
|
6773 BUILD_OPTIONS= |
|
6774 if [ -f .options ]; then |
|
6775 for opt in `sort -f .options | uniq`; do |
|
6776 BUILD_OPTIONS="$BUILD_OPTIONS no-$opt" |
|
6777 done |
|
6778 fi |
|
6779 rm -f .options |
|
6780 |
|
6781 # QT_NO* defines affect the Qt API (and binary compatibility). they need |
|
6782 # to be included in the build key |
|
6783 for build_option in $D_FLAGS; do |
|
6784 build_option=`echo $build_option | cut -d \" -f 2 -` |
|
6785 case "$build_option" in |
|
6786 QT_NO*) |
|
6787 echo "$build_option" >> .options |
|
6788 ;; |
|
6789 *) |
|
6790 # skip all other compiler defines |
|
6791 ;; |
|
6792 esac |
|
6793 done |
|
6794 |
|
6795 # sort the compile time defines (helps ensure that changes in this configure |
|
6796 # script don't affect the QT_BUILD_KEY generation) |
|
6797 if [ -f .options ]; then |
|
6798 for opt in `sort -f .options | uniq`; do |
|
6799 BUILD_OPTIONS="$BUILD_OPTIONS $opt" |
|
6800 done |
|
6801 fi |
|
6802 rm -f .options |
|
6803 |
|
6804 BUILD_OPTIONS="$BUILD_CONFIG $BUILD_OPTIONS" |
|
6805 # extract the operating system from the XPLATFORM |
|
6806 TARGET_OPERATING_SYSTEM=`echo $XPLATFORM | cut -f 2- -d/ | cut -f -1 -d-` |
|
6807 |
|
6808 # when cross-compiling, don't include build-host information (build key is target specific) |
|
6809 QT_BUILD_KEY="$CFG_USER_BUILD_KEY $CFG_ARCH $TARGET_OPERATING_SYSTEM $COMPILER $BUILD_OPTIONS" |
|
6810 if [ -n "$QT_NAMESPACE" ]; then |
|
6811 QT_BUILD_KEY="$QT_BUILD_KEY $QT_NAMESPACE" |
|
6812 fi |
|
6813 MAC_NEED_TWO_BUILD_KEYS="no" |
|
6814 if [ "$PLATFORM_MAC" = "yes" -a "$CFG_MAC_COCOA" = "yes" ]; then |
|
6815 QT_BUILD_KEY_CARBON=$QT_BUILD_KEY |
|
6816 TARGET_OPERATING_SYSTEM="$TARGET_OPERATING_SYSTEM-cocoa" |
|
6817 QT_BUILD_KEY_COCOA="$CFG_USER_BUILD_KEY $CFG_ARCH $TARGET_OPERATING_SYSTEM $COMPILER $BUILD_OPTIONS" |
|
6818 if [ "$CFG_MAC_CARBON" = "no" ]; then |
|
6819 QT_BUILD_KEY=$QT_BUILD_KEY_COCOA |
|
6820 else |
|
6821 MAC_NEED_TWO_BUILD_KEYS="yes" |
|
6822 fi |
|
6823 fi |
|
6824 # don't break loading plugins build with an older version of Qt |
|
6825 QT_BUILD_KEY_COMPAT= |
|
6826 if [ "$QT_CROSS_COMPILE" = "no" ]; then |
|
6827 # previous versions of Qt used a build key built from the uname |
|
6828 QT_BUILD_KEY_COMPAT="$CFG_USER_BUILD_KEY $UNAME_MACHINE $UNAME_SYSTEM $COMPILER $BUILD_OPTIONS" |
|
6829 if [ -n "$QT_NAMESPACE" ]; then |
|
6830 QT_BUILD_KEY_COMPAT="$QT_BUILD_KEY_COMPAT $QT_NAMESPACE" |
|
6831 fi |
|
6832 fi |
|
6833 # strip out leading/trailing/extra whitespace |
|
6834 QT_BUILD_KEY=`echo $QT_BUILD_KEY | sed -e "s, *, ,g" -e "s,^ *,," -e "s, *$,,"` |
|
6835 QT_BUILD_KEY_COMPAT=`echo $QT_BUILD_KEY_COMPAT | sed -e "s, *, ,g" -e "s,^ *,," -e "s, *$,,"` |
|
6836 |
|
6837 #------------------------------------------------------------------------------- |
|
6838 # part of configuration information goes into qconfig.h |
|
6839 #------------------------------------------------------------------------------- |
|
6840 |
|
6841 case "$CFG_QCONFIG" in |
|
6842 full) |
|
6843 echo "/* Everything */" >"$outpath/src/corelib/global/qconfig.h.new" |
|
6844 ;; |
|
6845 *) |
|
6846 tmpconfig="$outpath/src/corelib/global/qconfig.h.new" |
|
6847 echo "#ifndef QT_BOOTSTRAPPED" >"$tmpconfig" |
|
6848 cat "$relpath/src/corelib/global/qconfig-$CFG_QCONFIG.h" >>"$tmpconfig" |
|
6849 echo "#endif" >>"$tmpconfig" |
|
6850 ;; |
|
6851 esac |
|
6852 |
|
6853 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF |
|
6854 |
|
6855 /* Qt Edition */ |
|
6856 #ifndef QT_EDITION |
|
6857 # define QT_EDITION $QT_EDITION |
|
6858 #endif |
|
6859 |
|
6860 /* Machine byte-order */ |
|
6861 #define Q_BIG_ENDIAN 4321 |
|
6862 #define Q_LITTLE_ENDIAN 1234 |
|
6863 EOF |
|
6864 |
|
6865 if [ "$MAC_NEED_TWO_BUILD_KEYS" = "no" ]; then |
|
6866 echo "#define QT_BUILD_KEY \"$QT_BUILD_KEY\"" \ |
|
6867 >> "$outpath/src/corelib/global/qconfig.h.new" |
|
6868 else |
|
6869 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF |
|
6870 |
|
6871 #define QT_BUILD_KEY_CARBON "$QT_BUILD_KEY_CARBON" |
|
6872 #define QT_BUILD_KEY_COCOA "$QT_BUILD_KEY_COCOA" |
|
6873 EOF |
|
6874 fi |
|
6875 |
|
6876 if [ -n "$QT_BUILD_KEY_COMPAT" ]; then |
|
6877 echo "#define QT_BUILD_KEY_COMPAT \"$QT_BUILD_KEY_COMPAT\"" \ |
|
6878 >> "$outpath/src/corelib/global/qconfig.h.new" |
|
6879 fi |
|
6880 echo "" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6881 |
|
6882 echo "#ifdef QT_BOOTSTRAPPED" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6883 if [ "$CFG_HOST_ENDIAN" = "auto" ]; then |
|
6884 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF |
|
6885 #if defined(__BIG_ENDIAN__) |
|
6886 # define Q_BYTE_ORDER Q_BIG_ENDIAN |
|
6887 #elif defined(__LITTLE_ENDIAN__) |
|
6888 # define Q_BYTE_ORDER Q_LITTLE_ENDIAN |
|
6889 #else |
|
6890 # error "Unable to determine byte order!" |
|
6891 #endif |
|
6892 EOF |
|
6893 else |
|
6894 echo "#define Q_BYTE_ORDER $CFG_HOST_ENDIAN" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6895 fi |
|
6896 echo "#else" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6897 if [ "$CFG_ENDIAN" = "auto" ]; then |
|
6898 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF |
|
6899 #if defined(__BIG_ENDIAN__) |
|
6900 # define Q_BYTE_ORDER Q_BIG_ENDIAN |
|
6901 #elif defined(__LITTLE_ENDIAN__) |
|
6902 # define Q_BYTE_ORDER Q_LITTLE_ENDIAN |
|
6903 #else |
|
6904 # error "Unable to determine byte order!" |
|
6905 #endif |
|
6906 EOF |
|
6907 else |
|
6908 echo "#define Q_BYTE_ORDER $CFG_ENDIAN" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6909 fi |
|
6910 echo "#endif" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6911 |
|
6912 if [ "$CFG_DOUBLEFORMAT" != "normal" ]; then |
|
6913 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF |
|
6914 /* Non-IEEE double format */ |
|
6915 #define Q_DOUBLE_LITTLE "01234567" |
|
6916 #define Q_DOUBLE_BIG "76543210" |
|
6917 #define Q_DOUBLE_LITTLE_SWAPPED "45670123" |
|
6918 #define Q_DOUBLE_BIG_SWAPPED "32107654" |
|
6919 #define Q_DOUBLE_FORMAT $CFG_DOUBLEFORMAT |
|
6920 EOF |
|
6921 fi |
|
6922 if [ "$CFG_ARMFPA" = "yes" ]; then |
|
6923 if [ "$CFG_ARCH" != "$CFG_HOST_ARCH" ]; then |
|
6924 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF |
|
6925 #ifndef QT_BOOTSTRAPPED |
|
6926 # define QT_ARMFPA |
|
6927 #endif |
|
6928 EOF |
|
6929 else |
|
6930 echo "#define QT_ARMFPA" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6931 fi |
|
6932 fi |
|
6933 |
|
6934 CFG_ARCH_STR=`echo $CFG_ARCH | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` |
|
6935 CFG_HOST_ARCH_STR=`echo $CFG_HOST_ARCH | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` |
|
6936 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF |
|
6937 /* Machine Architecture */ |
|
6938 #ifndef QT_BOOTSTRAPPED |
|
6939 # define QT_ARCH_${CFG_ARCH_STR} |
|
6940 #else |
|
6941 # define QT_ARCH_${CFG_HOST_ARCH_STR} |
|
6942 #endif |
|
6943 EOF |
|
6944 |
|
6945 echo '/* Compile time features */' >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6946 [ '!' -z "$LicenseKeyExt" ] && echo "#define QT_PRODUCT_LICENSEKEY \"$LicenseKeyExt\"" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6947 |
|
6948 if [ "$CFG_LARGEFILE" = "yes" ]; then |
|
6949 echo "#define QT_LARGEFILE_SUPPORT 64" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6950 fi |
|
6951 |
|
6952 # if both carbon and cocoa are specified, enable the autodetection code. |
|
6953 if [ "$CFG_MAC_COCOA" = "yes" -a "$CFG_MAC_CARBON" = "yes" ]; then |
|
6954 echo "#define AUTODETECT_COCOA 1" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6955 elif [ "$CFG_MAC_COCOA" = "yes" ]; then |
|
6956 echo "#define QT_MAC_USE_COCOA 1" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6957 fi |
|
6958 |
|
6959 if [ "$CFG_FRAMEWORK" = "yes" ]; then |
|
6960 echo "#define QT_MAC_FRAMEWORK_BUILD" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6961 fi |
|
6962 |
|
6963 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
6964 cat >>"$outpath/src/corelib/global/qconfig.h.new" <<EOF |
|
6965 #if defined(__LP64__) |
|
6966 # define QT_POINTER_SIZE 8 |
|
6967 #else |
|
6968 # define QT_POINTER_SIZE 4 |
|
6969 #endif |
|
6970 EOF |
|
6971 else |
|
6972 "$unixtests/ptrsize.test" "$XQMAKESPEC" $OPT_VERBOSE "$relpath" "$outpath" |
|
6973 echo "#define QT_POINTER_SIZE $?" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6974 fi |
|
6975 |
|
6976 |
|
6977 echo "" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6978 |
|
6979 if [ "$CFG_DEV" = "yes" ]; then |
|
6980 echo "#define QT_BUILD_INTERNAL" >>"$outpath/src/corelib/global/qconfig.h.new" |
|
6981 fi |
|
6982 |
|
6983 # Embedded compile time options |
|
6984 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
6985 # Add QWS to config.h |
|
6986 QCONFIG_FLAGS="$QCONFIG_FLAGS Q_WS_QWS" |
|
6987 |
|
6988 # Add excluded decorations to $QCONFIG_FLAGS |
|
6989 decors=`grep '^decorations -= ' "$QMAKE_VARS_FILE" | ${AWK} '{print $3}'` |
|
6990 for decor in $decors; do |
|
6991 NODECORATION=`echo $decor | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` |
|
6992 QCONFIG_FLAGS="${QCONFIG_FLAGS} QT_NO_QWS_DECORATION_${NODECORATION}" |
|
6993 done |
|
6994 |
|
6995 # Figure which embedded drivers which are turned off |
|
6996 CFG_GFX_OFF="$CFG_GFX_AVAILABLE" |
|
6997 for ADRIVER in $CFG_GFX_ON; do |
|
6998 CFG_GFX_OFF=`echo "${CFG_GFX_OFF} " | sed "s,${ADRIVER} ,,g"` |
|
6999 done |
|
7000 |
|
7001 CFG_KBD_OFF="$CFG_KBD_AVAILABLE" |
|
7002 # the um driver is currently not in the available list for external builds |
|
7003 if [ "$CFG_DEV" = "no" ]; then |
|
7004 CFG_KBD_OFF="$CFG_KBD_OFF um" |
|
7005 fi |
|
7006 for ADRIVER in $CFG_KBD_ON; do |
|
7007 CFG_KBD_OFF=`echo "${CFG_KBD_OFF} " | sed "s,${ADRIVER} ,,g"` |
|
7008 done |
|
7009 |
|
7010 CFG_MOUSE_OFF="$CFG_MOUSE_AVAILABLE" |
|
7011 for ADRIVER in $CFG_MOUSE_ON; do |
|
7012 CFG_MOUSE_OFF=`echo "${CFG_MOUSE_OFF} " | sed "s,${ADRIVER} ,,g"` |
|
7013 done |
|
7014 |
|
7015 for DRIVER in $CFG_GFX_OFF; do |
|
7016 NODRIVER=`echo $DRIVER | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` |
|
7017 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_QWS_$NODRIVER" |
|
7018 done |
|
7019 |
|
7020 for DRIVER in $CFG_KBD_OFF; do |
|
7021 NODRIVER=`echo $DRIVER | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` |
|
7022 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_QWS_KBD_$NODRIVER" |
|
7023 done |
|
7024 |
|
7025 for DRIVER in $CFG_MOUSE_OFF; do |
|
7026 NODRIVER=`echo $DRIVER | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` |
|
7027 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_QWS_MOUSE_$NODRIVER" |
|
7028 done |
|
7029 fi # QWS |
|
7030 |
|
7031 if [ "${CFG_USE_FLOATMATH}" = "yes" ]; then |
|
7032 QCONFIG_FLAGS="${QCONFIG_FLAGS} QT_USE_MATH_H_FLOATS" |
|
7033 fi |
|
7034 |
|
7035 # Add turned on SQL drivers |
|
7036 for DRIVER in $CFG_SQL_AVAILABLE; do |
|
7037 eval "VAL=\$CFG_SQL_$DRIVER" |
|
7038 case "$VAL" in |
|
7039 qt) |
|
7040 ONDRIVER=`echo $DRIVER | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` |
|
7041 QCONFIG_FLAGS="$QCONFIG_FLAGS QT_SQL_$ONDRIVER" |
|
7042 SQL_DRIVERS="$SQL_DRIVERS $DRIVER" |
|
7043 ;; |
|
7044 plugin) |
|
7045 SQL_PLUGINS="$SQL_PLUGINS $DRIVER" |
|
7046 ;; |
|
7047 esac |
|
7048 done |
|
7049 |
|
7050 |
|
7051 QMakeVar set sql-drivers "$SQL_DRIVERS" |
|
7052 QMakeVar set sql-plugins "$SQL_PLUGINS" |
|
7053 |
|
7054 # Add other configuration options to the qconfig.h file |
|
7055 [ "$CFG_GIF" = "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_BUILTIN_GIF_READER=1" |
|
7056 [ "$CFG_TIFF" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IMAGEFORMAT_TIFF" |
|
7057 [ "$CFG_PNG" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IMAGEFORMAT_PNG" |
|
7058 [ "$CFG_JPEG" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IMAGEFORMAT_JPEG" |
|
7059 [ "$CFG_MNG" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IMAGEFORMAT_MNG" |
|
7060 [ "$CFG_ZLIB" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ZLIB" |
|
7061 [ "$CFG_EXCEPTIONS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_EXCEPTIONS" |
|
7062 [ "$CFG_IPV6" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IPV6" |
|
7063 [ "$CFG_SXE" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SXE" |
|
7064 [ "$CFG_DBUS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_DBUS" |
|
7065 |
|
7066 if [ "$PLATFORM_QWS" != "yes" ]; then |
|
7067 [ "$CFG_GRAPHICS_SYSTEM" = "raster" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_GRAPHICSSYSTEM_RASTER" |
|
7068 [ "$CFG_GRAPHICS_SYSTEM" = "opengl" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_GRAPHICSSYSTEM_OPENGL" |
|
7069 [ "$CFG_GRAPHICS_SYSTEM" = "openvg" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_GRAPHICSSYSTEM_OPENVG" |
|
7070 fi |
|
7071 |
|
7072 # X11/Unix/Mac only configs |
|
7073 [ "$CFG_CUPS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CUPS" |
|
7074 [ "$CFG_ICONV" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ICONV" |
|
7075 [ "$CFG_GLIB" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GLIB" |
|
7076 [ "$CFG_GSTREAMER" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GSTREAMER" |
|
7077 [ "$CFG_QGTKSTYLE" != "yes" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_STYLE_GTK" |
|
7078 [ "$CFG_CLOCK_MONOTONIC" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CLOCK_MONOTONIC" |
|
7079 [ "$CFG_MREMAP" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MREMAP" |
|
7080 [ "$CFG_GETADDRINFO" = "no" ]&& QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GETADDRINFO" |
|
7081 [ "$CFG_IPV6IFNAME" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IPV6IFNAME" |
|
7082 [ "$CFG_GETIFADDRS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_GETIFADDRS" |
|
7083 [ "$CFG_INOTIFY" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_INOTIFY" |
|
7084 [ "$CFG_NAS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_NAS" |
|
7085 [ "$CFG_NIS" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_NIS" |
|
7086 [ "$CFG_OPENSSL" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_OPENSSL" |
|
7087 [ "$CFG_OPENSSL" = "linked" ]&& QCONFIG_FLAGS="$QCONFIG_FLAGS QT_LINKED_OPENSSL" |
|
7088 |
|
7089 [ "$CFG_SM" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SESSIONMANAGER" |
|
7090 [ "$CFG_XCURSOR" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XCURSOR" |
|
7091 [ "$CFG_XFIXES" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XFIXES" |
|
7092 [ "$CFG_FONTCONFIG" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_FONTCONFIG" |
|
7093 [ "$CFG_XINERAMA" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XINERAMA" |
|
7094 [ "$CFG_XKB" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XKB" |
|
7095 [ "$CFG_XRANDR" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XRANDR" |
|
7096 [ "$CFG_XRENDER" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XRENDER" |
|
7097 [ "$CFG_MITSHM" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_MITSHM" |
|
7098 [ "$CFG_XSHAPE" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SHAPE" |
|
7099 [ "$CFG_XSYNC" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XSYNC" |
|
7100 [ "$CFG_XINPUT" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_XINPUT QT_NO_TABLET" |
|
7101 |
|
7102 [ "$CFG_XCURSOR" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XCURSOR" |
|
7103 [ "$CFG_XINERAMA" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XINERAMA" |
|
7104 [ "$CFG_XFIXES" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XFIXES" |
|
7105 [ "$CFG_XRANDR" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XRANDR" |
|
7106 [ "$CFG_XINPUT" = "runtime" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_RUNTIME_XINPUT" |
|
7107 [ "$CFG_ALSA" = "no" ] && QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_ALSA" |
|
7108 |
|
7109 # sort QCONFIG_FLAGS for neatness if we can |
|
7110 [ '!' -z "$AWK" ] && QCONFIG_FLAGS=`echo $QCONFIG_FLAGS | $AWK '{ gsub(" ", "\n"); print }' | sort | uniq` |
|
7111 QCONFIG_FLAGS=`echo $QCONFIG_FLAGS` |
|
7112 |
|
7113 if [ -n "$QCONFIG_FLAGS" ]; then |
|
7114 for cfg in $QCONFIG_FLAGS; do |
|
7115 cfgd=`echo $cfg | sed 's/=.*$//'` # trim pushed 'Foo=Bar' defines |
|
7116 cfg=`echo $cfg | sed 's/=/ /'` # turn first '=' into a space |
|
7117 # figure out define logic, so we can output the correct |
|
7118 # ifdefs to override the global defines in a project |
|
7119 cfgdNeg= |
|
7120 if [ true ] && echo "$cfgd" | grep 'QT_NO_' >/dev/null 2>&1; then |
|
7121 # QT_NO_option can be forcefully turned on by QT_option |
|
7122 cfgdNeg=`echo $cfgd | sed "s,QT_NO_,QT_,"` |
|
7123 elif [ true ] && echo "$cfgd" | grep 'QT_' >/dev/null 2>&1; then |
|
7124 # QT_option can be forcefully turned off by QT_NO_option |
|
7125 cfgdNeg=`echo $cfgd | sed "s,QT_,QT_NO_,"` |
|
7126 fi |
|
7127 |
|
7128 if [ -z $cfgdNeg ]; then |
|
7129 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF |
|
7130 #ifndef $cfgd |
|
7131 # define $cfg |
|
7132 #endif |
|
7133 |
|
7134 EOF |
|
7135 else |
|
7136 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF |
|
7137 #if defined($cfgd) && defined($cfgdNeg) |
|
7138 # undef $cfgd |
|
7139 #elif !defined($cfgd) && !defined($cfgdNeg) |
|
7140 # define $cfg |
|
7141 #endif |
|
7142 |
|
7143 EOF |
|
7144 fi |
|
7145 done |
|
7146 fi |
|
7147 |
|
7148 if [ "$CFG_REDUCE_EXPORTS" = "yes" ]; then |
|
7149 cat >>"$outpath/src/corelib/global/qconfig.h.new" << EOF |
|
7150 #define QT_VISIBILITY_AVAILABLE |
|
7151 |
|
7152 EOF |
|
7153 fi |
|
7154 |
|
7155 # avoid unecessary rebuilds by copying only if qconfig.h has changed |
|
7156 if cmp -s "$outpath/src/corelib/global/qconfig.h" "$outpath/src/corelib/global/qconfig.h.new"; then |
|
7157 rm -f "$outpath/src/corelib/global/qconfig.h.new" |
|
7158 else |
|
7159 [ -f "$outpath/src/corelib/global/qconfig.h" ] && chmod +w "$outpath/src/corelib/global/qconfig.h" |
|
7160 mv "$outpath/src/corelib/global/qconfig.h.new" "$outpath/src/corelib/global/qconfig.h" |
|
7161 chmod -w "$outpath/src/corelib/global/qconfig.h" |
|
7162 for conf in "$outpath/include/QtCore/qconfig.h" "$outpath/include/Qt/qconfig.h"; do |
|
7163 if [ '!' -f "$conf" ]; then |
|
7164 ln -s "$outpath/src/corelib/global/qconfig.h" "$conf" |
|
7165 fi |
|
7166 done |
|
7167 fi |
|
7168 |
|
7169 #------------------------------------------------------------------------------- |
|
7170 # save configuration into qconfig.pri |
|
7171 #------------------------------------------------------------------------------- |
|
7172 |
|
7173 QTCONFIG="$outpath/mkspecs/qconfig.pri" |
|
7174 QTCONFIG_CONFIG="$QTCONFIG_CONFIG no_mocdepend" |
|
7175 [ -f "$QTCONFIG.tmp" ] && rm -f "$QTCONFIG.tmp" |
|
7176 if [ "$CFG_DEBUG" = "yes" ]; then |
|
7177 QTCONFIG_CONFIG="$QTCONFIG_CONFIG debug" |
|
7178 if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then |
|
7179 QT_CONFIG="$QT_CONFIG release" |
|
7180 fi |
|
7181 QT_CONFIG="$QT_CONFIG debug" |
|
7182 elif [ "$CFG_DEBUG" = "no" ]; then |
|
7183 QTCONFIG_CONFIG="$QTCONFIG_CONFIG release" |
|
7184 if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then |
|
7185 QT_CONFIG="$QT_CONFIG debug" |
|
7186 fi |
|
7187 QT_CONFIG="$QT_CONFIG release" |
|
7188 fi |
|
7189 if [ "$CFG_STL" = "yes" ]; then |
|
7190 QTCONFIG_CONFIG="$QTCONFIG_CONFIG stl" |
|
7191 fi |
|
7192 if [ "$CFG_FRAMEWORK" = "no" ]; then |
|
7193 QTCONFIG_CONFIG="$QTCONFIG_CONFIG qt_no_framework" |
|
7194 else |
|
7195 QT_CONFIG="$QT_CONFIG qt_framework" |
|
7196 QTCONFIG_CONFIG="$QTCONFIG_CONFIG qt_framework" |
|
7197 fi |
|
7198 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
7199 QT_CONFIG="$QT_CONFIG $CFG_MAC_ARCHS" |
|
7200 fi |
|
7201 if [ "$CFG_DEV" = "yes" ]; then |
|
7202 QT_CONFIG="$QT_CONFIG private_tests" |
|
7203 fi |
|
7204 |
|
7205 # Make the application arch follow the Qt arch for single arch builds. |
|
7206 # (for multiple-arch builds, set CONFIG manually in the application .pro file) |
|
7207 if [ `echo "$CFG_MAC_ARCHS" | wc -w` -eq 1 ]; then |
|
7208 QTCONFIG_CONFIG="$QTCONFIG_CONFIG $CFG_MAC_ARCHS" |
|
7209 fi |
|
7210 |
|
7211 cat >>"$QTCONFIG.tmp" <<EOF |
|
7212 #configuration |
|
7213 CONFIG += $QTCONFIG_CONFIG |
|
7214 QT_ARCH = $CFG_ARCH |
|
7215 QT_EDITION = $Edition |
|
7216 QT_CONFIG += $QT_CONFIG |
|
7217 |
|
7218 #versioning |
|
7219 QT_VERSION = $QT_VERSION |
|
7220 QT_MAJOR_VERSION = $QT_MAJOR_VERSION |
|
7221 QT_MINOR_VERSION = $QT_MINOR_VERSION |
|
7222 QT_PATCH_VERSION = $QT_PATCH_VERSION |
|
7223 |
|
7224 #namespaces |
|
7225 QT_LIBINFIX = $QT_LIBINFIX |
|
7226 QT_NAMESPACE = $QT_NAMESPACE |
|
7227 QT_NAMESPACE_MAC_CRC = $QT_NAMESPACE_MAC_CRC |
|
7228 |
|
7229 EOF |
|
7230 if [ "$CFG_RPATH" = "yes" ]; then |
|
7231 echo "QMAKE_RPATHDIR += \"$QT_INSTALL_LIBS\"" >> "$QTCONFIG.tmp" |
|
7232 fi |
|
7233 if [ -n "$QT_GCC_MAJOR_VERSION" ]; then |
|
7234 echo "QT_GCC_MAJOR_VERSION = $QT_GCC_MAJOR_VERSION" >> "$QTCONFIG.tmp" |
|
7235 echo "QT_GCC_MINOR_VERSION = $QT_GCC_MINOR_VERSION" >> "$QTCONFIG.tmp" |
|
7236 echo "QT_GCC_PATCH_VERSION = $QT_GCC_PATCH_VERSION" >> "$QTCONFIG.tmp" |
|
7237 fi |
|
7238 # replace qconfig.pri if it differs from the newly created temp file |
|
7239 if cmp -s "$QTCONFIG.tmp" "$QTCONFIG"; then |
|
7240 rm -f "$QTCONFIG.tmp" |
|
7241 else |
|
7242 mv -f "$QTCONFIG.tmp" "$QTCONFIG" |
|
7243 fi |
|
7244 |
|
7245 #------------------------------------------------------------------------------- |
|
7246 # save configuration into .qmake.cache |
|
7247 #------------------------------------------------------------------------------- |
|
7248 |
|
7249 CACHEFILE="$outpath/.qmake.cache" |
|
7250 [ -f "$CACHEFILE.tmp" ] && rm -f "$CACHEFILE.tmp" |
|
7251 cat >>"$CACHEFILE.tmp" <<EOF |
|
7252 CONFIG += $QMAKE_CONFIG dylib create_prl link_prl depend_includepath fix_output_dirs QTDIR_build |
|
7253 QT_SOURCE_TREE = \$\$quote($relpath) |
|
7254 QT_BUILD_TREE = \$\$quote($outpath) |
|
7255 QT_BUILD_PARTS = $CFG_BUILD_PARTS |
|
7256 QMAKE_ABSOLUTE_SOURCE_ROOT = \$\$QT_SOURCE_TREE |
|
7257 QMAKE_MOC_SRC = \$\$QT_BUILD_TREE/src/moc |
|
7258 |
|
7259 #local paths that cannot be queried from the QT_INSTALL_* properties while building QTDIR |
|
7260 QMAKE_MOC = \$\$QT_BUILD_TREE/bin/moc |
|
7261 QMAKE_UIC = \$\$QT_BUILD_TREE/bin/uic |
|
7262 QMAKE_UIC3 = \$\$QT_BUILD_TREE/bin/uic3 |
|
7263 QMAKE_RCC = \$\$QT_BUILD_TREE/bin/rcc |
|
7264 QMAKE_QDBUSXML2CPP = \$\$QT_BUILD_TREE/bin/qdbusxml2cpp |
|
7265 QMAKE_INCDIR_QT = \$\$QT_BUILD_TREE/include |
|
7266 QMAKE_LIBDIR_QT = \$\$QT_BUILD_TREE/lib |
|
7267 |
|
7268 EOF |
|
7269 |
|
7270 # Ensure we can link to uninistalled libraries |
|
7271 if linkerSupportsFlag -rpath-link "$outpath/lib"; then |
|
7272 echo "QMAKE_LFLAGS += -Wl,-rpath-link,\$\$QT_BUILD_TREE/lib" >> "$CACHEFILE.tmp" |
|
7273 fi |
|
7274 |
|
7275 if [ -n "$QT_CFLAGS_PSQL" ]; then |
|
7276 echo "QT_CFLAGS_PSQL = $QT_CFLAGS_PSQL" >> "$CACHEFILE.tmp" |
|
7277 fi |
|
7278 if [ -n "$QT_LFLAGS_PSQL" ]; then |
|
7279 echo "QT_LFLAGS_PSQL = $QT_LFLAGS_PSQL" >> "$CACHEFILE.tmp" |
|
7280 fi |
|
7281 if [ -n "$QT_CFLAGS_MYSQL" ]; then |
|
7282 echo "QT_CFLAGS_MYSQL = $QT_CFLAGS_MYSQL" >> "$CACHEFILE.tmp" |
|
7283 fi |
|
7284 if [ -n "$QT_LFLAGS_MYSQL" ]; then |
|
7285 echo "QT_LFLAGS_MYSQL = $QT_LFLAGS_MYSQL" >> "$CACHEFILE.tmp" |
|
7286 fi |
|
7287 if [ -n "$QT_CFLAGS_SQLITE" ]; then |
|
7288 echo "QT_CFLAGS_SQLITE = $QT_CFLAGS_SQLITE" >> "$CACHEFILE.tmp" |
|
7289 fi |
|
7290 if [ -n "$QT_LFLAGS_SQLITE" ]; then |
|
7291 echo "QT_LFLAGS_SQLITE = $QT_LFLAGS_SQLITE" >> "$CACHEFILE.tmp" |
|
7292 fi |
|
7293 if [ -n "$QT_LFLAGS_ODBC" ]; then |
|
7294 echo "QT_LFLAGS_ODBC = $QT_LFLAGS_ODBC" >> "$CACHEFILE.tmp" |
|
7295 fi |
|
7296 |
|
7297 if [ "$QT_EDITION" != "QT_EDITION_OPENSOURCE" ]; then |
|
7298 echo "DEFINES *= QT_EDITION=QT_EDITION_DESKTOP" >> "$CACHEFILE.tmp" |
|
7299 fi |
|
7300 |
|
7301 #dump in the OPENSSL_LIBS info |
|
7302 if [ '!' -z "$OPENSSL_LIBS" ]; then |
|
7303 echo "OPENSSL_LIBS = $OPENSSL_LIBS" >> "$CACHEFILE.tmp" |
|
7304 elif [ "$CFG_OPENSSL" = "linked" ]; then |
|
7305 echo "OPENSSL_LIBS = -lssl -lcrypto" >> "$CACHEFILE.tmp" |
|
7306 fi |
|
7307 |
|
7308 #dump in the SDK info |
|
7309 if [ '!' -z "$CFG_SDK" ]; then |
|
7310 echo "QMAKE_MAC_SDK = $CFG_SDK" >> "$CACHEFILE.tmp" |
|
7311 fi |
|
7312 |
|
7313 # mac gcc -Xarch support |
|
7314 if [ "$CFG_MAC_XARCH" = "no" ]; then |
|
7315 echo "QMAKE_MAC_XARCH = no" >> "$CACHEFILE.tmp" |
|
7316 fi |
|
7317 |
|
7318 #dump the qmake spec |
|
7319 if [ -d "$outpath/mkspecs/$XPLATFORM" ]; then |
|
7320 echo "QMAKESPEC = \$\$QT_BUILD_TREE/mkspecs/$XPLATFORM" >> "$CACHEFILE.tmp" |
|
7321 else |
|
7322 echo "QMAKESPEC = $XPLATFORM" >> "$CACHEFILE.tmp" |
|
7323 fi |
|
7324 |
|
7325 # cmdline args |
|
7326 cat "$QMAKE_VARS_FILE" >> "$CACHEFILE.tmp" |
|
7327 rm -f "$QMAKE_VARS_FILE" 2>/dev/null |
|
7328 |
|
7329 # incrementals |
|
7330 INCREMENTAL="" |
|
7331 [ "$CFG_INCREMENTAL" = "auto" ] && "$WHICH" p4 >/dev/null 2>&1 && [ "$CFG_DEV" = "yes" ] && CFG_INCREMENTAL="yes" |
|
7332 if [ "$CFG_INCREMENTAL" = "yes" ]; then |
|
7333 find "$relpath" -perm u+w -mtime -3 | grep 'cpp$' | while read f; do |
|
7334 # don't need to worry about generated files |
|
7335 [ -r `echo $f | sed "s,cpp$,ui,"` ] && continue |
|
7336 basename "$f" | grep '^moc_' >/dev/null 2>&1 && continue |
|
7337 # done |
|
7338 INCREMENTAL="$INCREMENTAL `basename \"$f\" | sed 's,.cpp,.o,'`" |
|
7339 done |
|
7340 [ '!' -z "$INCREMENTAL" ] && echo "QMAKE_INCREMENTAL += $INCREMENTAL" >> "$CACHEFILE.tmp" |
|
7341 [ -r "$outpath/.qmake.incremental" ] && echo "include($outpath/.qmake.incremental)" >> "$CACHEFILE.tmp" |
|
7342 fi |
|
7343 |
|
7344 # replace .qmake.cache if it differs from the newly created temp file |
|
7345 if cmp -s "$CACHEFILE.tmp" "$CACHEFILE"; then |
|
7346 rm -f "$CACHEFILE.tmp" |
|
7347 else |
|
7348 mv -f "$CACHEFILE.tmp" "$CACHEFILE" |
|
7349 fi |
|
7350 |
|
7351 #------------------------------------------------------------------------------- |
|
7352 # give feedback on configuration |
|
7353 #------------------------------------------------------------------------------- |
|
7354 |
|
7355 case "$COMPILER" in |
|
7356 g++*) |
|
7357 if [ "$CFG_EXCEPTIONS" != "no" ]; then |
|
7358 cat <<EOF |
|
7359 |
|
7360 This target is using the GNU C++ compiler ($PLATFORM). |
|
7361 |
|
7362 Recent versions of this compiler automatically include code for |
|
7363 exceptions, which increase both the size of the Qt libraries and |
|
7364 the amount of memory taken by your applications. |
|
7365 |
|
7366 You may choose to re-run `basename $0` with the -no-exceptions |
|
7367 option to compile Qt without exceptions. This is completely binary |
|
7368 compatible, and existing applications will continue to work. |
|
7369 |
|
7370 EOF |
|
7371 fi |
|
7372 ;; |
|
7373 cc*) |
|
7374 case "$PLATFORM" in |
|
7375 irix-cc*) |
|
7376 if [ "$CFG_EXCEPTIONS" != "no" ]; then |
|
7377 cat <<EOF |
|
7378 |
|
7379 This target is using the MIPSpro C++ compiler ($PLATFORM). |
|
7380 |
|
7381 You may choose to re-run `basename $0` with the -no-exceptions |
|
7382 option to compile Qt without exceptions. This will make the |
|
7383 size of the Qt library smaller and reduce the amount of memory |
|
7384 taken by your applications. |
|
7385 |
|
7386 EOF |
|
7387 fi |
|
7388 ;; |
|
7389 *) ;; |
|
7390 esac |
|
7391 ;; |
|
7392 *) ;; |
|
7393 esac |
|
7394 |
|
7395 if [ "$PLATFORM_MAC" = "yes" ] && [ "$CFG_MAC_DWARF2" = "no" ] && [ "$CFG_WEBKIT" = "yes" ] && [ "$CFG_DEBUG_RELEASE" = "yes" ]; then |
|
7396 cat <<EOF |
|
7397 WARNING: DWARF2 debug symbols are not enabled. Linking webkit |
|
7398 in debug mode will run out of memory on systems with 2GB or less. |
|
7399 Install Xcode 2.4.1 or higher to enable DWARF2, or configure with |
|
7400 -no-webkit or -release to skip webkit debug. |
|
7401 EOF |
|
7402 fi |
|
7403 |
|
7404 echo |
|
7405 if [ "$XPLATFORM" = "$PLATFORM" ]; then |
|
7406 echo "Build type: $PLATFORM" |
|
7407 else |
|
7408 echo "Building on: $PLATFORM" |
|
7409 echo "Building for: $XPLATFORM" |
|
7410 fi |
|
7411 |
|
7412 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
7413 echo "Architecture: $CFG_ARCH ($CFG_MAC_ARCHS )" |
|
7414 else |
|
7415 echo "Architecture: $CFG_ARCH" |
|
7416 fi |
|
7417 |
|
7418 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
7419 echo "Host architecture: $CFG_HOST_ARCH" |
|
7420 fi |
|
7421 |
|
7422 if [ "$PLATFORM_MAC" = "yes" ]; then |
|
7423 if [ "$CFG_MAC_COCOA" = "yes" ]; then |
|
7424 if [ "$CFG_MAC_CARBON" = "yes" ]; then |
|
7425 echo "Using framework: Carbon for 32-bit, Cocoa for 64-bit" |
|
7426 else |
|
7427 echo "Using framework: Cocoa" |
|
7428 fi |
|
7429 else |
|
7430 echo "Using framework: Carbon" |
|
7431 fi |
|
7432 fi |
|
7433 |
|
7434 if [ -n "$PLATFORM_NOTES" ]; then |
|
7435 echo "Platform notes:" |
|
7436 echo "$PLATFORM_NOTES" |
|
7437 else |
|
7438 echo |
|
7439 fi |
|
7440 |
|
7441 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
7442 if echo '\c' | grep '\c' >/dev/null; then |
|
7443 echo -n "qmake vars .......... " |
|
7444 else |
|
7445 echo "qmake vars .......... \c" |
|
7446 fi |
|
7447 cat "$QMAKE_VARS_FILE" | tr '\n' ' ' |
|
7448 echo "qmake switches ...... $QMAKE_SWITCHES" |
|
7449 fi |
|
7450 |
|
7451 [ "$CFG_INCREMENTAL" = "yes" ] && [ '!' -z "$INCREMENTAL" ] && echo "Incremental ......... $INCREMENTAL" |
|
7452 echo "Build ............... $CFG_BUILD_PARTS" |
|
7453 echo "Configuration ....... $QMAKE_CONFIG $QT_CONFIG" |
|
7454 if [ "$CFG_DEBUG_RELEASE" = "yes" ]; then |
|
7455 echo "Debug ............... yes (combined)" |
|
7456 if [ "$CFG_DEBUG" = "yes" ]; then |
|
7457 echo "Default Link ........ debug" |
|
7458 else |
|
7459 echo "Default Link ........ release" |
|
7460 fi |
|
7461 else |
|
7462 echo "Debug ............... $CFG_DEBUG" |
|
7463 fi |
|
7464 echo "Qt 3 compatibility .. $CFG_QT3SUPPORT" |
|
7465 [ "$CFG_DBUS" = "no" ] && echo "QtDBus module ....... no" |
|
7466 [ "$CFG_DBUS" = "yes" ] && echo "QtDBus module ....... yes (run-time)" |
|
7467 [ "$CFG_DBUS" = "linked" ] && echo "QtDBus module ....... yes (linked)" |
|
7468 echo "QtConcurrent code.... $CFG_CONCURRENT" |
|
7469 echo "QtScript module ..... $CFG_SCRIPT" |
|
7470 echo "QtScriptTools module $CFG_SCRIPTTOOLS" |
|
7471 echo "QtXmlPatterns module $CFG_XMLPATTERNS" |
|
7472 echo "Phonon module ....... $CFG_PHONON" |
|
7473 echo "Multimedia module ... $CFG_MULTIMEDIA" |
|
7474 echo "SVG module .......... $CFG_SVG" |
|
7475 echo "WebKit module ....... $CFG_WEBKIT" |
|
7476 if [ "$CFG_WEBKIT" = "yes" ]; then |
|
7477 if [ "$CFG_JAVASCRIPTCORE_JIT" = "auto" ]; then |
|
7478 echo "JavaScriptCore JIT .. To be decided by JavaScriptCore" |
|
7479 else |
|
7480 echo "JavaScriptCore JIT .. $CFG_JAVASCRIPTCORE_JIT" |
|
7481 fi |
|
7482 fi |
|
7483 echo "Declarative module .. $CFG_DECLARATIVE" |
|
7484 echo "STL support ......... $CFG_STL" |
|
7485 echo "PCH support ......... $CFG_PRECOMPILE" |
|
7486 echo "MMX/3DNOW/SSE/SSE2.. ${CFG_MMX}/${CFG_3DNOW}/${CFG_SSE}/${CFG_SSE2}" |
|
7487 if [ "$CFG_ARCH" = "arm" ] || [ "$CFG_ARCH" = "armv6" ]; then |
|
7488 echo "iWMMXt support ...... ${CFG_IWMMXT}" |
|
7489 echo "NEON support ........ ${CFG_NEON}" |
|
7490 fi |
|
7491 [ "${PLATFORM_QWS}" != "yes" ] && echo "Graphics System ..... $CFG_GRAPHICS_SYSTEM" |
|
7492 echo "IPv6 support ........ $CFG_IPV6" |
|
7493 echo "IPv6 ifname support . $CFG_IPV6IFNAME" |
|
7494 echo "getaddrinfo support . $CFG_GETADDRINFO" |
|
7495 echo "getifaddrs support .. $CFG_GETIFADDRS" |
|
7496 echo "Accessibility ....... $CFG_ACCESSIBILITY" |
|
7497 echo "NIS support ......... $CFG_NIS" |
|
7498 echo "CUPS support ........ $CFG_CUPS" |
|
7499 echo "Iconv support ....... $CFG_ICONV" |
|
7500 echo "Glib support ........ $CFG_GLIB" |
|
7501 echo "GStreamer support ... $CFG_GSTREAMER" |
|
7502 echo "Large File support .. $CFG_LARGEFILE" |
|
7503 echo "GIF support ......... $CFG_GIF" |
|
7504 if [ "$CFG_TIFF" = "no" ]; then |
|
7505 echo "TIFF support ........ $CFG_TIFF" |
|
7506 else |
|
7507 echo "TIFF support ........ $CFG_TIFF ($CFG_LIBTIFF)" |
|
7508 fi |
|
7509 if [ "$CFG_JPEG" = "no" ]; then |
|
7510 echo "JPEG support ........ $CFG_JPEG" |
|
7511 else |
|
7512 echo "JPEG support ........ $CFG_JPEG ($CFG_LIBJPEG)" |
|
7513 fi |
|
7514 if [ "$CFG_PNG" = "no" ]; then |
|
7515 echo "PNG support ......... $CFG_PNG" |
|
7516 else |
|
7517 echo "PNG support ......... $CFG_PNG ($CFG_LIBPNG)" |
|
7518 fi |
|
7519 if [ "$CFG_MNG" = "no" ]; then |
|
7520 echo "MNG support ......... $CFG_MNG" |
|
7521 else |
|
7522 echo "MNG support ......... $CFG_MNG ($CFG_LIBMNG)" |
|
7523 fi |
|
7524 echo "zlib support ........ $CFG_ZLIB" |
|
7525 echo "Session management .. $CFG_SM" |
|
7526 if [ "$PLATFORM_QWS" = "yes" ]; then |
|
7527 echo "Embedded support .... $CFG_EMBEDDED" |
|
7528 if [ "$CFG_QWS_FREETYPE" = "auto" ]; then |
|
7529 echo "Freetype2 support ... $CFG_QWS_FREETYPE ($CFG_LIBFREETYPE)" |
|
7530 else |
|
7531 echo "Freetype2 support ... $CFG_QWS_FREETYPE" |
|
7532 fi |
|
7533 # Normalize the decoration output first |
|
7534 CFG_GFX_ON=`echo ${CFG_GFX_ON}` |
|
7535 CFG_GFX_PLUGIN=`echo ${CFG_GFX_PLUGIN}` |
|
7536 echo "Graphics (qt) ....... ${CFG_GFX_ON}" |
|
7537 echo "Graphics (plugin) ... ${CFG_GFX_PLUGIN}" |
|
7538 CFG_DECORATION_ON=`echo ${CFG_DECORATION_ON}` |
|
7539 CFG_DECORATION_PLUGIN=`echo ${CFG_DECORATION_PLUGIN}` |
|
7540 echo "Decorations (qt) .... $CFG_DECORATION_ON" |
|
7541 echo "Decorations (plugin) $CFG_DECORATION_PLUGIN" |
|
7542 CFG_KBD_ON=`echo ${CFG_KBD_ON}` |
|
7543 CFG_KBD_PLUGIN=`echo ${CFG_KBD_PLUGIN}` |
|
7544 echo "Keyboard driver (qt). ${CFG_KBD_ON}" |
|
7545 echo "Keyboard driver (plugin) ${CFG_KBD_PLUGIN}" |
|
7546 CFG_MOUSE_ON=`echo ${CFG_MOUSE_ON}` |
|
7547 CFG_MOUSE_PLUGIN=`echo ${CFG_MOUSE_PLUGIN}` |
|
7548 echo "Mouse driver (qt) ... $CFG_MOUSE_ON" |
|
7549 echo "Mouse driver (plugin) $CFG_MOUSE_PLUGIN" |
|
7550 fi |
|
7551 if [ "$CFG_OPENGL" = "desktop" ]; then |
|
7552 echo "OpenGL support ...... yes (Desktop OpenGL)" |
|
7553 elif [ "$CFG_OPENGL" = "es1" ]; then |
|
7554 echo "OpenGL support ...... yes (OpenGL ES 1.x Common profile)" |
|
7555 elif [ "$CFG_OPENGL" = "es1cl" ]; then |
|
7556 echo "OpenGL support ...... yes (OpenGL ES 1.x Common Lite profile)" |
|
7557 elif [ "$CFG_OPENGL" = "es2" ]; then |
|
7558 echo "OpenGL support ...... yes (OpenGL ES 2.x)" |
|
7559 else |
|
7560 echo "OpenGL support ...... no" |
|
7561 fi |
|
7562 if [ "$CFG_EGL" != "no" ]; then |
|
7563 if [ "$CFG_EGL_GLES_INCLUDES" != "no" ]; then |
|
7564 echo "EGL support ......... yes <GLES/egl.h>" |
|
7565 else |
|
7566 echo "EGL support ......... yes <EGL/egl.h>" |
|
7567 fi |
|
7568 fi |
|
7569 if [ "$CFG_OPENVG" ]; then |
|
7570 if [ "$CFG_OPENVG_SHIVA" = "yes" ]; then |
|
7571 echo "OpenVG support ...... ShivaVG" |
|
7572 else |
|
7573 echo "OpenVG support ...... $CFG_OPENVG" |
|
7574 fi |
|
7575 fi |
|
7576 if [ "$PLATFORM_X11" = "yes" ]; then |
|
7577 echo "NAS sound support ... $CFG_NAS" |
|
7578 echo "XShape support ...... $CFG_XSHAPE" |
|
7579 echo "XSync support ....... $CFG_XSYNC" |
|
7580 echo "Xinerama support .... $CFG_XINERAMA" |
|
7581 echo "Xcursor support ..... $CFG_XCURSOR" |
|
7582 echo "Xfixes support ...... $CFG_XFIXES" |
|
7583 echo "Xrandr support ...... $CFG_XRANDR" |
|
7584 echo "Xrender support ..... $CFG_XRENDER" |
|
7585 echo "Xi support .......... $CFG_XINPUT" |
|
7586 echo "MIT-SHM support ..... $CFG_MITSHM" |
|
7587 echo "FontConfig support .. $CFG_FONTCONFIG" |
|
7588 echo "XKB Support ......... $CFG_XKB" |
|
7589 echo "immodule support .... $CFG_IM" |
|
7590 echo "GTK theme support ... $CFG_QGTKSTYLE" |
|
7591 fi |
|
7592 [ "$CFG_SQL_mysql" != "no" ] && echo "MySQL support ....... $CFG_SQL_mysql" |
|
7593 [ "$CFG_SQL_psql" != "no" ] && echo "PostgreSQL support .. $CFG_SQL_psql" |
|
7594 [ "$CFG_SQL_odbc" != "no" ] && echo "ODBC support ........ $CFG_SQL_odbc" |
|
7595 [ "$CFG_SQL_oci" != "no" ] && echo "OCI support ......... $CFG_SQL_oci" |
|
7596 [ "$CFG_SQL_tds" != "no" ] && echo "TDS support ......... $CFG_SQL_tds" |
|
7597 [ "$CFG_SQL_db2" != "no" ] && echo "DB2 support ......... $CFG_SQL_db2" |
|
7598 [ "$CFG_SQL_ibase" != "no" ] && echo "InterBase support ... $CFG_SQL_ibase" |
|
7599 [ "$CFG_SQL_sqlite2" != "no" ] && echo "SQLite 2 support .... $CFG_SQL_sqlite2" |
|
7600 [ "$CFG_SQL_sqlite" != "no" ] && echo "SQLite support ...... $CFG_SQL_sqlite ($CFG_SQLITE)" |
|
7601 |
|
7602 OPENSSL_LINKAGE="" |
|
7603 if [ "$CFG_OPENSSL" = "yes" ]; then |
|
7604 OPENSSL_LINKAGE="(run-time)" |
|
7605 elif [ "$CFG_OPENSSL" = "linked" ]; then |
|
7606 OPENSSL_LINKAGE="(linked)" |
|
7607 fi |
|
7608 echo "OpenSSL support ..... $CFG_OPENSSL $OPENSSL_LINKAGE" |
|
7609 echo "Alsa support ........ $CFG_ALSA" |
|
7610 echo |
|
7611 |
|
7612 [ "$CFG_PTMALLOC" != "no" ] && echo "Use ptmalloc ........ $CFG_PTMALLOC" |
|
7613 |
|
7614 # complain about not being able to use dynamic plugins if we are using a static build |
|
7615 if [ "$CFG_SHARED" = "no" ]; then |
|
7616 echo |
|
7617 echo "WARNING: Using static linking will disable the use of dynamically" |
|
7618 echo "loaded plugins. Make sure to import all needed static plugins," |
|
7619 echo "or compile needed modules into the library." |
|
7620 echo |
|
7621 fi |
|
7622 if [ "$CFG_OPENSSL" = "linked" ] && [ "$OPENSSL_LIBS" = "" ]; then |
|
7623 echo |
|
7624 echo "NOTE: When linking against OpenSSL, you can override the default" |
|
7625 echo "library names through OPENSSL_LIBS." |
|
7626 echo "For example:" |
|
7627 echo " ./configure -openssl-linked OPENSSL_LIBS='-L/opt/ssl/lib -lssl -lcrypto'" |
|
7628 echo |
|
7629 fi |
|
7630 if [ "$PLATFORM_MAC" = "yes" ] && [ "$CFG_FRAMEWORK" = "yes" ] && [ "$CFG_DEBUG" = "yes" ] && [ "$CFG_DEBUG_RELEASE" = "no" ]; then |
|
7631 echo |
|
7632 echo "NOTE: Mac OS X frameworks implicitly build debug and release Qt libraries." |
|
7633 echo |
|
7634 fi |
|
7635 |
|
7636 sepath=`echo "$relpath" | sed -e 's/\\./\\\\./g'` |
|
7637 PROCS=1 |
|
7638 EXEC="" |
|
7639 |
|
7640 |
|
7641 #------------------------------------------------------------------------------- |
|
7642 # build makefiles based on the configuration |
|
7643 #------------------------------------------------------------------------------- |
|
7644 |
|
7645 echo "Finding project files. Please wait..." |
|
7646 "$outpath/bin/qmake" -prl -r "${relpath}/projects.pro" |
|
7647 if [ -f "${relpath}/projects.pro" ]; then |
|
7648 mkfile="${outpath}/Makefile" |
|
7649 [ -f "$mkfile" ] && chmod +w "$mkfile" |
|
7650 QTDIR="$outpath" "$outpath/bin/qmake" -spec "$XQMAKESPEC" "${relpath}/projects.pro" -o "$mkfile" |
|
7651 fi |
|
7652 |
|
7653 # .projects -> projects to process |
|
7654 # .projects.1 -> qt and moc |
|
7655 # .projects.2 -> subdirs and libs |
|
7656 # .projects.3 -> the rest |
|
7657 rm -f .projects .projects.1 .projects.2 .projects.3 |
|
7658 |
|
7659 QMAKE_PROJECTS=`find "$relpath/." -name '*.pro' -print | sed 's-/\./-/-'` |
|
7660 if [ -z "$AWK" ]; then |
|
7661 for p in `echo $QMAKE_PROJECTS`; do |
|
7662 echo "$p" >> .projects |
|
7663 done |
|
7664 else |
|
7665 cat >projects.awk <<EOF |
|
7666 BEGIN { |
|
7667 files = 0 |
|
7668 target_file = "" |
|
7669 input_file = "" |
|
7670 |
|
7671 first = "./.projects.1.tmp" |
|
7672 second = "./.projects.2.tmp" |
|
7673 third = "./.projects.3.tmp" |
|
7674 } |
|
7675 |
|
7676 FNR == 1 { |
|
7677 if ( input_file ) { |
|
7678 if ( ! target_file ) |
|
7679 target_file = third |
|
7680 print input_file >target_file |
|
7681 } |
|
7682 |
|
7683 matched_target = 0 |
|
7684 template_lib = 0 |
|
7685 input_file = FILENAME |
|
7686 target_file = "" |
|
7687 } |
|
7688 |
|
7689 /^(TARGET.*=)/ { |
|
7690 if ( \$3 == "moc" || \$3 ~ /^Qt/ ) { |
|
7691 target_file = first |
|
7692 matched_target = 1 |
|
7693 } else if ( \$3 == "lrelease" || \$3 == "qm_phony_target" ) { |
|
7694 target_file = second |
|
7695 matched_target = 1 |
|
7696 } |
|
7697 } |
|
7698 |
|
7699 matched_target == 0 && /^(TEMPLATE.*=)/ { |
|
7700 if ( \$3 == "subdirs" ) |
|
7701 target_file = second |
|
7702 else if ( \$3 == "lib" ) |
|
7703 template_lib = 1 |
|
7704 else |
|
7705 target_file = third |
|
7706 } |
|
7707 |
|
7708 matched_target == 0 && template_lib == 1 && /^(CONFIG.*=)/ { |
|
7709 if ( \$0 ~ /plugin/ ) |
|
7710 target_file = third |
|
7711 else |
|
7712 target_file = second |
|
7713 } |
|
7714 |
|
7715 END { |
|
7716 if ( input_file ) { |
|
7717 if ( ! target_file ) |
|
7718 target_file = third |
|
7719 print input_file >>target_file |
|
7720 } |
|
7721 } |
|
7722 |
|
7723 EOF |
|
7724 |
|
7725 rm -f .projects.all |
|
7726 for p in `echo $QMAKE_PROJECTS`; do |
|
7727 echo "$p" >> .projects.all |
|
7728 done |
|
7729 |
|
7730 # if you get errors about the length of the command line to awk, change the -l arg |
|
7731 # to split below |
|
7732 split -l 100 .projects.all .projects.all. |
|
7733 for p in .projects.all.*; do |
|
7734 "$AWK" -f projects.awk `cat $p` |
|
7735 [ -f .projects.1.tmp ] && cat .projects.1.tmp >> .projects.1 |
|
7736 [ -f .projects.2.tmp ] && cat .projects.2.tmp >> .projects.2 |
|
7737 [ -f .projects.3.tmp ] && cat .projects.3.tmp >> .projects.3 |
|
7738 rm -f .projects.1.tmp .projects.2.tmp .projects.3.tmp $p |
|
7739 done |
|
7740 rm -f .projects.all* projects.awk |
|
7741 |
|
7742 [ -f .projects.1 ] && cat .projects.1 >>.projects |
|
7743 [ -f .projects.2 ] && cat .projects.2 >>.projects |
|
7744 rm -f .projects.1 .projects.2 |
|
7745 if [ -f .projects.3 ] && [ "$OPT_FAST" = "no" ]; then |
|
7746 cat .projects.3 >>.projects |
|
7747 rm -f .projects.3 |
|
7748 fi |
|
7749 fi |
|
7750 # don't sort Qt and MOC in with the other project files |
|
7751 # also work around a segfaulting uniq(1) |
|
7752 if [ -f .sorted.projects.2 ]; then |
|
7753 sort .sorted.projects.2 > .sorted.projects.2.new |
|
7754 mv -f .sorted.projects.2.new .sorted.projects.2 |
|
7755 cat .sorted.projects.2 >> .sorted.projects.1 |
|
7756 fi |
|
7757 [ -f .sorted.projects.1 ] && sort .sorted.projects.1 >> .sorted.projects |
|
7758 rm -f .sorted.projects.2 .sorted.projects.1 |
|
7759 |
|
7760 NORM_PROJECTS=0 |
|
7761 FAST_PROJECTS=0 |
|
7762 if [ -f .projects ]; then |
|
7763 uniq .projects >.tmp |
|
7764 mv -f .tmp .projects |
|
7765 NORM_PROJECTS=`cat .projects | wc -l | sed -e "s, ,,g"` |
|
7766 fi |
|
7767 if [ -f .projects.3 ]; then |
|
7768 uniq .projects.3 >.tmp |
|
7769 mv -f .tmp .projects.3 |
|
7770 FAST_PROJECTS=`cat .projects.3 | wc -l | sed -e "s, ,,g"` |
|
7771 fi |
|
7772 echo " `expr $NORM_PROJECTS + $FAST_PROJECTS` projects found." |
|
7773 echo |
|
7774 |
|
7775 PART_ROOTS= |
|
7776 for part in $CFG_BUILD_PARTS; do |
|
7777 case "$part" in |
|
7778 tools) PART_ROOTS="$PART_ROOTS tools" ;; |
|
7779 libs) PART_ROOTS="$PART_ROOTS src" ;; |
|
7780 translations) PART_ROOTS="$PART_ROOTS tools/linguist/lrelease translations" ;; |
|
7781 examples) PART_ROOTS="$PART_ROOTS examples demos" ;; |
|
7782 *) ;; |
|
7783 esac |
|
7784 done |
|
7785 |
|
7786 if [ "$CFG_DEV" = "yes" ]; then |
|
7787 PART_ROOTS="$PART_ROOTS tests" |
|
7788 fi |
|
7789 |
|
7790 echo "Creating makefiles. Please wait..." |
|
7791 for file in .projects .projects.3; do |
|
7792 [ '!' -f "$file" ] && continue |
|
7793 for a in `cat $file`; do |
|
7794 IN_ROOT=no |
|
7795 for r in $PART_ROOTS; do |
|
7796 if echo "$a" | grep "^$r" >/dev/null 2>&1 || echo "$a" | grep "^$relpath/$r" >/dev/null 2>&1; then |
|
7797 IN_ROOT=yes |
|
7798 break |
|
7799 fi |
|
7800 done |
|
7801 [ "$IN_ROOT" = "no" ] && continue |
|
7802 |
|
7803 case $a in |
|
7804 *winmain/winmain.pro) continue ;; |
|
7805 *s60main/s60main.pro) continue ;; |
|
7806 *examples/activeqt/*) continue ;; |
|
7807 */qmake/qmake.pro) continue ;; |
|
7808 *tools/bootstrap*|*tools/moc*|*tools/rcc*|*tools/uic*|*linguist/lrelease*) SPEC=$QMAKESPEC ;; |
|
7809 *) SPEC=$XQMAKESPEC ;; |
|
7810 esac |
|
7811 dir=`dirname "$a" | sed -e "s;$sepath;.;g"` |
|
7812 test -d "$dir" || mkdir -p "$dir" |
|
7813 OUTDIR="$outpath/$dir" |
|
7814 if [ -f "${OUTDIR}/Makefile" ] && [ "$OPT_FAST" = "yes" ]; then |
|
7815 # fast configure - the makefile exists, skip it |
|
7816 # since the makefile exists, it was generated by qmake, which means we |
|
7817 # can skip it, since qmake has a rule to regenerate the makefile if the .pro |
|
7818 # file changes... |
|
7819 [ "$OPT_VERBOSE" = "yes" ] && echo " skipping $a" |
|
7820 continue; |
|
7821 fi |
|
7822 QMAKE_SPEC_ARGS="-spec $SPEC" |
|
7823 if echo '\c' | grep '\c' >/dev/null; then |
|
7824 echo -n " for $a" |
|
7825 else |
|
7826 echo " for $a\c" |
|
7827 fi |
|
7828 |
|
7829 QMAKE="$outpath/bin/qmake" |
|
7830 QMAKE_ARGS="$QMAKE_SWITCHES $QMAKE_SPEC_ARGS" |
|
7831 if [ "$file" = ".projects.3" ]; then |
|
7832 if echo '\c' | grep '\c' >/dev/null; then |
|
7833 echo -n " (fast)" |
|
7834 else |
|
7835 echo " (fast)\c" |
|
7836 fi |
|
7837 echo |
|
7838 |
|
7839 cat >"${OUTDIR}/Makefile" <<EOF |
|
7840 # ${OUTDIR}/Makefile: generated by configure |
|
7841 # |
|
7842 # WARNING: This makefile will be replaced with a real makefile. |
|
7843 # All changes made to this file will be lost. |
|
7844 EOF |
|
7845 [ "$CFG_DEBUG_RELEASE" = "no" ] && echo "first_target: first" >>${OUTDIR}/Makefile |
|
7846 |
|
7847 cat >>"${OUTDIR}/Makefile" <<EOF |
|
7848 QMAKE = "$QMAKE" |
|
7849 all clean install qmake first Makefile: FORCE |
|
7850 \$(QMAKE) $QMAKE_ARGS -o "$OUTDIR" "$a" |
|
7851 cd "$OUTDIR" |
|
7852 \$(MAKE) \$@ |
|
7853 |
|
7854 FORCE: |
|
7855 |
|
7856 EOF |
|
7857 else |
|
7858 if [ "$OPT_VERBOSE" = "yes" ]; then |
|
7859 echo " (`basename $SPEC`)" |
|
7860 echo "$QMAKE" $QMAKE_ARGS -o "$OUTDIR" "$a" |
|
7861 else |
|
7862 echo |
|
7863 fi |
|
7864 |
|
7865 [ -f "${OUTDIR}/Makefile" ] && chmod +w "${OUTDIR}/Makefile" |
|
7866 QTDIR="$outpath" "$QMAKE" $QMAKE_ARGS -o "$OUTDIR" "$a" |
|
7867 fi |
|
7868 done |
|
7869 done |
|
7870 rm -f .projects .projects.3 |
|
7871 |
|
7872 #------------------------------------------------------------------------------- |
|
7873 # XShape is important, DnD in the Designer doens't work without it |
|
7874 #------------------------------------------------------------------------------- |
|
7875 if [ "$PLATFORM_X11" = "yes" ] && [ "$CFG_XSHAPE" = "no" ]; then |
|
7876 cat <<EOF |
|
7877 |
|
7878 NOTICE: Qt will not be built with XShape support. |
|
7879 |
|
7880 As a result, drag-and-drop in the Qt Designer will NOT |
|
7881 work. We recommend that you enable XShape support by passing |
|
7882 the -xshape switch to $0. |
|
7883 EOF |
|
7884 fi |
|
7885 |
|
7886 #------------------------------------------------------------------------------- |
|
7887 # check for platforms that we don't yet know about |
|
7888 #------------------------------------------------------------------------------- |
|
7889 if [ "$CFG_ARCH" = "generic" ]; then |
|
7890 cat <<EOF |
|
7891 |
|
7892 NOTICE: Atomic operations are not yet supported for this |
|
7893 architecture. |
|
7894 |
|
7895 Qt will use the 'generic' architecture instead, which uses a |
|
7896 single pthread_mutex_t to protect all atomic operations. This |
|
7897 implementation is the slow (but safe) fallback implementation |
|
7898 for architectures Qt does not yet support. |
|
7899 EOF |
|
7900 fi |
|
7901 |
|
7902 #------------------------------------------------------------------------------- |
|
7903 # check if the user passed the -no-zlib option, which is no longer supported |
|
7904 #------------------------------------------------------------------------------- |
|
7905 if [ -n "$ZLIB_FORCED" ]; then |
|
7906 which_zlib="supplied" |
|
7907 if [ "$CFG_ZLIB" = "system" ]; then |
|
7908 which_zlib="system" |
|
7909 fi |
|
7910 |
|
7911 cat <<EOF |
|
7912 |
|
7913 NOTICE: The -no-zlib option was supplied but is no longer |
|
7914 supported. |
|
7915 |
|
7916 Qt now requires zlib support in all builds, so the -no-zlib |
|
7917 option was ignored. Qt will be built using the $which_zlib |
|
7918 zlib. |
|
7919 EOF |
|
7920 fi |
|
7921 |
|
7922 #------------------------------------------------------------------------------- |
|
7923 # finally save the executed command to another script |
|
7924 #------------------------------------------------------------------------------- |
|
7925 if [ `basename $0` != "config.status" ]; then |
|
7926 CONFIG_STATUS="$relpath/$relconf $OPT_CMDLINE" |
|
7927 |
|
7928 # add the system variables |
|
7929 for varname in $SYSTEM_VARIABLES; do |
|
7930 cmd=`echo \ |
|
7931 'if [ -n "\$'${varname}'" ]; then |
|
7932 CONFIG_STATUS="'${varname}'='"'\\\$${varname}'"' \$CONFIG_STATUS" |
|
7933 fi'` |
|
7934 eval "$cmd" |
|
7935 done |
|
7936 |
|
7937 echo "$CONFIG_STATUS" | grep '\-confirm\-license' >/dev/null 2>&1 || CONFIG_STATUS="$CONFIG_STATUS -confirm-license" |
|
7938 |
|
7939 [ -f "$outpath/config.status" ] && rm -f "$outpath/config.status" |
|
7940 echo "#!/bin/sh" > "$outpath/config.status" |
|
7941 echo "if [ \"\$#\" -gt 0 ]; then" >> "$outpath/config.status" |
|
7942 echo " $CONFIG_STATUS \"\$@\"" >> "$outpath/config.status" |
|
7943 echo "else" >> "$outpath/config.status" |
|
7944 echo " $CONFIG_STATUS" >> "$outpath/config.status" |
|
7945 echo "fi" >> "$outpath/config.status" |
|
7946 chmod +x "$outpath/config.status" |
|
7947 fi |
|
7948 |
|
7949 if [ -n "$RPATH_MESSAGE" ]; then |
|
7950 echo |
|
7951 echo "$RPATH_MESSAGE" |
|
7952 fi |
|
7953 |
|
7954 MAKE=`basename "$MAKE"` |
|
7955 echo |
|
7956 echo Qt is now configured for building. Just run \'$MAKE\'. |
|
7957 if [ "$relpath" = "$QT_INSTALL_PREFIX" ]; then |
|
7958 echo Once everything is built, Qt is installed. |
|
7959 echo You should not run \'$MAKE install\'. |
|
7960 else |
|
7961 echo Once everything is built, you must run \'$MAKE install\'. |
|
7962 echo Qt will be installed into $QT_INSTALL_PREFIX |
|
7963 fi |
|
7964 echo |
|
7965 echo To reconfigure, run \'$MAKE confclean\' and \'configure\'. |
|
7966 echo |