mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-17 01:04:40 +08:00
73 lines
1.0 KiB
Plaintext
73 lines
1.0 KiB
Plaintext
AC_PREREQ(2.60)
|
|
AC_INIT()
|
|
|
|
AM_INIT_AUTOMAKE(bluez, 4.43)
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
AC_INIT_BLUEZ
|
|
|
|
COMPILER_FLAGS
|
|
|
|
AC_LANG_C
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_CC_PIE
|
|
AC_PROG_INSTALL
|
|
AC_PROG_YACC
|
|
AM_PROG_LEX
|
|
|
|
m4_define([_LT_AC_TAGCONFIG], [])
|
|
m4_ifdef([AC_LIBTOOL_TAGS], [AC_LIBTOOL_TAGS([])])
|
|
|
|
AC_DISABLE_STATIC
|
|
AC_PROG_LIBTOOL
|
|
|
|
GTK_DOC_CHECK
|
|
|
|
AC_FUNC_PPOLL
|
|
|
|
AC_CHECK_LIB(dl, dlopen, dummy=yes,
|
|
AC_MSG_ERROR(dynamic linking loader is required))
|
|
|
|
AC_PATH_DBUS
|
|
AC_PATH_GLIB
|
|
AC_PATH_ALSA
|
|
AC_PATH_GSTREAMER
|
|
AC_PATH_USB
|
|
AC_PATH_NETLINK
|
|
AC_PATH_SNDFILE
|
|
|
|
AC_ARG_BLUEZ
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
include/Makefile
|
|
lib/Makefile
|
|
gdbus/Makefile
|
|
common/Makefile
|
|
sbc/Makefile
|
|
src/Makefile
|
|
test/Makefile
|
|
cups/Makefile
|
|
tools/Makefile
|
|
client/Makefile
|
|
rfcomm/Makefile
|
|
compat/Makefile
|
|
plugins/Makefile
|
|
network/Makefile
|
|
serial/Makefile
|
|
input/Makefile
|
|
audio/Makefile
|
|
scripts/Makefile
|
|
scripts/bluetooth.rules
|
|
doc/Makefile
|
|
doc/version.xml
|
|
src/bluetoothd.8
|
|
src/hcid.conf.5
|
|
bluez.pc
|
|
])
|