(Sorry for my Enligh)
When I try to compile the project, I get:
...
In file included from /tmp/xmp_toolkit/common/XMP_LibUtils.cpp:11:
/tmp/xmp_toolkit/common/XMP_LibUtils.hpp: In constructor ‘XMP_AutoMutex::XMP_AutoMutex(XMP_BasicMutex*)’:
/tmp/xmp_toolkit/common/XMP_LibUtils.hpp:179: error: ‘printf’ was not declared in this scope
/tmp/xmp_toolkit/common/XMP_LibUtils.hpp: In member function ‘void XMP_AutoMutex::Release()’:
/tmp/xmp_toolkit/common/XMP_LibUtils.hpp:181: error: ‘printf’ was not declared in this scope
I fixed it: add #include <stdio.h> to common/XMP_LibUtils.hpp
Then I try compile again, I get:
/tmp/xmp_toolkit/XMPFiles/FileHandlers/AVCHD_Handler.cpp:1426: error: ‘sprintf’ is not a member of ‘std’
/tmp/xmp_toolkit/XMPFiles/FileHandlers/AVCHD_Handler.cpp:1481: error: ‘sprintf’ is not a member of ‘std’
I fixed it by adding #include <cstdio> to XMPFiles/FileHandlers/AVCHD_Handler.cpp
After that I compiled project ...
Ubuntu 10.10
gcc version 4.4.5