libsodium/autogen.sh

17 lines
297 B
Bash
Raw Normal View History

2013-01-19 19:02:02 -05:00
#! /bin/sh
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
exec autoreconf -ivf
fi
if glibtoolize --version > /dev/null 2>&1; then
LIBTOOLIZE='glibtoolize'
else
LIBTOOLIZE='libtoolize'
fi
2013-04-26 01:51:19 -04:00
$LIBTOOLIZE && \
2013-01-19 19:02:02 -05:00
aclocal && \
automake --add-missing --force-missing --include-deps && \
autoconf