Diff between 3b3c95f804085a0750c763bd994a6ed48cb88e7e and 0819e1aafdbabf36ac2e45fa908b97523495a253

Changed Files

File Additions Deletions Status
configure.ac +4 -1 modified

Full Patch

diff --git a/configure.ac b/configure.ac
index 99ef7de..553aa84 100644
--- a/configure.ac
+++ b/configure.ac
@@ -155,7 +155,10 @@ AM_CONDITIONAL(UDEV, test "${enable_udev}" != "no")
 
 AM_CONDITIONAL(HID2HCI, test "${enable_tools}" != "no" &&
 		test "${enable_udev}" != "no" && test "${enable_usb}" != "no")
-AM_CONDITIONAL(CUPS, test "${enable_tools}" != "no")
+
+AC_ARG_ENABLE(cups, AC_HELP_STRING([--disable-cups],
+                [disable CUPS printer support]), [enable_cups=${enableval}])
+AM_CONDITIONAL(CUPS, test "${enable_cups}" != "no")
 
 AC_ARG_ENABLE(obex, AC_HELP_STRING([--disable-obex],
 		[disable OBEX profile support]), [enable_obex=${enableval}])