8307fd0132
When the target toolchain does not support C++, the provided libcdaudio configure script tries to run a check with the C++ pre-processor provided by the host (/lib/cpp) which may not exist on some systems. This issue is fixed by autoreconfiguring the package, as newly generated configure scripts do not have this issue. Fixes: http://autobuild.buildroot.net/results/f725a41ef992c42ceef7514d1a8dcac99e6b9114/ Signed-off-by: Peter Seiderer <ps.report@gmx.net> Acked-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
585 B
Makefile
18 lines
585 B
Makefile
################################################################################
|
|
#
|
|
# libcdaudio
|
|
#
|
|
################################################################################
|
|
|
|
LIBCDAUDIO_VERSION = 0.99.12p2
|
|
LIBCDAUDIO_SITE = http://downloads.sourceforge.net/project/libcdaudio/libcdaudio/$(LIBCDAUDIO_VERSION)
|
|
LIBCDAUDIO_INSTALL_STAGING = YES
|
|
LIBCDAUDIO_CONFIG_SCRIPTS = libcdaudio-config
|
|
LIBCDAUDIO_LICENSE = GPL-2.0+
|
|
LIBCDAUDIO_LICENSE_FILES = COPYING
|
|
|
|
# fix configure failure when the toolchain doesn't have C++ support
|
|
LIBCDAUDIO_AUTORECONF = YES
|
|
|
|
$(eval $(autotools-package))
|