PDA

View Full Version : SUSE 7.3 - how i got it running



LordCrush
12-22-2001, 11:57 AM
Hi,

i am still a newbie to Linux so i might miss something.

This is the way i got it running with Suse 7.3:

i assume you had seq 3.x up and running.

download gcc 303 from
http://www.gnu.org/software/gcc/gcc.html
to a tmp dir

download qt-lib 2.3.2 from
ftp://ftp.trolltech.com/qt/source/qt-x11-2.3.2.tar.gz
to a tmp dir

unpack gcc :

# gunzip gcc-3.0.3.tar.gz
# tar -xf gcc-3.0.3.tar

compile gcc 3.03 :

# ./confiugre
# make
# make install

verify the gcc-version

# gcc --version

unpack qt-lib

# gunzip qt-x11-2.3.2.tar.gz
# tar -xf qt-x11-2.3.2.tar

look up current qt-dir
# echo $QTDIR
(normally /usr/lib/qt2)

save old qt-dir
# mv /usr/lib/qt2 /usr/lib/qt2.old

replace it with new dir

# mv (your tempdir)/qt.3.2.3 /usr/lib/qt2
# cd /usr/lib/qt2

compile the new qt lib
you can find further reference in the file INSTALL (# less INSTALL)

# ./configure -thread (for multithread support IMPORTANT)
# make

download seq4 and follow the normal procedure as described in the files INSTALL and INSTALL.newbies.

dont forget to put the correct libEQ.a to /usr/lib or /usr/local/lib

check the libEQ.a with the md5sum

# md5sum libEQ.a



I hope it helps a little bit :-)

greetings

- Lord Crush