source: rtems-libbsd/ipsec-tools/bootstrap @ 91b858d

55-freebsd-126-freebsd-12
Last change on this file since 91b858d was ff36f5e, checked in by Christian Mauderer <christian.mauderer@…>, on 05/30/18 at 12:27:35

Import ipsec-tools 0.8.2.

Import unchanged ipsec-tools sources in the release version 0.8.2. The
homepage of ipsec-tools is http://ipsec-tools.sourceforge.net/. The
sources can be obtained from there.

  • Property mode set to 100755
File size: 426 bytes
Line 
1#!/bin/sh
2
3set -x
4
5case `uname -s` in
6Darwin)
7        LIBTOOLIZE=glibtoolize
8        ;;
9*)
10        LIBTOOLIZE=libtoolize
11        ;;
12esac
13       
14# Remove autoconf 2.5x's cache directory
15rm -rf autom4te*.cache
16
17aclocal -I .                            || exit 1
18autoheader                              || exit 1
19${LIBTOOLIZE} --force --copy            || exit 1
20automake --foreign --add-missing --copy || exit 1
21autoconf                                || exit 1
Note: See TracBrowser for help on using the repository browser.