Click to See Complete Forum and Search --> : os X on linux?


hinkbot
02-19-2003, 10:43 PM
i'm trying to give my KDE an os X feel to it. so far i have downloaded liquid (which is up and running) and white-acqua. i'm trying to set up the window decoration and i ./configure, then do make.

i get the following error

#error "This file was generated using the moc from 3.1.1. It cannot be used with the include files from this version of qt"

now i am thinking i need Qt3.1.1 but i can't find it anywhere. i dont think it exists.

i'm using RedHat 7.3. any help would be appreciated.

hop-frog
02-20-2003, 08:00 PM
to check your version of Qt run:
qtconfig
and look under:
help ==> version
then open up your favorite browser and head over to:
http://rpmfind.net/linux/RPM/
type in:
qt
and download the file, you probably should get:
ftp://rpmfind.net/linux/rawhide/1.0/i386/RedHat/RPMS/qt-3.1.1-6.i386.rpm
then type in:
qt3-devel-tools, qt3-extensions, qt3-man, qt3-mysql, qt3-postgresql, qt3-unixODBC, libqt3, etc. to get all of the rest of the files that you need.
then use rpm -Uvv *.rpm on the files to install them.

zagiboy
02-24-2003, 10:28 PM
You need to regenerate the moc files. Find each directory with moc files in them and run:

rm *.moc
for i in *.h; do moc -o `basename $i .h`.moc $i; done