File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / ipsec-tools / bootstrap
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 22:39:10 2012 UTC (12 years, 3 months ago) by misho
Branches: ipsec-tools, MAIN
CVS tags: v0_8_2p2, v0_8_1p0, v0_8_1, v0_8_0p0, v0_8_0, HEAD
ipsec-tools

    1: #!/bin/sh
    2: 
    3: set -x
    4: 
    5: case `uname -s` in
    6: Darwin)
    7: 	LIBTOOLIZE=glibtoolize
    8: 	;;
    9: *)
   10: 	LIBTOOLIZE=libtoolize
   11: 	;;
   12: esac
   13: 	
   14: # Remove autoconf 2.5x's cache directory
   15: rm -rf autom4te*.cache
   16: 
   17: aclocal -I .                            || exit 1
   18: autoheader                              || exit 1
   19: ${LIBTOOLIZE} --force --copy            || exit 1
   20: automake --foreign --add-missing --copy || exit 1
   21: autoconf                                || exit 1

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