TO BUILD FROM GIT:
-./bootstrap
-./configure
+./bootstrap # first time
+./configure ... # if other flags desired
make
+make check # to run some tests
requires: libtool, pkgconfig, autoconf, automake
CONFIGURE SWITCHES:
--enable-tests
-build some stuff for 'make check'.
+build some test programs, including those for 'make check'.
--enable-core-docs
include files from 'avahi-core' when building the doxygen docs.
;;
esac
-CFLAGS="$CFLAGS -g -O0" exec ./autogen.sh $FLAGS "$@"
+export CFLAGS="$CFLAGS -g -O0"
+sh autogen.sh && ./configure $FLAGS "$@"