summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2013-10-15Release 5.10Marcel Holtmann1-1/+1
2013-10-04build: Add skeleton for BlueZ AndroidFrederic Danis1-0/+5
Retrieve Bluetooth version from configure.ac.
2013-09-16Release 5.9Marcel Holtmann1-1/+1
2013-09-09build: Check for clock_gettime with -lrtMarcel Holtmann1-1/+1
2013-09-02build: Check for clock_gettime and pthread_createMarcel Holtmann1-0/+6
2013-08-28build: Remove all checks for USB library supportMarcel Holtmann1-11/+1
2013-08-28build: Remove extra checks for libusb usage of bccmdMarcel Holtmann1-9/+0
2013-08-07Release 5.8Marcel Holtmann1-1/+1
2013-06-26Release 5.7Marcel Holtmann1-1/+1
2013-06-19Release 5.6Marcel Holtmann1-1/+1
2013-06-13build: Fix generating bluetoothd manpageSzymon Janc1-0/+1
CONFIGDIR was not properly substituted in bluetoothd.8 manpage.
2013-06-01configure.ac: Fix typos sytemd -> systemdSzymon Janc1-2/+2
2013-05-14Release 5.5Marcel Holtmann1-1/+1
2013-04-10Release 5.4Marcel Holtmann1-1/+1
2013-02-23Release 5.3Marcel Holtmann1-1/+1
2013-02-23configure.ac: call AC_SUBST(*_CFLAGS) and AC_SUBST(*_LIBS) only when neededAntonio Ospite1-4/+4
Bring AC_SUBST(*_CFLAGS) and AC_SUBST(*_LIBS) in the same block of the corresponding PKG_CHECK_MODULES() call. Having these variables defined outside of the if tests is more than what is needed as the corresponding PKG_CHECK_MODULES() might not have been called at all there. This is the same logic already used for USB_CFLAGS and USB_LIBS.
2013-02-23configure.ac: call AC_SUBST unconditionally with --with-* optionsAntonio Ospite1-6/+6
Call AC_SUBST unconditionally when specifying --with-* options, otherwise options like --with-dbusconfdir=DIR or --with-udevdir=DIR have no effect. Before this change, configuring with: $ mkdir build $ ./configure --disable-systemd \ --prefix=$(pwd)/build \ --with-dbusconfdir=$(pwd)/build/etc resulted in the option value to be ignored at "make install" time, with this error: /bin/mkdir: cannot create directory '/dbus-1/system.d': Permission denied This is what was going on in configure.ac: # define the option AC_ARG_WITH([dbusconfdir] ... [path_dbusconfdir=${withval}]) # when --with-dbusconfdir is NOT used if (test -z "${path_dbusconfdir}"); then ... # define the config dir automatically path_dbusconfdir="`$PKG_CONFIG --variable=sysconfdir dbus-1`" ... # set DBUS_CONFDIR AC_SUBST(DBUS_CONFDIR, [${path_dbusconfdir}]) endif when --with-dbusconfdir=SOMEDIR was used the test above failed, and the result was that ${path_dbusconfdir} was indeed defined as manually specified, but DBUS_CONFDIR was not, and the latter was going to be used in Makefile.am: dbusdir = @DBUS_CONFDIR@/dbus-1/system.d The failure in mkdir can be exposed by the use of the "--prefix" option and by running "make install" as a normal user; when running "make install" with the root user /dbus-1/system.d would be happily (and wrongly) created. By always setting variables relative to --with-* options (like DBUS_CONFDIR) the cases when --with-someoption=SOMEDIR are used get covered.
2013-02-02Release 5.2Marcel Holtmann1-1/+1
2013-01-11Release 5.1Marcel Holtmann1-1/+1
2013-01-03build: Do not use deprecated AM_CONFIG_HEADERLucas De Marchi1-1/+1
The long-obsoleted AM_CONFIG_HEADER macro was removed in automake 1.13. Use AC_CONFIG_HEADERS instead.
2012-12-24Release 5.0Marcel Holtmann1-1/+1
2012-12-19build: Move bluez.pc into the library directoryMarcel Holtmann1-1/+1
2012-12-19build: Remove left-overs from broken attempt in adding gtk-doc supportMarcel Holtmann1-1/+1
2012-12-18build: Fix typo with D-Bus system service directory checkMarcel Holtmann1-1/+1
2012-12-18build: Check for D-Bus session services directoryMarcel Holtmann1-0/+13
2012-12-12build: Add configure option to disable the monitor utilityMarcel Holtmann1-0/+4
2012-12-11build: Support building client without tools enabledMarcel Holtmann1-10/+7
2012-12-11build: Add option for D-Bus system bus services directoryMarcel Holtmann1-0/+13
2012-12-11build: Start building xz compressed packages by defaultMarcel Holtmann1-1/+2
2012-12-11build: Use AC_PROG_MKDIR_P instead of AM_PROG_MKDIR_PMarcel Holtmann1-1/+1
2012-12-11build: Include directory errors within square bracketsMarcel Holtmann1-3/+3
2012-12-11build: Use better configuration option for D-Bus config directoryMarcel Holtmann1-18/+11
2012-12-11build: Cleanup of systemd unit directory optionsMarcel Holtmann1-7/+7
2012-12-11build: Add option for providing the udev directoryMarcel Holtmann1-12/+12
2012-12-11build: Handle systemd system and user unit directoriesMarcel Holtmann1-9/+32
2012-12-11build: Add configure option for disabling CUPS supportMarcel Holtmann1-1/+4
2012-12-11build: Enable tools compilation and installation by defaultMarcel Holtmann1-8/+8
2012-12-11build: Add skeleton for command line clientMarcel Holtmann1-0/+5
2012-12-11build: Fix issue with tools dependenciesMarcel Holtmann1-5/+5
2012-12-10build: Do not install libbluetooth by defaultMarcel Holtmann1-0/+4
2012-12-10build: Add support for building Phonebook Access profileMarcel Holtmann1-0/+10
2012-12-10build: Fix typo in udev configure statementMarcel Holtmann1-3/+2
2012-12-10build: Update configure option handlingMarcel Holtmann1-15/+150
2012-12-09build: Use libexecdir for Bluetooth daemonMarcel Holtmann1-1/+1
2012-12-09build: Remove dependency for check libraryMarcel Holtmann1-1/+0
2012-12-09build: Remove compat helper for ppollMarcel Holtmann1-2/+0
2012-12-05build-sys: Define _GNU_SOURCE in config.hLucas De Marchi1-0/+1
Instead of defining _GNU_SOURCE in each source file (and potentially forgetting in some), tell the build system we use extensions and let it define _GNU_SOURCE in config.h.
2012-11-09build: Remove option to build SBC supportMarcel Holtmann1-1/+0
2012-11-09build: Remove option to build GStreamer pluginMarcel Holtmann1-1/+0
2012-10-06build: Indicate 5.x development branchMarcel Holtmann1-1/+1