summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2012-12-11 01:37:52 +0100
committerMarcel Holtmann <marcel@holtmann.org>2012-12-11 01:37:52 +0100
commitd555301c5fc369c45cdc7c09a6de85f6f5f9e549 (patch)
treeed6f363659940f9f03c6eff9f21ccc5aba7da36e
parent9de5c526eb7e925d52b43e7a43acfd9a76bfa39c (diff)
downloadbluez-d555301c5fc369c45cdc7c09a6de85f6f5f9e549.tar.gz
build: Enable tools compilation and installation by default
-rwxr-xr-xbootstrap-configure2
-rw-r--r--configure.ac16
2 files changed, 8 insertions, 10 deletions
diff --git a/bootstrap-configure b/bootstrap-configure
index 9735856d0..a283ec547 100755
--- a/bootstrap-configure
+++ b/bootstrap-configure
@@ -15,7 +15,5 @@ fi
--mandir=/usr/share/man \
--sysconfdir=/etc \
--localstatedir=/var \
- --enable-test \
- --enable-tools \
--enable-experimental \
--disable-datafiles $*
diff --git a/configure.ac b/configure.ac
index cfead7f92..99ef7dea3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -97,13 +97,13 @@ AC_ARG_ENABLE(test, AC_HELP_STRING([--enable-test],
[enable test/example scripts]), [enable_test=${enableval}])
AM_CONDITIONAL(TEST, test "${enable_test}" = "yes")
-AC_ARG_ENABLE(tools, AC_HELP_STRING([--enable-tools],
- [enable testing tools]), [enable_tools=${enableval}])
-AM_CONDITIONAL(TOOLS, test "${enable_tools}" = "yes")
+AC_ARG_ENABLE(tools, AC_HELP_STRING([--disable-tools],
+ [disable Bluetooth tools]), [enable_tools=${enableval}])
+AM_CONDITIONAL(TOOLS, test "${enable_tools}" != "no")
AC_ARG_ENABLE(readline, AC_HELP_STRING([--disable-readline],
[disable readline support]), [enable_readline=${enableval}])
-if (test "${enable_tools}" = "yes" && test "${enable_readline}" != "no" ); then
+if (test "${enable_tools}" != "no" && test "${enable_readline}" != "no" ); then
AC_CHECK_HEADERS(readline/readline.h, dummy=yes,
AC_MSG_ERROR(readline header files are required))
fi
@@ -111,7 +111,7 @@ AM_CONDITIONAL(READLINE, test "${enable_readline}" != "no")
AC_ARG_ENABLE(usb, AC_HELP_STRING([--disable-usb],
[disable USB support]), [enable_usb=${enableval}])
-if (test "${enable_tools}" = "yes" && test "${enable_usb}" != "no" ); then
+if (test "${enable_tools}" != "no" && test "${enable_usb}" != "no" ); then
PKG_CHECK_MODULES(USB, libusb, dummy=yes,
AC_MSG_ERROR(USB library support is required))
AC_SUBST(USB_CFLAGS)
@@ -130,7 +130,7 @@ AM_CONDITIONAL(USB, test "${enable_usb}" != "no")
AC_ARG_ENABLE(udev, AC_HELP_STRING([--disable-udev],
[disable udev device support]), [enable_udev=${enableval}])
-if (test "${enable_tools}" = "yes" && test "${enable_udev}" != "no"); then
+if (test "${enable_tools}" != "no" && test "${enable_udev}" != "no"); then
PKG_CHECK_MODULES(UDEV, libudev >= 143, dummy=yes,
AC_MSG_ERROR(libudev >= 143 is required))
AC_CHECK_LIB(udev, udev_hwdb_new,
@@ -153,9 +153,9 @@ AC_SUBST(UDEV_CFLAGS)
AC_SUBST(UDEV_LIBS)
AM_CONDITIONAL(UDEV, test "${enable_udev}" != "no")
-AM_CONDITIONAL(HID2HCI, test "${enable_tools}" = "yes" &&
+AM_CONDITIONAL(HID2HCI, test "${enable_tools}" != "no" &&
test "${enable_udev}" != "no" && test "${enable_usb}" != "no")
-AM_CONDITIONAL(CUPS, test "${enable_tools}" = "yes")
+AM_CONDITIONAL(CUPS, test "${enable_tools}" != "no")
AC_ARG_ENABLE(obex, AC_HELP_STRING([--disable-obex],
[disable OBEX profile support]), [enable_obex=${enableval}])