File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / ipsec-tools / bootstrap
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 22:39:10 2012 UTC (12 years, 7 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

#!/bin/sh

set -x

case `uname -s` in
Darwin)
	LIBTOOLIZE=glibtoolize
	;;
*)
	LIBTOOLIZE=libtoolize
	;;
esac
	
# Remove autoconf 2.5x's cache directory
rm -rf autom4te*.cache

aclocal -I .                            || exit 1
autoheader                              || exit 1
${LIBTOOLIZE} --force --copy            || exit 1
automake --foreign --add-missing --copy || exit 1
autoconf                                || exit 1

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>