Codebase list faad2 / upstream/2.6.1 bootstrap
upstream/2.6.1

Tree @upstream/2.6.1 (Download .tar.gz)

bootstrap @upstream/2.6.1

18ab67d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
#! /bin/sh

case $OSTYPE in
	darwin*)
	LIBTOOLIZE=glibtoolize
	;;
	*)
	LIBTOOLIZE=libtoolize
	;;
esac

aclocal -I .                   && \
autoheader                     && \
$LIBTOOLIZE --automake --copy   && \
automake --add-missing --copy  && \
autoconf                       && \
echo "Ready to run ./configure"