diff options
author | joerg <joerg@pkgsrc.org> | 2006-08-22 15:19:44 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-08-22 15:19:44 +0000 |
commit | 2bcb7e1908784070a13a0d13ca720e5d87e57865 (patch) | |
tree | d10d7f7e923ae6dd93ccb3bfda135c1c8e8336ce /graphics/zphoto | |
parent | 57b9021ef818e18de5cb27285d0a6d15146d7e59 (diff) | |
download | pkgsrc-2bcb7e1908784070a13a0d13ca720e5d87e57865.tar.gz |
vasprintf exists on DragonFly as well.
Diffstat (limited to 'graphics/zphoto')
-rw-r--r-- | graphics/zphoto/distinfo | 3 | ||||
-rw-r--r-- | graphics/zphoto/patches/patch-ab | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/graphics/zphoto/distinfo b/graphics/zphoto/distinfo index 54762bf5a7f..578378624be 100644 --- a/graphics/zphoto/distinfo +++ b/graphics/zphoto/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.1.1.1 2006/08/12 16:20:35 xtraeme Exp $ +$NetBSD: distinfo,v 1.2 2006/08/22 15:19:44 joerg Exp $ SHA1 (zphoto-1.2.tar.gz) = 2d45c5df2f2a00db0d8170f18ea5ed399fb9d611 RMD160 (zphoto-1.2.tar.gz) = 54a93da3c8303ebbf9c505891e9fa8fb32bd6a64 Size (zphoto-1.2.tar.gz) = 414079 bytes SHA1 (patch-aa) = 4c15d45ecfbefadc4b9b2195e00d005e3ed2a936 +SHA1 (patch-ab) = d365aeba430374b3ba6b4f1f88731f3b809fca31 diff --git a/graphics/zphoto/patches/patch-ab b/graphics/zphoto/patches/patch-ab new file mode 100644 index 00000000000..93e95092a12 --- /dev/null +++ b/graphics/zphoto/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2006/08/22 15:19:45 joerg Exp $ + +--- util.c.orig 2006-08-22 17:20:22.000000000 +0000 ++++ util.c +@@ -79,7 +79,7 @@ zphoto_wprintf (const char *fmt, ...) + va_end(args); + } + +-#if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) ++#if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) + /* + * They have the declaration of vasprintf in stdio.h + */ |