| Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions |  | 
You may need to be root, depending on the permissions of the directories where you choose to install TQt.
    cd /usr/local
    gunzip qt-x11-version.tar.gz    # uncompress the archive
    tar xf qt-x11-version.tar       # unpack it
 
This creates the directory /usr/local/qt-version containing the files from the main archive.
Rename qt-version to qt (or make a symlink):
    mv qt-version qt
 
The rest of this file assumes that TQt is installed in /usr/local/qt.
This is done like this:
In .profile (if your shell is bash, ksh, zsh or sh), add the following lines:
    TQTDIR=/usr/local/qt
    PATH=$TQTDIR/bin:$PATH
    MANPATH=$TQTDIR/man:$MANPATH
    LD_LIBRARY_PATH=$TQTDIR/lib:$LD_LIBRARY_PATH
    export TQTDIR PATH MANPATH LD_LIBRARY_PATH
 
In .login (in case your shell is csh or tcsh), add the following lines:
    setenv TQTDIR /usr/local/qt
    setenv PATH $TQTDIR/bin:$PATH
    setenv MANPATH $TQTDIR/man:$MANPATH
    setenv LD_LIBRARY_PATH $TQTDIR/lib:$LD_LIBRARY_PATH
 
After you have done this, you will need to login again, or re-source the profile before continuing, so that at least $TQTDIR is set. The installation will give an error message and not proceed otherwise.
On AIX set LIBPATH and on HP-UX set SHLIB_PATH instead of LD_LIBRARY_PATH.
Note that the SGI MIPSpro o32 and Sun WorkShop 5.0 targets are no longer supported as of TQt 3.3.
Type:
    ./configure
 
This will configure the TQt library for your machine. Note that GIF support is turned off by default. Run ./configure -help to get a list of configuration options. Read PLATFORMS for a list of supported platforms.
To create the library and compile all examples and the tutorial:
    make
 
If you have problems, see
http://www.trolltech.com/platforms/.
If you have problems running the example programs, e.g. messages like
    can't load library 'libtqt.so.2'
 
you probably need to put a reference to the qt library in a
configuration file and run /sbin/ldconfig as root on your system.
And don't forget to set LD_LIBRARY_PATH as explained in 2) above.
You're done. TQt is now installed.
| Copyright © 2007 Trolltech | Trademarks | TQt 3.3.8 |