PDA

View Full Version : Export code typed each time to load SEQ?



Joemama
12-25-2001, 12:46 PM
So far 1 of 2 problems I have with the new SEQ that's only a minor one, is that every time I go to terminal to /usr/local/bin and ./showeq, I get the error:

./showeq: relocation error: ./showeq undefined symbol: _ZN2Qt9lightGrayE

In onder to get around this, every time I restart Linux or open a new terminal to start SEQ, I have to type in the lines:

export QTDIR=/usr/local/qt-2.3.2
export PATH=$QTDIR/bin:$PATH
export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH

Then SEQ will start as long as the terminal window I typed that in stays open.


Any thoughts?

deadhead5499
12-25-2001, 01:33 PM
I use Linux for a bunch of other things, so for each app I create a script to start them. It keeps my profile clean yet still provides the proper env. for the app.

Use VI or the editor of your choice and create a script ( I called mine varseq.sh)add the following:

export QTDIR=/usr/local/qt-2.3.2
export PATH=$QTDIR/bin:$PATH
export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH
showeq

then to start Seq type . ./varseq.sh

Hope it helps..