bluez/bootstrap-configure
Bastien Nocera 3597960595 build: Add a few default configure options
Add 3 optional features that are currently used and distributed in
the Fedora packages to the default build configuration.

The additional build time is minimal, and it ensures that the build
gets maximum coverage.
2019-05-13 20:22:23 +03:00

33 lines
631 B
Bash
Executable File

#!/bin/sh
if [ -f config.status ]; then
make maintainer-clean
fi
./bootstrap && \
./configure --enable-maintainer-mode \
--enable-debug \
--prefix=/usr \
--mandir=/usr/share/man \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-tools \
--enable-manpages \
--enable-backtrace \
--enable-testing \
--enable-experimental \
--enable-deprecated \
--enable-nfc \
--enable-sap \
--enable-health \
--enable-android \
--enable-sixaxis \
--enable-midi \
--enable-mesh \
--enable-btpclient \
--enable-logger \
--enable-pie \
--enable-cups \
--enable-library \
--disable-datafiles $*