usbmodeswitch: Updated to v.1.2.6 from shibby's branch.
[tomato.git] / release / src / router / dnscrypt / autogen.sh
blobb9a2e61c001a218e8ce44893c646a2a0e25aa0a9
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-modified/autogen.sh &
14 cpid1=$!
16 src/libsodium/autogen.sh &
17 cpid2=$!
19 $LIBTOOLIZE --ltdl && \
20 aclocal && \
21 autoheader && \
22 automake --add-missing --force-missing --include-deps && \
23 autoconf
25 wait $cpid1
26 wait $cpid2