Patch #724
Avoid undefined symbol warnings on GCC linux
Start date:
28 Aug 2010
Due date:
% Done:
100%
Estimated time:
Description
Currently GCC on linux complains about the undefined symbol _MSC_VER. The attached patch resolves this problem. I do not have compiled exiv2 on windows. So a check that functionality there isn't broken now is required.
Files
Associated revisions
History
Updated by Andreas Huggel about 11 years ago
I think what we mean is
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
...
Updated by Andreas Huggel about 11 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
#724: Avoid warning if _MSC_VER is not defined.