Codebase list faad2 / 334e5a31-f9c7-4a80-b20d-836d76eb9b59/main bootstrap
334e5a31-f9c7-4a80-b20d-836d76eb9b59/main

Tree @334e5a31-f9c7-4a80-b20d-836d76eb9b59/main (Download .tar.gz)

bootstrap @334e5a31-f9c7-4a80-b20d-836d76eb9b59/main

5d5649c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
#! /bin/sh

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

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