summaryrefslogtreecommitdiff
path: root/graphics
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
commit7da673a4ee4880a20fc4f5f882ac24bf531c82ef (patch)
tree9477321431525382cd10895b108338219e526678 /graphics
parent9ed708cad5d5bd04f7403c053dd6e097b8c27745 (diff)
downloadpkgsrc-7da673a4ee4880a20fc4f5f882ac24bf531c82ef.tar.gz
Pointers have no sign.
Diffstat (limited to 'graphics')
-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;
+ }