libsodium: Needed for Dnscrypto-proxy Release 1.3.0
[tomato.git] / release / src / router / dnscrypt / autogen.sh
blob283cdd1d5558046fe60b32700e9150c98ba0cd15
1 #! /bin/sh
3 if [ -x "`which autoreconf 2>/dev/null`" ] ; then
4 exec autoreconf -ivf
5 fi
7 if glibtoolize --version > /dev/null 2>&1; then
8 LIBTOOLIZE='glibtoolize'
9 else
10 LIBTOOLIZE='libtoolize'
13 src/libevent/autogen.sh &
14 cpid=$!
16 $LIBTOOLIZE && \
17 aclocal -I m4 && \
18 autoheader && \
19 automake --add-missing --force-missing --include-deps && \
20 autoconf -I m4
22 wait $cpid