mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-12 20:04:37 +08:00

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.
22 lines
426 B
Bash
Executable File
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
|