qt 2.3.2

Looks like lots of applications are still using the qt2.
I’ve just added a binary release of qt2.3.2 on openqnx site
under Armin’s “qt 2.3.2 + widgets” package catogary.

to install:
download “qt-2.3.2-1.qnx6-bin.tar.gz” and then
su
cd /
tar zxvf /qt-2.3.2-1.qnx6-bin.tar.gz

this should create a “/opt/X11R6/qt2” directory (which is
parallel to the /opt/X11R6/qt3 that was released earlier).

To use it, you need to add the following to your $HOME/.profile
so that qt2 executables and shared libs can be found.

QTDIR=/opt/X11R6/qt2
PATH=$QTDIR/bin:$PATH
LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH
export QTDIR PATH LD_LIBRARY_PATH

BTW, both qt2 and qt3 binaries were compiled with thread and opengl
support. Based on your applications, you should only need to
set environment for either qt2 or qt3 in your $HOME/.profile

Frank

At 12:41 31.03.02 -0500, Frank Liu wrote:

Looks like lots of applications are still using the qt2.
I’ve just added a binary release of qt2.3.2 on openqnx site
under Armin’s “qt 2.3.2 + widgets” package catogary.

Thanks Frank!


to install:
download “qt-2.3.2-1.qnx6-bin.tar.gz” and then
su
cd /
tar zxvf /qt-2.3.2-1.qnx6-bin.tar.gz

this should create a “/opt/X11R6/qt2” directory (which is
parallel to the /opt/X11R6/qt3 that was released earlier).

To use it, you need to add the following to your $HOME/.profile
so that qt2 executables and shared libs can be found.

QTDIR=/opt/X11R6/qt2
PATH=$QTDIR/bin:$PATH
LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH
export QTDIR PATH LD_LIBRARY_PATH

Don’t forget to copy the shared libs of qwt and qtai to the opt directory tree.

Armin