Go to file
Luiz Augusto von Dentz 99c6f52218 A2DP: Mark start flag if resume happen while in configured state
If SEP is in configured state that means OPEN is about to happen so just
mark start flag and send START once OPEN completes.
2013-02-22 11:14:33 +02:00
attrib device: Fix invalid memory access during Find Included 2013-01-29 15:57:36 -06:00
btio btio: Fix missing config.h includes 2012-12-23 18:59:41 -08:00
client client: Don't bother with individual Device ID properties 2012-12-29 22:41:33 -08:00
doc doc: Add short explanation for how to create mgmt sockets 2013-02-18 10:37:53 +02:00
emulator emulator: Fix BR/EDR-only and LE-only supported command checks 2013-01-31 21:47:22 -06:00
gdbus gdbus: Add g_dbus_proxy_set_removed_watch 2013-02-15 01:03:47 +01:00
gobex gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
lib lib: Validate DTDs when parsing VersionNumberList 2013-02-18 10:01:27 +02:00
monitor monitor: Add commands, events and features from CSA4 2013-02-12 21:23:32 +01:00
obexd obexd: Handle absolute paths in obc_session_setpath 2013-02-22 10:41:52 +02:00
plugins neard: Use more appropriate log levels than info() 2013-02-15 16:32:38 +02:00
profiles A2DP: Mark start flag if resume happen while in configured state 2013-02-22 11:14:33 +02:00
src adapter: Fix registering adapter with no address 2013-02-15 14:21:58 +02:00
test test: Add -p/--push option to map-client 2013-02-07 13:49:00 +02:00
tools tools: Add support for registering external player 2013-02-22 11:14:33 +02:00
unit unit: Add tests for sdp_get_server_ver() 2013-02-18 10:01:53 +02:00
.gitignore build: Remove leftover from .gitignore 2013-02-20 10:00:58 +02:00
.mailmap build: Fix Tedd's name matching to email address 2012-12-22 17:29:10 -08:00
acinclude.m4 build: Fix --disable-optimization configure option 2013-01-10 16:06:42 -08:00
AUTHORS AUTHORS: Mention Cristian's contributions 2012-12-23 19:02:44 -08:00
bootstrap Add --automake option 2006-08-18 19:41:53 +00:00
bootstrap-configure doc: Remove left-overs from gtk-doc attempt 2012-12-12 12:07:25 +01:00
ChangeLog Release 5.2 2013-02-02 01:41:17 +01:00
configure.ac Release 5.2 2013-02-02 01:41:17 +01:00
COPYING Remove new page characters 2008-08-14 22:56:25 +02:00
COPYING.LIB Remove new page characters 2008-08-14 22:56:25 +02:00
INSTALL Big cleanup of CVS relics 2005-10-29 19:25:42 +00:00
Makefile.am unit: Add initial SDP library unit tests 2013-02-18 09:55:03 +02:00
Makefile.obexd build: Add systemd integration for obexd 2012-12-18 22:00:01 +01:00
Makefile.plugins gas: Move all the code to only one file 2013-01-29 15:57:41 -06:00
Makefile.tools tools: btmgmt: Add initial stubs for converting to new mgmt API 2013-02-18 11:32:50 +02:00
NEWS Initial revision 2002-03-08 21:10:06 +00:00
README README: Fix minor typo 2012-12-23 19:05:07 -08:00
TODO TODO: Remove completed passive scanning entry 2013-01-31 13:44:41 -06:00

BlueZ - Bluetooth protocol stack for Linux
******************************************

Copyright (C) 2000-2001  Qualcomm Incorporated
Copyright (C) 2002-2003  Maxim Krasnyansky <maxk@qualcomm.com>
Copyright (C) 2002-2010  Marcel Holtmann <marcel@holtmann.org>


Compilation and installation
============================

In order to compile Bluetooth utilities you need following software packages:
	- GCC compiler
	- GLib library
	- D-Bus library
	- USB library (optional)
	- udev library (optional)
	- readline (command line clients)

To configure run:
	./configure --prefix=/usr --mandir=/usr/share/man \
				--sysconfdir=/etc --localstatedir=/var

Configure automatically searches for all required components and packages.

To compile and install run:
	make && make install


Configuration and options
=========================

For a working system, certain configuration options need to be enabled:

	--enable-library

		Enable installation of Bluetooth library

		By default the Bluetooth library is no longer installed.

		The user interfaces or command line utilities do not
		require an installed Bluetooth library anymore. This
		option is provided for legacy third party applications
		that still depend on the library.

		When the library installation is enabled, it is a good
		idea to use a separate bluez-library or libbluetooth
		package for it.

	--disable-tools

		Disable support for Bluetooth utilities

		By default the Bluetooth utilities are built and also
		installed. For production systems the tools are not
		needed and this option allows to disable them to save
		build time and disk space.

		When the tools are selected, it is a good idea to
		use a separate bluez-tools package for them.

	--disable-cups

		Disable support for CUPS printer backend

		By default the printer backend for CUPS is build and
		also installed. For systems that do not require printing
		over Bluetooth, this options allows to disable it.

		When the CUPS backend is selected, it is a good idea to
		use a separate bluez-cups package for it.

	--disable-monitor

		Disable support for the Bluetooth monitor utility

		By default the monitor utility is enabled. It provides
		support for HCI level tracing and debugging. For systems
		that don't require any kind of tracing or debugging
		capabilities, this options allows to disable it.

		The monitor utility should be placed in the main package
		along with the daemons. It is universally useful.

	--disable-client

		Disable support for the command line client

		By default the command line client is enabled and uses the
		readline library. For specific systems where BlueZ is
		configured by other means, the command line client can be
		disabled and the dependency on readline is removed.

		The client should be placed in the main package along
		with the daemons. It is universally useful.

	--disable-systemd

		Disable integration with systemd

		By default the integration with systemd is enabled and
		installed. This gives the best integration into all
		distributions based on systemd.

		This option is provided for distributions that do not
		support systemd. In that case all integration with the
		init system is up to the package.

	--enable-experimental

		Enable experimental plugins

		By default all plugins that are still in development
		are disabled. This option can be used to enable them.

		It is not recommended to enable this option for production
		systems. The APIs or behavior of the experimental plugins
		is unstable and might still change.


Information
===========

Mailing lists:
	linux-bluetooth@vger.kernel.org

For additional information about the project visit BlueZ web site:
	http://www.bluez.org