summaryrefslogtreecommitdiff
path: root/graphics/exiv2
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2016-12-22 21:04:31 +0000
committerjoerg <joerg@pkgsrc.org>2016-12-22 21:04:31 +0000
commita6e779ab0ee2ad633c3eca31cc057da7774f2c81 (patch)
tree0310b673ac65473c4d931d16dd1b9270b3f2f3b9 /graphics/exiv2
parentd7a175d3f4880c5baa4ee170cc94716bcfc448e3 (diff)
downloadpkgsrc-a6e779ab0ee2ad633c3eca31cc057da7774f2c81.tar.gz
Pointers have no sign.
Diffstat (limited to 'graphics/exiv2')
-rw-r--r--graphics/exiv2/distinfo3
-rw-r--r--graphics/exiv2/patches/patch-contrib_organize_helpers.cpp15
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;
+ }