summaryrefslogtreecommitdiff
path: root/README
authorzecke <zecke>2004-07-23 13:01:56 (UTC)
committer zecke <zecke>2004-07-23 13:01:56 (UTC)
commit984ab6b8bccf667a89062d959defed4a5d86bfb1 (patch) (unidiff)
tree86ca49bb35c52ec0d71daa4ffc61779393f5868b /README
parent641881607b1720e2cf013b54b0e5c2c03fcf55b9 (diff)
downloadopie-984ab6b8bccf667a89062d959defed4a5d86bfb1.zip
opie-984ab6b8bccf667a89062d959defed4a5d86bfb1.tar.gz
opie-984ab6b8bccf667a89062d959defed4a5d86bfb1.tar.bz2
Adjust to the relayout of the qt dir
Diffstat (limited to 'README') (more/less context) (ignore whitespace changes)
-rw-r--r--README2
1 files changed, 1 insertions, 1 deletions
diff --git a/README b/README
index 4003722..78eb5f1 100644
--- a/README
+++ b/README
@@ -24,25 +24,25 @@ export QTDIR=/opt/qt-2.3.7
24You need to do set the OPIEDIR environment variable: 24You need to do set the OPIEDIR environment variable:
25export OPIEDIR=`pwd` 25export OPIEDIR=`pwd`
26or 26or
27export OPIEDIR=~/projects/sources/opie 27export OPIEDIR=~/projects/sources/opie
28or whereever you placed the Opie sources. 28or whereever you placed the Opie sources.
29 29
30You need to adjust your runtime library search path, 30You need to adjust your runtime library search path,
31so that the Qt/Embedded and Opie libraries can be found: 31so that the Qt/Embedded and Opie libraries can be found:
32export LD_LIBRARY_PATH=$OPIEDIR/lib:$QTDIR/lib:$LD_LIBRARY_PATH 32export LD_LIBRARY_PATH=$OPIEDIR/lib:$QTDIR/lib:$LD_LIBRARY_PATH
33 33
34You have to apply the qte<version>-all.patch to the Qt/Embedded 34You have to apply the qte<version>-all.patch to the Qt/Embedded
35sources and copy the qconfig-qpe.h file to $QTDIR/src/tools: 35sources and copy the qconfig-qpe.h file to $QTDIR/src/tools:
36cd $QTDIR; cat $OPIEDIR/qt/qte<version>-all.patch | patch -p1 36cd $QTDIR; cat $OPIEDIR/qt/qt-<version>.patch/qte<version>-all.patch | patch -p1
37cp $OPIEDIR/qt/qconfig-qpe.h $QTDIR/src/tools 37cp $OPIEDIR/qt/qconfig-qpe.h $QTDIR/src/tools
38 38
39You are now ready to configure and build Qt/Embedded 39You are now ready to configure and build Qt/Embedded
40 40
41cd $QTDIR 41cd $QTDIR
42echo 'yes' | ./configure -qconfig qpe -depths 4,16,24,32 -system-jpeg -system-libpng -system-zlib -no-xkb -no-sm -no-xft -qvfb 42echo 'yes' | ./configure -qconfig qpe -depths 4,16,24,32 -system-jpeg -system-libpng -system-zlib -no-xkb -no-sm -no-xft -qvfb
43make 43make
44 44
45Note that the above command ( -qvfb ) compiles in the Virtual 45Note that the above command ( -qvfb ) compiles in the Virtual
46Framebuffer and is mostly meant for development on your host system. 46Framebuffer and is mostly meant for development on your host system.
47For cross compiling, you will need to use the -xplatform switch. 47For cross compiling, you will need to use the -xplatform switch.
48See ./configure --help for details about the possible options. 48See ./configure --help for details about the possible options.