diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-08-14 09:05:49 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-08-16 22:13:27 (GMT) |
commit | 516b334bd963452578367b2cd354db6c39ba99c9 (patch) | |
tree | f24aa85a28be562ea64929fe298a9851c1a74965 /autoconf/ax_avahi.m4 | |
parent | 7fdc3e80028fd93fcc0111570a01cd78282cd41a (diff) | |
download | swift-contrib-516b334bd963452578367b2cd354db6c39ba99c9.zip swift-contrib-516b334bd963452578367b2cd354db6c39ba99c9.tar.bz2 |
Remove autoconf/make files.
Diffstat (limited to 'autoconf/ax_avahi.m4')
-rw-r--r-- | autoconf/ax_avahi.m4 | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/autoconf/ax_avahi.m4 b/autoconf/ax_avahi.m4 deleted file mode 100644 index 1ea3233..0000000 --- a/autoconf/ax_avahi.m4 +++ /dev/null @@ -1,28 +0,0 @@ -# Author: Remko Tronçon - -AC_DEFUN([AX_AVAHI], -[ - AC_ARG_WITH( - [avahi], - AC_HELP_STRING([--with-avahi=@<:@ARG@:>@],[Path to Avahi installation]), - [ - WITH_AVAHI="$withval" - if test "$withval" != "no" -a "$withval" != "yes"; then - AVAHI_CPPFLAGS="-I$withval/include" - AVAHI_LDFLAGS="-L$withval/lib" - CPPFLAGS="$CPPFLAGS $AVAHI_CPPFLAGS" - LDFLAGS="$LDFLAGS $AVAHI_LDFLAGS" - fi - ], - [WITH_AVAHI="yes"]) - - if test "$WITH_AVAHI" != "no"; then - AC_CHECK_HEADER(avahi-client/client.h, - [ - HAVE_AVAHI=yes - # TODO: Check if this lib exists - AVAHI_LIBS="-lavahi-client" - ], - []) - fi -]) |