bluez/acinclude.m4

173 lines
4.2 KiB
Plaintext
Raw Normal View History

2004-04-03 14:04:35 +08:00
dnl
dnl $Id$
dnl
2002-03-09 05:12:35 +08:00
2004-04-03 14:20:54 +08:00
AC_DEFUN(AC_PREFIX_BLUEZ, [
AC_PREFIX_DEFAULT(/usr)
if test "$prefix" = "NONE"; then
dnl no prefix and no sysconfdir, so default to /etc
if test "$sysconfdir" = '${prefix}/etc'; then
AC_SUBST([sysconfdir], ['/etc'])
fi
dnl no prefix and no mandir, so use ${prefix}/share/man as default
if test "$mandir" = '${prefix}/man'; then
AC_SUBST([mandir], ['${prefix}/share/man'])
fi
2004-05-02 11:36:18 +08:00
bluez_prefix="$ac_default_prefix"
else
bluez_prefix="$prefix"
2004-04-03 14:20:54 +08:00
fi
])
2004-04-03 14:04:35 +08:00
AC_DEFUN(AC_PATH_BLUEZ, [
2004-04-03 14:20:54 +08:00
AC_ARG_WITH(bluez, [ --with-bluez=DIR BlueZ library is installed in DIR], [
2004-04-03 16:11:50 +08:00
if (test "$withval" = "yes"); then
2004-05-02 11:36:18 +08:00
bluez_includes=$bluez_prefix/include
bluez_libraries=$bluez_prefix/lib
2004-04-03 16:11:50 +08:00
else
bluez_includes=$withval/include
bluez_libraries=$withval/lib
fi
2004-04-03 14:20:54 +08:00
])
2004-04-03 14:04:35 +08:00
BLUEZ_INCLUDES=""
BLUEZ_LDFLAGS=""
BLUEZ_LIBS=""
2002-03-09 05:12:35 +08:00
2004-04-03 14:04:35 +08:00
ac_save_CFLAGS=$CFLAGS
test -n "$bluez_includes" && CFLAGS="$CFLAGS -I$bluez_includes"
2002-03-09 05:12:35 +08:00
2004-04-03 14:04:35 +08:00
ac_save_LDFLAGS=$LDFLAGS
test -n "$bluez_libraries" && LDFLAGS="$LDFLAGS -L$bluez_libraries"
2002-03-09 05:12:35 +08:00
2004-04-03 14:04:35 +08:00
AC_CHECK_HEADER(bluetooth/bluetooth.h,,
AC_MSG_ERROR(Bluetooth header files not found))
2002-03-09 05:12:35 +08:00
2004-04-03 14:04:35 +08:00
AC_CHECK_LIB(bluetooth, hci_open_dev,
BLUEZ_LIBS="$BLUEZ_LIBS -lbluetooth",
AC_MSG_ERROR(Bluetooth library not found))
2002-03-09 05:12:35 +08:00
2004-04-03 14:04:35 +08:00
AC_CHECK_LIB(sdp, sdp_connect,
BLUEZ_LIBS="$BLUEZ_LIBS -lsdp")
2002-03-09 05:12:35 +08:00
2004-04-03 14:04:35 +08:00
CFLAGS=$ac_save_CFLAGS
test -n "$bluez_includes" && BLUEZ_INCLUDES="-I$bluez_includes"
2004-04-03 14:04:35 +08:00
LDFLAGS=$ac_save_LDFLAGS
test -n "$bluez_libraries" && BLUEZ_LDFLAGS="-L$bluez_libraries"
test -n "$bluez_libraries" && BLUEZ_LIBS="-L$bluez_libraries $BLUEZ_LIBS"
2002-03-09 05:12:35 +08:00
2004-04-03 14:04:35 +08:00
AC_SUBST(BLUEZ_INCLUDES)
AC_SUBST(BLUEZ_LDFLAGS)
AC_SUBST(BLUEZ_LIBS)
2002-03-09 05:12:35 +08:00
])
2004-04-03 16:01:04 +08:00
AC_DEFUN(AC_PATH_DBUS, [
2004-05-02 11:36:18 +08:00
AC_ARG_ENABLE(dbus, [ --enable-dbus enable D-BUS support], [
dbus_enable=$enableval
])
2004-04-03 16:01:04 +08:00
AC_ARG_WITH(dbus, [ --with-dbus=DIR D-BUS library is installed in DIR], [
2004-04-03 16:11:50 +08:00
if (test "$withval" = "yes"); then
2004-05-02 11:36:18 +08:00
dbus_includes=$bluez_prefix/include
dbus_libraries=$bluez_prefix/lib
2004-04-03 16:11:50 +08:00
else
dbus_includes=$withval/include
dbus_libraries=$withval/lib
fi
2004-04-03 16:01:04 +08:00
dbus_enable=yes
])
DBUS_INCLUDES=""
DBUS_LDFLAGS=""
DBUS_LIBS=""
ac_save_CFLAGS=$CFLAGS
if test -n "$dbus_includes"; then
CFLAGS="$CFLAGS -I$dbus_includes -I$dbus_includes/dbus-1.0"
else
2004-05-02 11:36:18 +08:00
CFLAGS="$CFLAGS -I$bluez_prefix/include/dbus-1.0 -I/usr/include/dbus-1.0"
2004-04-03 16:01:04 +08:00
fi
CFLAGS="$CFLAGS -DDBUS_API_SUBJECT_TO_CHANGE"
ac_save_LDFLAGS=$LDFLAGS
if test -n "$dbus_libraries"; then
CFLAGS="$CFLAGS -I$dbus_libraries/dbus-1.0/include"
LDFLAGS="$LDFLAGS -L$dbus_libraries"
else
2004-05-02 11:36:18 +08:00
CFLAGS="$CFLAGS -I$bluez_prefix/include/dbus-1.0 -I/usr/lib/dbus-1.0/include"
2004-04-03 16:01:04 +08:00
fi
2004-04-26 08:10:17 +08:00
if test "$dbus_enable" = "yes"; then
AC_CHECK_HEADER(dbus/dbus.h,,
dbus_enable=no)
2004-04-03 16:01:04 +08:00
2004-04-26 08:10:17 +08:00
AC_CHECK_LIB(dbus-1, dbus_error_init,
DBUS_LIBS="$DBUS_LIBS -ldbus-1",
dbus_enable=no)
fi
2004-04-03 16:01:04 +08:00
CFLAGS=$ac_save_CFLAGS
if test -n "$dbus_includes"; then
DBUS_INCLUDES="-I$dbus_includes -I$dbus_includes/dbus-1.0"
else
2004-05-02 11:36:18 +08:00
DBUS_INCLUDES="-I$bluez_prefix/include/dbus-1.0 -I/usr/include/dbus-1.0"
2004-04-03 16:01:04 +08:00
fi
LDFLAGS=$ac_save_LDFLAGS
if test -n "$dbus_libraries"; then
DBUS_INCLUDES="$DBUS_INCLUDES -I$dbus_libraries/dbus-1.0/include"
DBUS_LDFLAGS="-L$dbus_libraries"
DBUS_LIBS="-L$dbus_libraries $DBUS_LIBS"
else
2004-05-02 11:36:18 +08:00
DBUS_INCLUDES="$DBUS_INCLUDES -I$bluez_prefix/include/dbus-1.0 -I/usr/lib/dbus-1.0/include"
2004-04-03 16:01:04 +08:00
fi
AC_SUBST(DBUS_INCLUDES)
AC_SUBST(DBUS_LDFLAGS)
AC_SUBST(DBUS_LIBS)
AM_CONDITIONAL(DBUS, test "$dbus_enable" = "yes")
])
2004-05-02 11:36:18 +08:00
AC_DEFUN(AC_PATH_CUPS, [
AC_ARG_ENABLE(cups, [ --enable-cups enable CUPS support], [
cups_enable=$enableval
cups_prefix=/usr
])
AC_ARG_WITH(cups, [ --with-cups=DIR CUPS is installed in DIR], [
if (test "$withval" = "yes"); then
cups_prefix=/usr
else
cups_prefix=$withval
fi
cups_enable=yes
])
CUPS_BACKEND_DIR=""
if test "$cups_enable" = "yes"; then
AC_MSG_CHECKING(for CUPS backend directory)
if (test -d "$cups_prefix/lib/cups/backend"); then
CUPS_BACKEND_DIR="$cups_prefix/lib/cups/backend"
else
cups_enable=no
fi
if test "$cups_enable" = "yes"; then
AC_MSG_RESULT($CUPS_BACKEND_DIR)
else
AC_MSG_RESULT($cups_enable)
fi
fi
AC_SUBST(CUPS_BACKEND_DIR)
AM_CONDITIONAL(CUPS, test "$cups_enable" = "yes")
])