Christian Mauderer ff36f5e409 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.
2018-08-01 09:55:27 +02:00

22 lines
426 B
Bash
Executable File

#!/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