Hi,
I am trying to compile makemkv on Centos 6.3. I downloaded the binary & source packages for version 1.7.9 and unpacked them. I have the Centos build tools installed. The binary file compiled OK.
When I try to compile the source file (makemkv-oss-1.7.9) I first got an error saying
"make: moc: Command not found".
I have qt47 installed, so I changed a line near the top of the make file from
MOC=$(strip $(shell which moc-qt4))
to
MOC=$(strip $(shell which moc-qt47))
which got rid of that error.
But now when I try to compile, I get another error
"/usr/bin/ld: cannot find -lQtGui"
I can see that QtGui is installed on my system
sudo find / -iname "*qtgui*"
/usr/include/QtGui
/usr/include/QtGui/QtGui
/usr/include/Qt/QtGui
/usr/lib64/qt47/libQtGui_debug.so
/usr/lib64/qt47/libQtGui.so
/usr/lib64/qt47/libQtGui.prl
/usr/lib64/qt47/libQtGui.so.4.7.2
/usr/lib64/qt47/libQtGui.so.4.7
/usr/lib64/qt47/libQtGui.so.4
/usr/lib64/pkgconfig/QtGui.pc
Can someone help with thos problem? I have searched this forum & google for this issue, but did not find an error.
Thanks in advance,
Steve