xbmc: force not checking for bluetooth libs via configure

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-02-19 16:25:50 +01:00
parent 687f9680a5
commit 022b64bf48
2 changed files with 1 additions and 27 deletions

View File

@ -308,6 +308,7 @@ export PYTHON_SITE_PKG="$SYSROOT_PREFIX/usr/lib/python$PYTHON_VERSION/site-packa
export ac_python_version="$PYTHON_VERSION"
PKG_CONFIGURE_OPTS_TARGET="gl_cv_func_gettimeofday_clobber=no \
ac_cv_lib_bluetooth_hci_devid=no \
--with-arch=$TARGET_ARCH \
--with-cpu=$TARGET_CPU \
--disable-debug \

View File

@ -1,27 +0,0 @@
From f7ac48e020e43df2c885c45b1b73caf1e4b56b90 Mon Sep 17 00:00:00 2001
From: Stefan Saraev <stefan@saraev.ca>
Date: Tue, 18 Feb 2014 19:08:18 +0200
Subject: [PATCH] dont check for libbluetooth. HAVE_LIBBLUETOOTH undefined is
fine
or bluetooth kernel modules will be loaded as soon as xbmc starts,
even if there is no bt hardware present.
---
configure.in | 1 -
1 file changed, 1 deletion(-)
diff --git a/configure.in b/configure.in
index 42dd00e..de12212 100644
--- a/configure.in
+++ b/configure.in
@@ -1144,7 +1144,6 @@ AC_CHECK_LIB([ssl], [main],, AC_MSG_ERROR($missing_library))
if test "$use_mysql" = "yes"; then
AC_CHECK_LIB([mysqlclient], [main],, AC_MSG_ERROR($missing_library))
fi
-AC_CHECK_LIB([bluetooth], [hci_devid],, AC_MSG_RESULT([Could not find suitable version of libbluetooth]))
AC_CHECK_LIB([yajl], [main],, AC_MSG_ERROR($missing_library))
AC_CHECK_LIB([tinyxml], [main],, AC_MSG_ERROR($missing_library))
if test "$target_platform" = "target_android" ; then
--
1.9.rc1