source: m4/ax_avahi.m4@ 7535

Last change on this file since 7535 was 4839, checked in by Christoph Mayer, 15 years ago
File size: 380 bytes
RevLine 
[4733]1# SYNOPSIS
2#
3# AX_AVAHI()
4#
5# DESCRIPTION
6#
[4762]7# Test for the Avahi library. The library is optional!
[4733]8#
9# LAST MODIFICATION
10#
11# 2009-07-03
12
13AC_DEFUN([AX_AVAHI],
14[
[4839]15 AC_CHECK_HEADERS(avahi-client/client.h,, )
[4733]16
[4836]17 AC_CHECK_HEADERS(avahi-common/timeval.h,, )
[4733]18
[4836]19 AC_CHECK_LIB([avahi-client],[avahi_entry_group_new],, )
[4733]20
[4836]21 AC_CHECK_LIB([avahi-common],[avahi_free],, )
[4733]22])
Note: See TracBrowser for help on using the repository browser.