-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix 547 0.27 #1210
Fix 547 0.27 #1210
Conversation
… as we seem to be working with python2.7
Codecov Report
@@ Coverage Diff @@
## 0.27-maintenance #1210 +/- ##
=================================================
Coverage 63.47% 63.48%
=================================================
Files 159 159
Lines 22877 22882 +5
=================================================
+ Hits 14522 14526 +4
- Misses 8355 8356 +1
Continue to review full report at Codecov.
|
Hi Robin. It seems the modifications you are doing in the file
|
That's exactly what's wrong. I'm trying to understand the man page for zypper. If we build with C++98, we must use GTest 1.8 (as I have documented in #575). |
I'm installing an OpenSUSE VM. I need to run the command |
It should be |
I installed openSUSE-Leap and he offered gtest=1.8.0-lp151.2.3 I've installed openSUSE-Tumbleweed. He's only offering 1.10
Looks like the curl/tar dance is the way to go for CPP/98 on v0.27. We shouldn't port the CI changes to v0.28. We should not port the changes to image.cpp to v0.28. I'll open a new issue about this for v0.28. |
I'm not going to wait for AppVeyor to build on Windows. I've tested that on the Mac-mini. |
Fix: #547
The
-pR
option is only provided in debug builds to assist users in debugging files and cannot be called on production builds.This fix uses a thread unsafe static and should not be ported to v0.28. We could
Either: modify the API of printIFDStructure() to include
std::set<long>& visits
Or: have the
std::set<long> visits
in the Image class.I cannot use either choice in v0.27.3 because
printIFDStructure()
and the Image class are exposed in the Exiv2 dynamic library. Changing will break DLL swap/compatibility.