- Timestamp:
- Jul 6, 2009, 3:43:11 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
m4/ax_avahi.m4
r4733 r4762 5 5 # DESCRIPTION 6 6 # 7 # Test for the Avahi library 7 # Test for the Avahi library. The library is optional! 8 8 # 9 9 # LAST MODIFICATION … … 13 13 AC_DEFUN([AX_AVAHI], 14 14 [ 15 AC_CHECK_HEADERS(avahi-client/client.h, ,16 [AC_MSG_ ERROR([Avahi Client Library not found. Install libavahi-client-dev])])15 AC_CHECK_HEADERS(avahi-client/client.h, 16 [AC_MSG_NOTICE([Avahi Client Library found])], ) 17 17 18 AC_CHECK_HEADERS(avahi-common/timeval.h, ,19 [AC_MSG_ ERROR([Avahi Common Library not found. Install libavahi-common-dev])])18 AC_CHECK_HEADERS(avahi-common/timeval.h, 19 [AC_MSG_NOTICE([Avahi Common Library found])], ) 20 20 21 AC_CHECK_LIB([avahi-client],[avahi_entry_group_new], ,22 [AC_MSG_ ERROR([Avahi Client Library not found. Install libavahi-client-dev])])21 AC_CHECK_LIB([avahi-client],[avahi_entry_group_new], 22 [AC_MSG_NOTICE([Avahi Client Library found])], ) 23 23 24 AC_CHECK_LIB([avahi-common],[avahi_free], ,25 [AC_MSG_ ERROR([Avahi Client Library not found. Install libavahi-client-dev])])24 AC_CHECK_LIB([avahi-common],[avahi_free], 25 [AC_MSG_NOTICE([Avahi Client Library found])], ) 26 26 ])
Note:
See TracChangeset
for help on using the changeset viewer.