mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
According to libftdi configure.in:
"""
dnl libftdi C++ wrapper. Needs boost.
[...]
if test "x$HAVE_BOOST" != "xyes"; then
AC_MSG_ERROR(Sorry, we need the boost library for the C++ wrapper)
fi
"""
And indeed, if you enable BR2_PACKAGE_LIBTFDI_CPP but don't have Boost
enabled, the libfdipp library is not built. To fix this, this commit
changes BR2_PACKAGE_LIBTFDI_CPP to select Boost.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
730 B
Makefile
26 lines
730 B
Makefile
################################################################################
|
|
#
|
|
# libftdi
|
|
#
|
|
################################################################################
|
|
|
|
LIBFTDI_VERSION = 0.20
|
|
LIBFTDI_SITE = http://www.intra2net.com/en/developer/libftdi/download
|
|
LIBFTDI_DEPENDENCIES = libusb-compat libusb
|
|
LIBFTDI_INSTALL_STAGING = YES
|
|
LIBFTDI_CONFIG_SCRIPTS = libftdi-config
|
|
LIBFTDI_AUTORECONF = YES
|
|
|
|
LIBFDTI_CONF_OPTS = --without-examples
|
|
|
|
# configure detect it automaticaly so we need to force it
|
|
ifeq ($(BR2_PACKAGE_LIBTFDI_CPP),y)
|
|
LIBFTDI_DEPENDENCIES += boost
|
|
LIBFDTI_CONF_OPTS += --enable-libftdipp
|
|
else
|
|
LIBFDTI_CONF_OPTS += --disable-libftdipp
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|