7ecd0e4edf
Since switch to debian in commit
210ccaef57
, host-gperf is needed to
generate frametype.c because debian/patches/add-m4-directory.patch
patches Makefile.am. As a side effect, libid3tag tries to generate
frametype.c from frametype.gperf due to following rule:
$(srcdir)/frametype.c: $(srcdir)/frametype.gperf Makefile.am
cd $(srcdir) && \
gperf -tCcTonD -K id -N id3_frametype_lookup -s -3 -k '*' \
frametype.gperf | \
sed -e 's/\(struct id3_frametype\);/\1/' | \
sed -e '/\$$''Id: /s/\$$//g' >frametype.c
If host-gperf is not available, frametype.c will be empty and build with
madplay will fail on:
configure:17243: checking for snd_pcm_open in -lasound
configure:17268: /home/giuliobenetti/autobuild/run/instance-3/output-1/host/bin/powerpc64-linux-gcc -o conftest -Wall -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 conftest.c -lasound -L/home/giuliobenetti/autobuild/run/instance-3/output-1/host/bin/../powerpc64-buildroot-linux-gnu/sysroot/usr/lib -lasound -L/home/giuliobenetti/autobuild/run/instance-3/output-1/host/bin/../powerpc64-buildroot-linux-gnu/sysroot/usr/lib -lid3tag >&5
/home/giuliobenetti/autobuild/run/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/powerpc64-buildroot-linux-gnu/8.3.0/../../../../powerpc64-buildroot-linux-gnu/bin/ld: /home/giuliobenetti/autobuild/run/instance-3/output-1/host/bin/../powerpc64-buildroot-linux-gnu/sysroot/usr/lib/libid3tag.so: undefined reference to `id3_frametype_lookup'
Fixes:
- http://autobuild.buildroot.org/results/15a8c7f6e34b26446179c04383719ea71495403e
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# libid3tag
|
|
#
|
|
################################################################################
|
|
|
|
LIBID3TAG_VERSION = 0.15.1b
|
|
LIBID3TAG_PATCH = libid3tag_$(LIBID3TAG_VERSION)-14.debian.tar.xz
|
|
LIBID3TAG_SOURCE = libid3tag_$(LIBID3TAG_VERSION).orig.tar.gz
|
|
LIBID3TAG_SITE = \
|
|
http://snapshot.debian.org/archive/debian/20190310T213528Z/pool/main/libi/libid3tag
|
|
LIBID3TAG_LICENSE = GPL-2.0+
|
|
LIBID3TAG_LICENSE_FILES = COPYING COPYRIGHT
|
|
LIBID3TAG_INSTALL_STAGING = YES
|
|
LIBID3TAG_DEPENDENCIES = host-gperf zlib
|
|
|
|
# debian/patches/10_utf16.dpatch
|
|
LIBID3TAG_IGNORE_CVES += CVE-2004-2779 CVE-2017-11551
|
|
|
|
# debian/patches/11_unknown_encoding.dpatch
|
|
LIBID3TAG_IGNORE_CVES += CVE-2017-11550
|
|
|
|
# Force autoreconf to be able to use a more recent libtool script, that
|
|
# is able to properly behave in the face of a missing C++ compiler.
|
|
LIBID3TAG_AUTORECONF = YES
|
|
|
|
define LIBID3TAG_INSTALL_STAGING_PC
|
|
$(INSTALL) -D package/libid3tag/id3tag.pc \
|
|
$(STAGING_DIR)/usr/lib/pkgconfig/id3tag.pc
|
|
endef
|
|
|
|
LIBID3TAG_POST_INSTALL_STAGING_HOOKS += LIBID3TAG_INSTALL_STAGING_PC
|
|
|
|
$(eval $(autotools-package))
|