diff options
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -25,7 +25,7 @@ the directories where you choose to install Qt. depending on your shell) in your home directory. Create the file if it is not there already. - QTDIR - the directory in which you're building Qt + TQTDIR - the directory in which you're building Qt PATH - to locate the moc program and other TQt tools MANPATH - to access the TQt man pages LD_LIBRARY_PATH - for the shared TQt library @@ -41,22 +41,22 @@ the directories where you choose to install Qt. In .profile (if your shell is bash, ksh, zsh or sh), add the following lines: - QTDIR=/usr/local/qt - PATH=$QTDIR/bin:$PATH - MANPATH=$QTDIR/doc/man:$MANPATH - LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH + TQTDIR=/usr/local/qt + PATH=$TQTDIR/bin:$PATH + MANPATH=$TQTDIR/doc/man:$MANPATH + LD_LIBRARY_PATH=$TQTDIR/lib:$LD_LIBRARY_PATH - export QTDIR PATH MANPATH 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 QTDIR /usr/local/qt - setenv PATH $QTDIR/bin:$PATH - setenv MANPATH $QTDIR/doc/man:$MANPATH - setenv LD_LIBRARY_PATH $QTDIR/lib:$LD_LIBRARY_PATH + setenv TQTDIR /usr/local/qt + setenv PATH $TQTDIR/bin:$PATH + setenv MANPATH $TQTDIR/doc/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 $QTDIR + re-source the profile before continuing, so that at least $TQTDIR and $PATH are set. Without these the installation will halt with an error message. @@ -93,7 +93,7 @@ the directories where you choose to install Qt. information on known issues. - At this point you have binaries created in $QTDIR (eg. $QTDIR/lib/ + At this point you have binaries created in $TQTDIR (eg. $TQTDIR/lib/ contains libtqt.so). If, however, you would like to have your Qt installed in a non-local installation you can run configure with options splitting TQt into different areas for example: @@ -108,7 +108,7 @@ the directories where you choose to install Qt. This will install TQt onto your machine using the paths you've set. (See ./configure -help for more information). If you choose to install TQt like this, remember that you must set your - LD_LIBRARY_PATH to match your -libdir and your QTDIR to your + LD_LIBRARY_PATH to match your -libdir and your TQTDIR to your -headerdir (as described in (2) above). |