diff options
author | joerg <joerg> | 2016-12-22 21:04:31 +0000 |
---|---|---|
committer | joerg <joerg> | 2016-12-22 21:04:31 +0000 |
commit | 69681f14f8426f8cc0ef1d5145903bc9d42b8b8c (patch) | |
tree | 9477321431525382cd10895b108338219e526678 /graphics | |
parent | 04a892f2ff6679ccad64bcdae76b47837a66886e (diff) | |
download | pkgsrc-69681f14f8426f8cc0ef1d5145903bc9d42b8b8c.tar.gz |
Pointers have no sign.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/exiv2/distinfo | 3 | ||||
-rw-r--r-- | graphics/exiv2/patches/patch-contrib_organize_helpers.cpp | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/graphics/exiv2/distinfo b/graphics/exiv2/distinfo index 49a7f9b7d06..b424bb82bdf 100644 --- a/graphics/exiv2/distinfo +++ b/graphics/exiv2/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.26 2015/11/03 21:33:56 agc Exp $ +$NetBSD: distinfo,v 1.27 2016/12/22 21:04:31 joerg Exp $ SHA1 (exiv2-0.25.tar.gz) = adb8ffe63916e7c27bda9792e690d1330ec7273d RMD160 (exiv2-0.25.tar.gz) = 2f43f8737dad9ffd7d5759ef4dd9688658125794 @@ -7,6 +7,7 @@ Size (exiv2-0.25.tar.gz) = 5434325 bytes SHA1 (patch-aa) = 947061d168d5db0d9969fa91ef837b364c641fcb SHA1 (patch-configure) = 39d6589dc82315d7a2bffeb332c21b6f54d69cf1 SHA1 (patch-contrib_organize_Makefile) = de74227211b79e49126178f27391831507c2948f +SHA1 (patch-contrib_organize_helpers.cpp) = ec003c826d463b3e7e571ab4c41baffaca1240e9 SHA1 (patch-src_Makefile) = 09c51b7da85584aece0147b446bff27ebc7f549f SHA1 (patch-src_http.cpp) = 75a64b80c37c54c0f65cc8455bd730ae01df0bae SHA1 (patch-src_svn_version.sh) = a80e142ab14ba4f5aad62936c5b5375d2a9b4b58 diff --git a/graphics/exiv2/patches/patch-contrib_organize_helpers.cpp b/graphics/exiv2/patches/patch-contrib_organize_helpers.cpp new file mode 100644 index 00000000000..e6172b326af --- /dev/null +++ b/graphics/exiv2/patches/patch-contrib_organize_helpers.cpp @@ -0,0 +1,15 @@ +$NetBSD: patch-contrib_organize_helpers.cpp,v 1.1 2016/12/22 21:04:31 joerg Exp $ + +Pointers have no sign. + +--- contrib/organize/helpers.cpp.orig 2016-12-22 14:15:48.253723125 +0000 ++++ contrib/organize/helpers.cpp +@@ -204,7 +204,7 @@ std::string iptc_day(const Exiv2::Image + bool file_get_tm(const fs::path &path, std::tm &tm) + { + std::time_t timer = fs::last_write_time(path); +- if(time > 0) { ++ if(time) { + tm = *localtime(&timer); + return true; + } |