Code

Let the JSON formatter include a metric's data_names.
[sysdb.git] / autogen.sh
1 #! /bin/sh
3 if ! which yacc > /dev/null 2>&1 || ! which lex > /dev/null 2>&1; then
4         echo "yacc and lex are required to build SysDB" >&2
5         exit 1
6 fi
8 libtoolize=libtoolize
9 if which glibtoolize > /dev/null 2>&1; then
10         libtoolize=glibtoolize
11 fi
13 set -ex
15 aclocal -I m4 --force --warnings=all
16 $libtoolize --automake --copy --force
17 aclocal -I m4
18 autoconf --force --warnings=all
19 autoheader --force --warnings=all
20 automake --add-missing --copy --foreign --warnings=all