|
diff --git a/README b/README index 4003722..78eb5f1 100644 --- a/ README+++ b/ README |
|
@@ -20,33 +20,33 @@ ftp://ftp.trolltech.com/qt/source/qt-embedded-2.3.7.tar.bz2 |
20 | |
20 | |
21 | Set QTDIR to point to your qt/embedded source tree, such as: |
21 | Set QTDIR to point to your qt/embedded source tree, such as: |
22 | export QTDIR=/opt/qt-2.3.7 |
22 | export QTDIR=/opt/qt-2.3.7 |
23 | |
23 | |
24 | You need to do set the OPIEDIR environment variable: |
24 | You need to do set the OPIEDIR environment variable: |
25 | export OPIEDIR=`pwd` |
25 | export OPIEDIR=`pwd` |
26 | or |
26 | or |
27 | export OPIEDIR=~/projects/sources/opie |
27 | export OPIEDIR=~/projects/sources/opie |
28 | or whereever you placed the Opie sources. |
28 | or whereever you placed the Opie sources. |
29 | |
29 | |
30 | You need to adjust your runtime library search path, |
30 | You need to adjust your runtime library search path, |
31 | so that the Qt/Embedded and Opie libraries can be found: |
31 | so that the Qt/Embedded and Opie libraries can be found: |
32 | export LD_LIBRARY_PATH=$OPIEDIR/lib:$QTDIR/lib:$LD_LIBRARY_PATH |
32 | export LD_LIBRARY_PATH=$OPIEDIR/lib:$QTDIR/lib:$LD_LIBRARY_PATH |
33 | |
33 | |
34 | You have to apply the qte<version>-all.patch to the Qt/Embedded |
34 | You have to apply the qte<version>-all.patch to the Qt/Embedded |
35 | sources and copy the qconfig-qpe.h file to $QTDIR/src/tools: |
35 | sources and copy the qconfig-qpe.h file to $QTDIR/src/tools: |
36 | cd $QTDIR; cat $OPIEDIR/qt/qte<version>-all.patch | patch -p1 |
36 | cd $QTDIR; cat $OPIEDIR/qt/qt-<version>.patch/qte<version>-all.patch | patch -p1 |
37 | cp $OPIEDIR/qt/qconfig-qpe.h $QTDIR/src/tools |
37 | cp $OPIEDIR/qt/qconfig-qpe.h $QTDIR/src/tools |
38 | |
38 | |
39 | You are now ready to configure and build Qt/Embedded |
39 | You are now ready to configure and build Qt/Embedded |
40 | |
40 | |
41 | cd $QTDIR |
41 | cd $QTDIR |
42 | echo 'yes' | ./configure -qconfig qpe -depths 4,16,24,32 -system-jpeg -system-libpng -system-zlib -no-xkb -no-sm -no-xft -qvfb |
42 | echo 'yes' | ./configure -qconfig qpe -depths 4,16,24,32 -system-jpeg -system-libpng -system-zlib -no-xkb -no-sm -no-xft -qvfb |
43 | make |
43 | make |
44 | |
44 | |
45 | Note that the above command ( -qvfb ) compiles in the Virtual |
45 | Note that the above command ( -qvfb ) compiles in the Virtual |
46 | Framebuffer and is mostly meant for development on your host system. |
46 | Framebuffer and is mostly meant for development on your host system. |
47 | For cross compiling, you will need to use the -xplatform switch. |
47 | For cross compiling, you will need to use the -xplatform switch. |
48 | See ./configure --help for details about the possible options. |
48 | See ./configure --help for details about the possible options. |
49 | |
49 | |
50 | Once you have these compiled, be sure to set the PATH to ensure your (cross)compiler |
50 | Once you have these compiled, be sure to set the PATH to ensure your (cross)compiler |
51 | is available. |
51 | is available. |
52 | |
52 | |
|