diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-09-29 03:21:35 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-09-29 03:21:35 +0200 |
commit | a8172d36292707dda18a877cce34fa1ece3d241d (patch) | |
tree | 3b4567159f72b24e53d7be7896fa38969c5f57fa /acinclude.m4 | |
parent | 4b71a08bdc6d45f24f8908e62ac645880d4a3d88 (diff) |
The usage of libhal is no longer required
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 02e456fa..45dd9096 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -156,12 +156,6 @@ AC_DEFUN([AC_PATH_USB], [ [Define to 1 if you need the usb_interrupt_read() function.])) ]) -AC_DEFUN([AC_PATH_HAL], [ - PKG_CHECK_MODULES(HAL, hal, hal_found=yes, hal_found=no) - AC_SUBST(HAL_CFLAGS) - AC_SUBST(HAL_LIBS) -]) - AC_DEFUN([AC_PATH_NETLINK], [ PKG_CHECK_MODULES(NETLINK, libnl-1, netlink_found=yes, netlink_found=no) AC_SUBST(NETLINK_CFLAGS) @@ -244,10 +238,6 @@ AC_DEFUN([AC_ARG_BLUEZ], [ usb_enable=${enableval} ]) - AC_ARG_ENABLE(hal, AC_HELP_STRING([--enable-hal], [enable HAL support]), [ - hal_enable=${enableval} - ]) - AC_ARG_ENABLE(netlink, AC_HELP_STRING([--enable-netlink], [enable NETLINK support]), [ netlink_enable=${enableval} ]) @@ -342,7 +332,6 @@ AC_DEFUN([AC_ARG_BLUEZ], [ AM_CONDITIONAL(SNDFILE, test "${sndfile_enable}" = "yes" && test "${sndfile_found}" = "yes") AM_CONDITIONAL(NETLINK, test "${netlink_enable}" = "yes" && test "${netlink_found}" = "yes") - AM_CONDITIONAL(HAL, test "${hal_enable}" = "yes" && test "${hal_found}" = "yes") AM_CONDITIONAL(USB, test "${usb_enable}" = "yes" && test "${usb_found}" = "yes") AM_CONDITIONAL(SBC, test "${alsa_enable}" = "yes" || test "${gstreamer_enable}" = "yes") AM_CONDITIONAL(ALSA, test "${alsa_enable}" = "yes" && test "${alsa_found}" = "yes") |