summaryrefslogtreecommitdiff
path: root/configure
Unidiff
Diffstat (limited to 'configure') (more/less context) (ignore whitespace changes)
-rwxr-xr-xconfigure19
1 files changed, 12 insertions, 7 deletions
diff --git a/configure b/configure
index 7824e36..3b474c6 100755
--- a/configure
+++ b/configure
@@ -1,61 +1,58 @@
1#!/bin/sh 1#!/bin/sh
2# 2#
3# Configures to build the Qtopia Environment 3# Configures to build the Qtopia Environment
4# 4#
5# Copyright 1999-2000 Trolltech AS. All rights reserved. 5# Copyright 1999-2000 Trolltech AS. All rights reserved.
6# 6#
7 7
8PLATFORM=linux-generic-g++ 8PLATFORM=generic
9SHARING=shared 9SHARING=shared
10DEBUG= 10DEBUG=
11QCONFIGARG= 11QCONFIGARG=
12 12
13touch .test.qpe. 13touch .test.qpe.
14if [ '!' -f ${OPIEDIR}/.test.qpe. ]; 14if [ '!' -f ${OPIEDIR}/.test.qpe. ];
15then 15then
16 rm .test.qpe. 16 rm .test.qpe.
17 echo 17 echo
18 echo 18 echo
19 echo ' The environment variable $OPIEDIR is not set correctly. It is currently' 19 echo ' The environment variable $OPIEDIR is not set correctly. It is currently'
20 echo ' set to "'$OPIEDIR'", but it should be set to this directory,' 20 echo ' set to "'$OPIEDIR'", but it should be set to this directory,'
21 echo ' which is "'`pwd`'".' 21 echo ' which is "'`pwd`'".'
22 echo 22 echo
23 echo ' Please read the INSTALL file for instructions on how to set $OPIEDIR' 23 echo ' Please read the INSTALL file for instructions on how to set $OPIEDIR'
24 echo ' correctly. If you have set $OPIEDIR in your .profile or .login, you ' 24 echo ' correctly. If you have set $OPIEDIR in your .profile or .login, you '
25 echo ' will need to log out and log in again to make the setting effective.' 25 echo ' will need to log out and log in again to make the setting effective.'
26 echo 26 echo
27 echo 27 echo
28 exit 1 28 exit 1
29fi 29fi
30rm .test.qpe. 30rm .test.qpe.
31 31
32mkdir -p include/qpe 32VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\.[0-9]*\.[0-9]*.*".*/\1/p' <library/version.h)
33( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) 33VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.\([0-9]\)\.[0-9]*.*".*/\1/p' <library/version.h)
34 34VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.[0-9]*\.\([0-9]*\).*".*/\1/p' <library/version.h)
35VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\.[0-9]*\.[0-9]*.*".*/\1/p' <include/qpe/version.h)
36VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.\([0-9]\)\.[0-9]*.*".*/\1/p' <include/qpe/version.h)
37VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.[0-9]*\.\([0-9]*\).*".*/\1/p' <include/qpe/version.h)
38 35
39TOMAKE= 36TOMAKE=
40 37
41if grep -q 'VERSION_STR.*"3' $QTDIR/include/qglobal.h 38if grep -q 'VERSION_STR.*"3' $QTDIR/include/qglobal.h
42then 39then
43 QT3=yes 40 QT3=yes
44else 41else
45 QT3=no 42 QT3=no
46fi 43fi
47 44
48# Parse the arguments, setting things to "yes" or "no". 45# Parse the arguments, setting things to "yes" or "no".
49 46
50while [ -n "$1" ]; do 47while [ -n "$1" ]; do
51 case $1 in 48 case $1 in
52 -platform|-xplatform) # No difference since we don't need to build moc, etc. 49 -platform|-xplatform) # No difference since we don't need to build moc, etc.
53 shift; PLATFORM=$1 50 shift; PLATFORM=$1
54 ;; 51 ;;
55 -release) 52 -release)
56 DEBUG= 53 DEBUG=
57 ;; 54 ;;
58 -debug) 55 -debug)
59 DEBUG=-debug 56 DEBUG=-debug
60 ;; 57 ;;
61 -shared) 58 -shared)
@@ -96,48 +93,56 @@ then
96fi 93fi
97 94
98# Next, emit a usage message if something failed. 95# Next, emit a usage message if something failed.
99 96
100if [ "$HELP" = "yes" ]; then 97if [ "$HELP" = "yes" ]; then
101 cat <<EOF 98 cat <<EOF
102Usage: $0 [-debug] [-release] [-shared] [-static] [-qt3] [-platform ...] 99Usage: $0 [-debug] [-release] [-shared] [-static] [-qt3] [-platform ...]
103 100
104The defaults (*) are usually acceptable. Here is a short explanation of 101The defaults (*) are usually acceptable. Here is a short explanation of
105each option: 102each option:
106 103
107 * -release ........... Compile and link Qt with debugging turned off. 104 * -release ........... Compile and link Qt with debugging turned off.
108 -debug ............. Compile and link Qt with debugging turned on. 105 -debug ............. Compile and link Qt with debugging turned on.
109 106
110 * -shared ............ Create and use a shared Qt library (libqt.so) 107 * -shared ............ Create and use a shared Qt library (libqt.so)
111 -static ............ Create and use a static Qt library (libqt.a) 108 -static ............ Create and use a static Qt library (libqt.a)
112 109
113 -qt3 ............... Configure for use with Qt 3.x 110 -qt3 ............... Configure for use with Qt 3.x
114 111
115 -platform target ... The platform you are building on ($PLATFORM) 112 -platform target ... The platform you are building on ($PLATFORM)
116EOF 113EOF
117 exit 0; 114 exit 0;
118fi 115fi
119 116
117if [ -f library/custom-$PLATFORM.h ]
118then
119 rm -f library/custom.h
120 ln -s custom-$PLATFORM.h library/custom.h
121fi
122
123mkdir -p include/qpe
124( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; )
120 125
121echo Creating makefiles... 126echo Creating makefiles...
122 127
123sed -e 's/^\(VERSION.*= \).*/\1'$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT/ <library/library.pro >library/library.pro-v 128sed -e 's/^\(VERSION.*= \).*/\1'$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT/ <library/library.pro >library/library.pro-v
124mv library/library.pro-v library/library.pro 129mv library/library.pro-v library/library.pro
125 130
126if [ "$QT3" = yes ] 131if [ "$QT3" = yes ]
127then 132then
128 VCONFIG="CONFIG+=qt3" 133 VCONFIG="CONFIG+=qt3"
129else 134else
130 VCONFIG="CONFIG+=qt2" 135 VCONFIG="CONFIG+=qt2"
131fi 136fi
132 137
133if [ -f $TMAKEPATH/tmake.conf ] 138if [ -f $TMAKEPATH/tmake.conf ]
134then 139then
135 # You have tmake. We'll regenerate the file for you... 140 # You have tmake. We'll regenerate the file for you...
136 echo "Makefiles will be regenerated." 141 echo "Makefiles will be regenerated."
137fi 142fi
138 143
139H=`pwd` 144H=`pwd`
140if [ -z "$TOMAKE" ] 145if [ -z "$TOMAKE" ]
141then 146then
142 TOMAKE=`make showcomponents` 147 TOMAKE=`make showcomponents`
143fi 148fi