From cb60fce5fc90715c147fbae91f27234c65011b77 Mon Sep 17 00:00:00 2001 From: Lukasz Rymanowski Date: Tue, 21 Jun 2011 11:14:44 +0200 Subject: [PATCH] Fix hid2hci compilation error Do not compile hid2hci if udev is not present. --- acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acinclude.m4 b/acinclude.m4 index d77937b56..10e648d53 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -400,7 +400,7 @@ AC_DEFUN([AC_ARG_BLUEZ], [ AM_CONDITIONAL(TOOLS, test "${tools_enable}" = "yes") AM_CONDITIONAL(BCCMD, test "${bccmd_enable}" = "yes") AM_CONDITIONAL(PCMCIA, test "${pcmcia_enable}" = "yes") - AM_CONDITIONAL(HID2HCI, test "${hid2hci_enable}" = "yes" && test "${usb_found}" = "yes") + AM_CONDITIONAL(HID2HCI, test "${hid2hci_enable}" = "yes" && test "${usb_found}" = "yes" && test "${udev_found}" = "yes") AM_CONDITIONAL(DFUTOOL, test "${dfutool_enable}" = "yes" && test "${usb_found}" = "yes") AM_CONDITIONAL(UDEVRULES, test "${udevrules_enable}" = "yes") AM_CONDITIONAL(CONFIGFILES, test "${configfiles_enable}" = "yes") -- 2.47.3