bluez-utils: Add patch to allow disabling of hal in configure

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2875 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2007-10-15 10:21:02 +00:00
parent bbcc43d1d8
commit c419af6b0a
2 changed files with 29 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
---
configure.in | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
Index: bluez-utils-3.18/configure.in
===================================================================
--- bluez-utils-3.18.orig/configure.in 2007-09-02 17:40:57.000000000 +0100
+++ bluez-utils-3.18/configure.in 2007-10-15 11:45:01.000000000 +0100
@@ -31,7 +31,16 @@ AC_PATH_ALSA
AC_PATH_GSTREAMER
AC_PATH_OPENOBEX
AC_PATH_OPENSYNC
-AC_PATH_HAL
+
+AC_DEFUN([AC_PATH_HAL], [
+ PKG_CHECK_MODULES(HAL, hal >= 0.5.8, hal_found=yes, hal_found=no)
+])
+
+AC_SUBST(HAL_CFLAGS)
+AC_SUBST(HAL_LIBS)
+
+AM_CONDITIONAL(HAL, test "${hal_enable}" = "yes" && test "${hal_found}" = "yes")
+
AC_PATH_USB
AC_PATH_EXPAT
AC_PATH_INOTIFY