libid3tag: fix gperf generated function signature.

This commit is contained in:
Jerome Duval
2017-10-19 17:07:49 +02:00
parent 5166c7a668
commit fad2b6602c
2 changed files with 40 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ ID3v1 and the various versions of ID3v2."
HOMEPAGE="http://www.underbit.com/products/mad/"
COPYRIGHT="2000-2004 Underbit Technologies, Inc."
LICENSE="GNU GPL v2"
REVISION="5"
REVISION="6"
SOURCE_URI="ftp://ftp.mars.org/pub/mpeg/libid3tag-$portVersion.tar.gz"
CHECKSUM_SHA256="63da4f6e7997278f8a3fef4c6a372d342f705051d1eeb6a46a86b03610e26151"
PATCHES="libid3tag-$portVersion.patchset"

View File

@@ -1,4 +1,4 @@
From e862dbaf6c43a65bd7ea7c1ff9c07939ab6e7fb3 Mon Sep 17 00:00:00 2001
From 7118c9742593178e191a26d6dd7121abaf154de6 Mon Sep 17 00:00:00 2001
From: Adrien Destugues <pulkomandy@pulkomandy.tk>
Date: Sun, 30 Mar 2014 13:20:55 +0200
Subject: AM_CONFIG_HEADER > AC_CONFIG_HEADER
@@ -18,10 +18,10 @@ index a0a0237..a754f06 100644
dnl System type.
--
2.7.0
2.14.2
From 1961200ab30344b03e6067dd1082e23caf0812ca Mon Sep 17 00:00:00 2001
From 54bca829d24698e44a21dfc71d66487ee6950da6 Mon Sep 17 00:00:00 2001
From: begasus <begasus@gmail.com>
Date: Sun, 9 Jul 2017 18:29:40 +0200
Subject: libid3tag, fix missing pkg-config file
@@ -79,5 +79,40 @@ index 0000000..2d98ddd
+Libs: -L${libdir} -lid3tag -lz
+Cflags: -I${includedir}
--
2.7.0
2.14.2
From 8b40bee47121b92ba9c046cc4851b1dea6f3bcb5 Mon Sep 17 00:00:00 2001
From: Jerome Duval <jerome.duval@gmail.com>
Date: Wed, 18 Oct 2017 22:57:33 +0200
Subject: fix size type for gperf.
diff --git a/compat.h b/compat.h
index 8af71ec..b3d80d9 100644
--- a/compat.h
+++ b/compat.h
@@ -34,7 +34,7 @@ struct id3_compat {
};
struct id3_compat const *id3_compat_lookup(register char const *,
- register unsigned int);
+ register size_t);
int id3_compat_fixup(struct id3_tag *);
diff --git a/frametype.h b/frametype.h
index dd064b2..b5b7593 100644
--- a/frametype.h
+++ b/frametype.h
@@ -37,6 +37,6 @@ extern struct id3_frametype const id3_frametype_unknown;
extern struct id3_frametype const id3_frametype_obsolete;
struct id3_frametype const *id3_frametype_lookup(register char const *,
- register unsigned int);
+ register size_t);
# endif
--
2.14.2