2004-08-13 00:03:09 +08:00
|
|
|
AC_DEFUN([AC_PROG_CC_PIE], [
|
|
|
|
AC_CACHE_CHECK([whether ${CC-cc} accepts -fPIE], ac_cv_prog_cc_pie, [
|
|
|
|
echo 'void f(){}' > conftest.c
|
|
|
|
if test -z "`${CC-cc} -fPIE -pie -c conftest.c 2>&1`"; then
|
|
|
|
ac_cv_prog_cc_pie=yes
|
|
|
|
else
|
|
|
|
ac_cv_prog_cc_pie=no
|
|
|
|
fi
|
|
|
|
rm -rf conftest*
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([AC_INIT_BLUEZ], [
|
2005-10-30 06:36:31 +08:00
|
|
|
AC_PREFIX_DEFAULT(/usr/local)
|
2004-04-03 14:20:54 +08:00
|
|
|
|
2004-08-13 20:35:22 +08:00
|
|
|
if (test "${CFLAGS}" = ""); then
|
|
|
|
CFLAGS="-Wall -O2"
|
|
|
|
fi
|
2004-08-13 00:03:09 +08:00
|
|
|
|
2004-07-22 00:19:39 +08:00
|
|
|
if (test "${prefix}" = "NONE"); then
|
2004-04-03 14:20:54 +08:00
|
|
|
dnl no prefix and no sysconfdir, so default to /etc
|
2004-08-09 15:57:44 +08:00
|
|
|
if (test "$sysconfdir" = '${prefix}/etc'); then
|
2004-04-03 14:20:54 +08:00
|
|
|
AC_SUBST([sysconfdir], ['/etc'])
|
|
|
|
fi
|
|
|
|
|
2005-04-22 04:18:09 +08:00
|
|
|
dnl no prefix and no localstatedir, so default to /var
|
|
|
|
if (test "$localstatedir" = '${prefix}/var'); then
|
|
|
|
AC_SUBST([localstatedir], ['/var'])
|
|
|
|
fi
|
|
|
|
|
2004-04-03 14:20:54 +08:00
|
|
|
dnl no prefix and no mandir, so use ${prefix}/share/man as default
|
2004-08-09 15:57:44 +08:00
|
|
|
if (test "$mandir" = '${prefix}/man'); then
|
2004-04-03 14:20:54 +08:00
|
|
|
AC_SUBST([mandir], ['${prefix}/share/man'])
|
|
|
|
fi
|
2004-05-02 11:36:18 +08:00
|
|
|
|
2004-07-21 23:24:22 +08:00
|
|
|
prefix="${ac_default_prefix}"
|
2004-04-03 14:20:54 +08:00
|
|
|
fi
|
2004-07-23 02:20:30 +08:00
|
|
|
|
2004-08-09 15:57:44 +08:00
|
|
|
if (test "${libdir}" = '${exec_prefix}/lib'); then
|
2004-07-23 02:20:30 +08:00
|
|
|
libdir="${prefix}/lib"
|
|
|
|
fi
|
2004-08-09 15:57:44 +08:00
|
|
|
|
|
|
|
if (test "$sysconfdir" = '${prefix}/etc'); then
|
|
|
|
configdir="${prefix}/etc/bluetooth"
|
|
|
|
else
|
|
|
|
configdir="${sysconfdir}/bluetooth"
|
|
|
|
fi
|
|
|
|
|
2005-04-22 04:18:09 +08:00
|
|
|
if (test "$localstatedir" = '${prefix}/var'); then
|
|
|
|
storagedir="${prefix}/var/lib/bluetooth"
|
|
|
|
else
|
|
|
|
storagedir="${localstatedir}/lib/bluetooth"
|
|
|
|
fi
|
|
|
|
|
2004-08-09 15:57:44 +08:00
|
|
|
AC_DEFINE_UNQUOTED(CONFIGDIR, "${configdir}", [Directory for the configuration files])
|
2005-04-22 04:18:09 +08:00
|
|
|
AC_DEFINE_UNQUOTED(STORAGEDIR, "${storagedir}", [Directory for the storage files])
|
2004-04-03 14:20:54 +08:00
|
|
|
])
|
|
|
|
|
2004-07-15 00:52:07 +08:00
|
|
|
AC_DEFUN([AC_PATH_BLUEZ], [
|
2006-06-06 08:01:47 +08:00
|
|
|
PKG_CHECK_MODULES(BLUEZ, bluez, dummy=yes, AC_MSG_ERROR(Bluetooth library is required))
|
2004-07-21 23:24:22 +08:00
|
|
|
AC_SUBST(BLUEZ_CFLAGS)
|
2004-04-03 14:04:35 +08:00
|
|
|
AC_SUBST(BLUEZ_LIBS)
|
2002-03-09 05:12:35 +08:00
|
|
|
])
|
2004-04-03 16:01:04 +08:00
|
|
|
|
2005-09-10 09:23:19 +08:00
|
|
|
AC_DEFUN([AC_PATH_DBUS], [
|
2006-06-06 08:01:47 +08:00
|
|
|
PKG_CHECK_MODULES(DBUS, dbus-glib-1 > 0.35, dummy=yes, AC_MSG_ERROR(dbus-glib > 0.35 is required))
|
|
|
|
DBUS_CFLAGS="$DBUS_CFLAGS -DDBUS_API_SUBJECT_TO_CHANGE"
|
2005-09-10 09:23:19 +08:00
|
|
|
AC_SUBST(DBUS_CFLAGS)
|
|
|
|
AC_SUBST(DBUS_LIBS)
|
|
|
|
])
|
|
|
|
|
2006-04-28 23:11:18 +08:00
|
|
|
AC_DEFUN([AC_PATH_OPENOBEX], [
|
2006-06-06 08:01:47 +08:00
|
|
|
PKG_CHECK_MODULES(OPENOBEX, openobex > 1.1, openobex_found=yes, AC_MSG_RESULT(no))
|
2006-04-28 23:11:18 +08:00
|
|
|
AC_SUBST(OPENOBEX_CFLAGS)
|
|
|
|
AC_SUBST(OPENOBEX_LIBS)
|
|
|
|
])
|
|
|
|
|
2005-09-10 09:23:19 +08:00
|
|
|
AC_DEFUN([AC_PATH_FUSE], [
|
2006-06-06 08:01:47 +08:00
|
|
|
PKG_CHECK_MODULES(FUSE, fuse, fuse_found=yes, AC_MSG_RESULT(no))
|
2005-09-10 09:23:19 +08:00
|
|
|
AC_SUBST(FUSE_CFLAGS)
|
|
|
|
AC_SUBST(FUSE_LIBS)
|
|
|
|
])
|
|
|
|
|
2004-11-12 02:22:27 +08:00
|
|
|
AC_DEFUN([AC_PATH_ALSA], [
|
2006-06-06 08:01:47 +08:00
|
|
|
PKG_CHECK_MODULES(ALSA, alsa, alsa_found=yes, AC_MSG_RESULT(no))
|
2004-11-12 02:22:27 +08:00
|
|
|
AC_SUBST(ALSA_CFLAGS)
|
|
|
|
AC_SUBST(ALSA_LIBS)
|
|
|
|
])
|
|
|
|
|
2004-07-20 23:35:20 +08:00
|
|
|
AC_DEFUN([AC_PATH_USB], [
|
2006-06-06 08:01:47 +08:00
|
|
|
PKG_CHECK_MODULES(USB, libusb, usb_found=yes, AC_MSG_RESULT(no))
|
2004-07-21 23:24:22 +08:00
|
|
|
AC_SUBST(USB_CFLAGS)
|
2004-07-16 02:29:31 +08:00
|
|
|
AC_SUBST(USB_LIBS)
|
2006-06-06 08:01:47 +08:00
|
|
|
AC_CHECK_LIB(usb, usb_get_busses, dummy=yes, AC_DEFINE(NEED_USB_GET_BUSSES, 1, [Define to 1 if you need the usb_get_busses() function.]))
|
|
|
|
AC_CHECK_LIB(usb, usb_interrupt_read, dummy=yes, AC_DEFINE(NEED_USB_INTERRUPT_READ, 1, [Define to 1 if you need the usb_interrupt_read() function.]))
|
2004-07-16 02:29:31 +08:00
|
|
|
])
|
|
|
|
|
2004-08-13 00:03:09 +08:00
|
|
|
AC_DEFUN([AC_ARG_BLUEZ], [
|
2005-10-10 06:45:43 +08:00
|
|
|
fortify_enable=yes
|
2004-08-13 00:03:09 +08:00
|
|
|
debug_enable=no
|
2004-08-27 21:40:46 +08:00
|
|
|
pie_enable=no
|
2004-08-29 19:09:56 +08:00
|
|
|
obex_enable=${openobex_found}
|
2005-09-10 18:25:38 +08:00
|
|
|
fuse_enable=no
|
2004-11-12 02:22:27 +08:00
|
|
|
alsa_enable=no
|
2004-07-29 00:31:26 +08:00
|
|
|
test_enable=no
|
|
|
|
cups_enable=no
|
2004-08-12 20:47:37 +08:00
|
|
|
initscripts_enable=no
|
2005-11-07 05:00:58 +08:00
|
|
|
bccmd_enable=no
|
|
|
|
avctrl_enable=no
|
2004-07-29 00:31:26 +08:00
|
|
|
hid2hci_enable=${usb_found}
|
2005-04-22 05:53:11 +08:00
|
|
|
dfutool_enable=no
|
2004-07-29 00:31:26 +08:00
|
|
|
bcm203x_enable=no
|
|
|
|
|
2005-10-10 06:45:43 +08:00
|
|
|
AC_ARG_ENABLE(fortify, AC_HELP_STRING([--disable-fortify], [disable compile time buffer checks]), [
|
|
|
|
fortify_enable=${enableval}
|
|
|
|
])
|
|
|
|
|
2004-08-13 00:18:45 +08:00
|
|
|
AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [enable compiling with debugging information]), [
|
2004-08-13 00:03:09 +08:00
|
|
|
debug_enable=${enableval}
|
2004-08-13 00:18:45 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(pie, AC_HELP_STRING([--enable-pie], [enable position independent executables flag]), [
|
|
|
|
pie_enable=${enableval}
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(all, AC_HELP_STRING([--enable-all], [enable all extra options below]), [
|
2005-09-10 18:25:38 +08:00
|
|
|
dbus_enable=${enableval}
|
2004-08-29 19:09:56 +08:00
|
|
|
obex_enable=${enableval}
|
2005-09-10 18:25:38 +08:00
|
|
|
fuse_enable=${enableval}
|
2004-11-12 02:22:27 +08:00
|
|
|
alsa_enable=${enableval}
|
2004-07-27 22:08:43 +08:00
|
|
|
test_enable=${enableval}
|
|
|
|
cups_enable=${enableval}
|
2004-08-12 20:47:37 +08:00
|
|
|
initscripts_enable=${enableval}
|
2005-11-07 05:00:58 +08:00
|
|
|
bccmd_enable=${enableval}
|
2005-07-03 18:42:56 +08:00
|
|
|
avctrl_enable=${enableval}
|
2004-07-27 22:08:43 +08:00
|
|
|
hid2hci_enable=${enableval}
|
2005-04-22 05:53:11 +08:00
|
|
|
dfutool_enable=${enableval}
|
2004-07-27 22:08:43 +08:00
|
|
|
bcm203x_enable=${enableval}
|
|
|
|
])
|
|
|
|
|
2004-08-29 19:09:56 +08:00
|
|
|
AC_ARG_ENABLE(obex, AC_HELP_STRING([--enable-obex], [enable OBEX support]), [
|
|
|
|
obex_enable=${enableval}
|
|
|
|
])
|
|
|
|
|
2005-09-10 18:25:38 +08:00
|
|
|
AC_ARG_ENABLE(fuse, AC_HELP_STRING([--enable-fuse], [enable FUSE support]), [
|
|
|
|
fuse_enable=${enableval}
|
2004-11-12 02:22:27 +08:00
|
|
|
])
|
|
|
|
|
2005-09-10 18:25:38 +08:00
|
|
|
AC_ARG_ENABLE(alsa, AC_HELP_STRING([--enable-alsa], [enable ALSA support]), [
|
|
|
|
alsa_enable=${enableval}
|
2004-07-27 22:08:43 +08:00
|
|
|
])
|
2004-11-12 02:22:27 +08:00
|
|
|
|
2004-07-27 21:01:42 +08:00
|
|
|
AC_ARG_ENABLE(test, AC_HELP_STRING([--enable-test], [install test programs]), [
|
|
|
|
test_enable=${enableval}
|
2004-05-02 11:36:18 +08:00
|
|
|
])
|
|
|
|
|
2004-07-27 21:01:42 +08:00
|
|
|
AC_ARG_ENABLE(cups, AC_HELP_STRING([--enable-cups], [install CUPS backend support]), [
|
|
|
|
cups_enable=${enableval}
|
|
|
|
])
|
2004-11-12 02:22:27 +08:00
|
|
|
|
2004-08-12 20:47:37 +08:00
|
|
|
AC_ARG_ENABLE(initscripts, AC_HELP_STRING([--enable-initscripts], [install Bluetooth boot scripts]), [
|
|
|
|
initscripts_enable=${enableval}
|
|
|
|
])
|
|
|
|
|
2005-11-07 05:00:58 +08:00
|
|
|
AC_ARG_ENABLE(bccmd, AC_HELP_STRING([--enable-bccmd], [install BCCMD interface utility]), [
|
|
|
|
bccmd_enable=${enableval}
|
|
|
|
])
|
|
|
|
|
2005-07-03 18:42:56 +08:00
|
|
|
AC_ARG_ENABLE(avctrl, AC_HELP_STRING([--enable-avctrl], [install Audio/Video control utility]), [
|
|
|
|
avctrl_enable=${enableval}
|
2004-08-12 20:47:37 +08:00
|
|
|
])
|
|
|
|
|
2004-07-27 21:01:42 +08:00
|
|
|
AC_ARG_ENABLE(hid2hci, AC_HELP_STRING([--enable-hid2hci], [install HID mode switching utility]), [
|
|
|
|
hid2hci_enable=${enableval}
|
|
|
|
])
|
2004-05-02 11:36:18 +08:00
|
|
|
|
2005-04-22 05:53:11 +08:00
|
|
|
AC_ARG_ENABLE(dfutool, AC_HELP_STRING([--enable-dfutool], [install DFU firmware upgrade utility]), [
|
|
|
|
dfutool_enable=${enableval}
|
|
|
|
])
|
|
|
|
|
2004-07-27 21:01:42 +08:00
|
|
|
AC_ARG_ENABLE(bcm203x, AC_HELP_STRING([--enable-bcm203x], [install Broadcom 203x firmware loader]), [
|
|
|
|
bcm203x_enable=${enableval}
|
|
|
|
])
|
2004-05-02 11:36:18 +08:00
|
|
|
|
2005-10-10 06:45:43 +08:00
|
|
|
if (test "${fortify_enable}" = "yes"); then
|
|
|
|
CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
|
|
|
|
fi
|
|
|
|
|
2004-08-13 00:18:45 +08:00
|
|
|
if (test "${debug_enable}" = "yes" && test "${ac_cv_prog_cc_g}" = "yes"); then
|
|
|
|
CFLAGS="$CFLAGS -g"
|
|
|
|
fi
|
|
|
|
|
2004-08-13 00:03:09 +08:00
|
|
|
if (test "${pie_enable}" = "yes" && test "${ac_cv_prog_cc_pie}" = "yes"); then
|
|
|
|
CFLAGS="$CFLAGS -fPIE"
|
|
|
|
LDFLAGS="$LDFLAGS -pie"
|
|
|
|
fi
|
|
|
|
|
2004-08-29 19:09:56 +08:00
|
|
|
AM_CONDITIONAL(OBEX, test "${obex_enable}" = "yes" && test "${openobex_found}" = "yes")
|
2005-09-10 18:25:38 +08:00
|
|
|
AM_CONDITIONAL(FUSE, test "${fuse_enable}" = "yes" && test "${openobex_found}" = "yes" && test "${fuse_found}" = "yes")
|
2004-11-12 02:22:27 +08:00
|
|
|
AM_CONDITIONAL(ALSA, test "${alsa_enable}" = "yes" && test "${alsa_found}" = "yes")
|
2004-07-27 21:01:42 +08:00
|
|
|
AM_CONDITIONAL(TEST, test "${test_enable}" = "yes")
|
2004-07-21 23:24:22 +08:00
|
|
|
AM_CONDITIONAL(CUPS, test "${cups_enable}" = "yes")
|
2004-08-12 20:47:37 +08:00
|
|
|
AM_CONDITIONAL(INITSCRIPTS, test "${initscripts_enable}" = "yes")
|
2005-11-11 04:23:47 +08:00
|
|
|
AM_CONDITIONAL(BCCMD, test "${bccmd_enable}" = "yes" && test "${usb_found}" = "yes")
|
2005-07-03 18:42:56 +08:00
|
|
|
AM_CONDITIONAL(AVCTRL, test "${avctrl_enable}" = "yes" && test "${usb_found}" = "yes")
|
2004-07-27 22:23:55 +08:00
|
|
|
AM_CONDITIONAL(HID2HCI, test "${hid2hci_enable}" = "yes" && test "${usb_found}" = "yes")
|
2005-04-22 05:53:11 +08:00
|
|
|
AM_CONDITIONAL(DFUTOOL, test "${dfutool_enable}" = "yes" && test "${usb_found}" = "yes")
|
2004-07-27 22:23:55 +08:00
|
|
|
AM_CONDITIONAL(BCM203X, test "${bcm203x_enable}" = "yes" && test "${usb_found}" = "yes")
|
2004-05-02 11:36:18 +08:00
|
|
|
])
|