Commit a620ded0 authored by Sam Hocevar's avatar Sam Hocevar

* bootstrap: imported libdvdcss's bootstrap file.

parent a8e08ab1
#! /bin/sh #! /bin/sh
## bootstrap file for libdvbpsi -- Sam Hocevar <sam@zoy.org>
## $Id: bootstrap,v 1.5 2003/11/06 10:13:40 sam Exp $
set -x set -x
set -e
rm -f aclocal.m4 configure config.guess config.log config.sub ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh # Get a sane environment, just in case
LANG=C
export LANG
CYGWIN=binmode
export CYGWIN
# Check for automake # Check for automake
amvers="none" amvers="no"
if automake-1.7 --version >/dev/null 2>&1 if automake-1.7 --version >/dev/null 2>&1; then
then
amvers="-1.7" amvers="-1.7"
else elif automake-1.6 --version >/dev/null 2>&1; then
if automake-1.6 --version >/dev/null 2>&1
then
amvers="-1.6" amvers="-1.6"
else elif automake-1.5 --version >/dev/null 2>&1; then
if automake-1.5 --version >/dev/null 2>&1
then
amvers="-1.5" amvers="-1.5"
elif automake --version > /dev/null 2>&1; then
amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`"
if expr "$amvers" "<" "1.5" > /dev/null 2>&1; then
amvers="no"
else else
if automake --version > /dev/null 2>&1 amvers=""
then
amvers=`automake --version | sed -e '1s/[^0-9]*//' -e q`
if expr "$amvers" "<" "1.5" > /dev/null 2>&1
then amvers="none"
else amvers=""
fi
fi
fi
fi fi
fi fi
if test x$amvers = xnone if test "$amvers" = "no"; then
then
set +x set +x
echo "you need automake version 1.5 or later" echo "$0: you need automake version 1.5 or later"
exit 1 exit 1
fi fi
aclocal${amvers} || exit 1 # Check for libtool
if libtoolize --version >/dev/null 2>&1 libtoolize="no"
then if libtoolize --version >/dev/null 2>&1; then
libtoolize --force --copy || exit 1 libtoolize="libtoolize"
else elif glibtoolize --version >/dev/null 2>&1; then
glibtoolize --force --copy || exit 1 libtoolize="glibtoolize"
fi fi
autoheader || exit 1
#add --include-deps if you want to bootstrap with any other compiler than gcc if test "$libtoolize" = "no"; then
#automake${amvers} --add-missing --copy --include-deps || exit 1 set +x
automake${amvers} --add-missing --copy || exit 1 echo "$0: you need libtool"
autoconf || exit 1 exit 1
rm -f config.cache fi
# Remove old cruft
rm -f aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh
rm -Rf autom4te.cache
(cd autotools && rm -f config.guess config.sub missing mkinstalldirs compile ltmain.sh depcomp install-sh)
aclocal${amvers}
${libtoolize} --copy --force
if test -f "ltmain.sh"; then
echo "$0: working around a minor libtool issue"
mv ltmain.sh autotools/
fi
autoconf
autoheader
automake${amvers} --add-missing --copy
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment