Set libnice specific debug domains
[sipe-libnice.git] / autogen.sh
blob8d583e1b940764b3548e0babc0568d9de6045c99
1 #!/bin/sh
2 set -e
4 test -d m4 || mkdir m4
5 gtkdocize || exit 1
7 autoreconf -i
9 run_configure=true
10 for arg in $*; do
11 case $arg in
12 --no-configure)
13 run_configure=false
17 esac
18 done
20 if test $run_configure = true; then
21 ./configure "$@"