PDA

View Full Version : Latest seq code (oct 3) compile problems



high energy
10-03-2002, 04:10 PM
I haven't seen any threads on this, so I'm assuming this is new.

I cvs updated to the latest version of SEQ and tried to compile like I always did, but this time, I'm getting massive errors in m_spawnshell.cpp. It won't compile. So I downloaded the tar file and wehn I tried to compile it, I got the same errors.

I'm not familiar with make, I just follow the readme files and magically, things usually work. :)

The first of 100 so lines of errors in this file is:

private/qucomextra_p.h: No such file or directory.

Am I missing a new package I need to have installed? Nothing in the CHANGES file told me to install anything.

Cryonic
10-03-2002, 05:47 PM
looks like the build process for SEQ can't find files from qt-devel. You either missed a step or those files no longer exist on your system.

high energy
10-03-2002, 07:29 PM
You're right. I forgot to source my environments. Idiot here. <gets ready for that promised flame> :)

h0bbit
10-05-2002, 12:05 AM
mind posting what you did to fix it?

I have compiled many in the past, and just ran into the same error.

Nothing has changed on my system, it just sits...so I dunno what is different.

Help plz?

high energy
10-05-2002, 12:17 AM
Because the new build requires to compile with the QT libraries again, you need to make sure your environment variables are set.

export QTDIR=/opt/qt-gcc3-2.3.2
export PATH=$QTDIR/bin:$PATH
export MANPATH=$QTDIR/doc/man:$MANPATH
export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH
export CXX=g++3
export CC=gcc3
make -f Makefile.dist
./configure
make
make install

Yours may vary, but when you first installed it, you had to have these define. Define them again.