Get rid of old howl crap - run with 0.9.6ish or better

This commit is contained in:
Ron Pedde 2004-11-27 03:14:14 +00:00
parent 08bef94c48
commit a1d62cf6c6

View File

@ -45,15 +45,7 @@ AC_ARG_ENABLE(howl,[ --enable-howl Use howl 0.9.2 or later],
CPPFLAGS="${CPPFLAGS} -DWITH_HOWL";;
no) rend_howl=false;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-howl);;
esac ],[rend_howl=false])
AC_ARG_ENABLE(old-howl,[ --enable-old-howl Use the howl mDNS library (pre 0.9.2)],
[ case "${enableval}" in
yes) rend_howl=true; LDFLAGS="${LDFLAGS} -lrendezvous -lcorby -lsalt";
CPPFLAGS="${CPPFLAGS} -DWITH_HOWL";;
no) rend_howl=false;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-howl);;
esac ],[rend_howl=false])
esac ])
AM_CONDITIONAL(COND_REND_HOWL, test x$rend_howl = xtrue)
AM_CONDITIONAL(COND_REND_POSIX, test x$rend_posix = xtrue)