jnsh
Results
32
comments of
jnsh
Looks like it's this change in exiv2 since 0.28.0 should be related: https://github.com/Exiv2/exiv2/commit/0bbaa6eff3c93dfc5242af4069ccff56f48ba5fb Maybe simply replacing `AutoPtr` with `UniquePtr` when compiling against newer exiv2 could be enough? I don't have...
This fixes the `defines.cpp` compilation with exiv2 0.28.1: ``` --- a/src/gl/defines.cpp +++ b/src/gl/defines.cpp @@ -103,7 +103,7 @@ void HaveDefines::printDefines() { void HaveDefines::addDefinesTo( const std::string &_path ) { #if defined(SUPPORT_EXIV2) -...