Probably a very stupid question, however google isn't helping. configure works fine, aside from dot
configure: WARNING: *** dot not found (part of Graphviz), class graphs will not be built
Make fails at the first hurdle though
(plusplus is actually ++, I get internal server error otherwise)
gplusplus -DHAVE_CONFIG_H -I..
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
-DDEFAULT_DICT_PATH=\"/usr/local/share/mxflib\"
-Wall -g -O2 -MT crypto.o -MD -MP -MF .deps/crypto.Tpo
-c -o crypto.o crypto.cpp
../mxflib/mxffile.h:207: error: extra qualification âmxflib::MXFFile::â on member âReWritePartitionâ
../mxflib/mxffile.h:216: error: extra qualification âmxflib::MXFFile::â on member âReWritePartitionWithIndexâ
There is an issue with a copy and paste error that adds class qualifiers in front of function declarations for a couple of methods in the class definition of MXFFile. This is generally considered harmless, but the latest version of gcc now complains about them.
The solution is to locate the offending lines in mxffile.h (roughly lines 205-220) and remove the redundant MXFFile:: qualifiers.
If you check-out the latest version of mxflib.h it has already been fixed.
Users browsing this forum: No registered users and 17 guests
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum