From 8f7e9afb15d4dff8076bb46715f1e5f4f5c9b4f3 Mon Sep 17 00:00:00 2001 From: "matthias.ringwald" Date: Tue, 6 Jul 2010 16:37:46 +0000 Subject: [PATCH] include config.h to get HAVE_SDP --- src/hci_cmds.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/hci_cmds.c b/src/hci_cmds.c index ed9a8371d..0193b7d4e 100644 --- a/src/hci_cmds.c +++ b/src/hci_cmds.c @@ -36,10 +36,13 @@ */ #include -#include -#include "hci.h" + #include +#include +#include "config.h" +#include "hci.h" + // calculate combined ogf/ocf value #define OPCODE(ogf, ocf) (ocf | ogf << 10)