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) (side-by-side diff)
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
@@ -12,49 +12,49 @@ compiled and linked against qt-x11.
That means you must download and configure/make it.
wget ftp://ftp.trolltech.com/qt/source/qt-x11-2.3.2.tar.gz
(Alternatively, you can get static binaries from http://www.vanille.de/tools)
The recommended version of Qt embedded is qt-embedded-2.3.7
You can get it from:
ftp://ftp.trolltech.com/qt/source/qt-embedded-2.3.7.tar.bz2
Set QTDIR to point to your qt/embedded source tree, such as:
export QTDIR=/opt/qt-2.3.7
You need to do set the OPIEDIR environment variable:
export OPIEDIR=`pwd`
or
export OPIEDIR=~/projects/sources/opie
or whereever you placed the Opie sources.
You need to adjust your runtime library search path,
so that the Qt/Embedded and Opie libraries can be found:
export LD_LIBRARY_PATH=$OPIEDIR/lib:$QTDIR/lib:$LD_LIBRARY_PATH
You have to apply the qte<version>-all.patch to the Qt/Embedded
sources and copy the qconfig-qpe.h file to $QTDIR/src/tools:
-cd $QTDIR; cat $OPIEDIR/qt/qte<version>-all.patch | patch -p1
+cd $QTDIR; cat $OPIEDIR/qt/qt-<version>.patch/qte<version>-all.patch | patch -p1
cp $OPIEDIR/qt/qconfig-qpe.h $QTDIR/src/tools
You are now ready to configure and build Qt/Embedded
cd $QTDIR
echo 'yes' | ./configure -qconfig qpe -depths 4,16,24,32 -system-jpeg -system-libpng -system-zlib -no-xkb -no-sm -no-xft -qvfb
make
Note that the above command ( -qvfb ) compiles in the Virtual
Framebuffer and is mostly meant for development on your host system.
For cross compiling, you will need to use the -xplatform switch.
See ./configure --help for details about the possible options.
Once you have these compiled, be sure to set the PATH to ensure your (cross)compiler
is available.
Then do the following in the opie source tree:
make clean
make menuconfig
Now you can move through the menu and select or deselect anything..
Exit and save the configuration and enter "make" to create opie...