Commit 36425318 authored by Bernd Eckenfels's avatar Bernd Eckenfels

Bluetooth name fix

parent f6baf958
...@@ -59,7 +59,7 @@ bool 'X.25 (CCITT) protocol family' HAVE_AFX25 y ...@@ -59,7 +59,7 @@ bool 'X.25 (CCITT) protocol family' HAVE_AFX25 y
bool 'Econet protocol family' HAVE_AFECONET y bool 'Econet protocol family' HAVE_AFECONET y
bool 'DECnet protocol family' HAVE_AFDECnet n bool 'DECnet protocol family' HAVE_AFDECnet n
bool 'Ash protocol family' HAVE_AFASH y bool 'Ash protocol family' HAVE_AFASH y
bool 'Bluetooth protocol family' HAVE_BLUETOOTH y bool 'Bluetooth protocol family' HAVE_AFBLUETOOTH n
* *
* *
* Device Hardware types. * Device Hardware types.
......
...@@ -183,6 +183,12 @@ static char *Features = ...@@ -183,6 +183,12 @@ static char *Features =
"-" "-"
#endif #endif
"ROSE " "ROSE "
#if HAVE_AFBLUETOOTH
"+"
#else
"-"
#endif
"BLUETOOTH"
"\nHW: " "\nHW: "
......
...@@ -99,7 +99,7 @@ ...@@ -99,7 +99,7 @@
#include "util.h" #include "util.h"
#include "proc.h" #include "proc.h"
#if HAVE_BLUETOOTH #if HAVE_AFBLUETOOTH
#include <bluetooth/bluetooth.h> #include <bluetooth/bluetooth.h>
#endif #endif
...@@ -1617,7 +1617,7 @@ static int ipx_info(void) ...@@ -1617,7 +1617,7 @@ static int ipx_info(void)
} }
#endif #endif
#if HAVE_BLUETOOTH #if HAVE_AFBLUETOOTH
const char *bluetooth_state(int state) const char *bluetooth_state(int state)
{ {
switch (state) { switch (state) {
...@@ -2214,7 +2214,7 @@ int main ...@@ -2214,7 +2214,7 @@ int main
} }
if (!flag_arg || flag_l2cap || flag_rfcomm) { if (!flag_arg || flag_l2cap || flag_rfcomm) {
#if HAVE_BLUETOOTH #if HAVE_AFBLUETOOTH
printf(_("Active Bluetooth connections ")); /* xxx */ printf(_("Active Bluetooth connections ")); /* xxx */
if (flag_all) if (flag_all)
...@@ -2233,7 +2233,7 @@ int main ...@@ -2233,7 +2233,7 @@ int main
} }
#endif #endif
} }
#if HAVE_BLUETOOTH #if HAVE_AFBLUETOOTH
if (!flag_arg || flag_l2cap) { if (!flag_arg || flag_l2cap) {
i = l2cap_info(); i = l2cap_info();
if (i) if (i)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment