1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| diff --git a/configure.ac b/configure.ac
| index bfeffcc..08f68f2 100644
| --- a/configure.ac
| +++ b/configure.ac
| @@ -95,8 +95,8 @@ AC_ARG_ENABLE([aplay],
| AM_CONDITIONAL([ENABLE_APLAY], [test "x$enable_aplay" != "xno"])
|
| AC_ARG_ENABLE([rfcomm],
| - [AS_HELP_STRING([--enable-rfcomm], [enable building of bluealsa-rfcomm tool])])
| -AM_CONDITIONAL([ENABLE_RFCOMM], [test "x$enable_rfcomm" = "xyes"])
| + [AS_HELP_STRING([--disable-rfcomm], [disable building of bluealsa-rfcomm tool])])
| +AM_CONDITIONAL([ENABLE_RFCOMM], [test "x$enable_rfcomm" != "xno"])
|
| AC_ARG_ENABLE([hcitop],
| [AS_HELP_STRING([--enable-hcitop], [enable building of hcitop tool])])
| --
| 2.17.1
|
|