diff options
author | minskim <minskim@pkgsrc.org> | 2005-05-09 13:21:16 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-05-09 13:21:16 +0000 |
commit | 0dd33cc58ba1b6f79419a20d886ea7f63095a6df (patch) | |
tree | 75691596a89eb46d4f520337f06f607eba566687 /graphics | |
parent | 48dd5ce95f9482bb3daa7c812402e2dad0b22a98 (diff) | |
download | pkgsrc-0dd33cc58ba1b6f79419a20d886ea7f63095a6df.tar.gz |
Declare a static function in .c, not in .h.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/libexif/distinfo | 4 | ||||
-rw-r--r-- | graphics/libexif/patches/patch-aa | 12 | ||||
-rw-r--r-- | graphics/libexif/patches/patch-ab | 14 |
3 files changed, 29 insertions, 1 deletions
diff --git a/graphics/libexif/distinfo b/graphics/libexif/distinfo index 88c732927cf..b66ba9c41e1 100644 --- a/graphics/libexif/distinfo +++ b/graphics/libexif/distinfo @@ -1,5 +1,7 @@ -$NetBSD: distinfo,v 1.13 2005/04/20 12:40:40 adam Exp $ +$NetBSD: distinfo,v 1.14 2005/05/09 13:21:16 minskim Exp $ SHA1 (libexif-0.6.12.tar.bz2) = 5d2c5976521e179d41ff8908b678b14f2e8e690b RMD160 (libexif-0.6.12.tar.bz2) = 24cfdb7663f0566f2907987e5dbc472c21b583d9 Size (libexif-0.6.12.tar.bz2) = 378650 bytes +SHA1 (patch-aa) = e32ab9cad1720f0b4d6178240e78193a97c4c876 +SHA1 (patch-ab) = 973ca09fc059d74e3221bba12e6e8f4630db20bb diff --git a/graphics/libexif/patches/patch-aa b/graphics/libexif/patches/patch-aa new file mode 100644 index 00000000000..58bfa75dec6 --- /dev/null +++ b/graphics/libexif/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.3 2005/05/09 13:21:16 minskim Exp $ + +--- libexif/exif-utils.h.orig 2005-03-12 20:27:13.000000000 -0600 ++++ libexif/exif-utils.h +@@ -45,7 +45,6 @@ typedef struct {ExifSLong numerator; Exi + + + ExifShort exif_get_short (const unsigned char *b, ExifByteOrder order); +-ExifSShort exif_get_sshort (const unsigned char *b, ExifByteOrder order); + ExifLong exif_get_long (const unsigned char *b, ExifByteOrder order); + ExifSLong exif_get_slong (const unsigned char *b, ExifByteOrder order); + ExifRational exif_get_rational (const unsigned char *b, ExifByteOrder order); diff --git a/graphics/libexif/patches/patch-ab b/graphics/libexif/patches/patch-ab new file mode 100644 index 00000000000..1744cc9b194 --- /dev/null +++ b/graphics/libexif/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.3 2005/05/09 13:21:16 minskim Exp $ + +--- libexif/exif-utils.c.orig 2005-03-12 20:27:13.000000000 -0600 ++++ libexif/exif-utils.c +@@ -22,6 +22,9 @@ + + #include <libexif/exif-utils.h> + ++static ExifSShort ++exif_get_sshort (const unsigned char *buf, ExifByteOrder order); ++ + void + exif_array_set_byte_order (ExifFormat f, unsigned char *b, unsigned int n, + ExifByteOrder o_orig, ExifByteOrder o_new) |