2 # Run this to set up the build system: configure, makefiles, etc.
3 # (based on the version in enlightenment's cvs)
5 package
="libsamplerate"
11 test -z "$srcdir" && srcdir
=.
16 echo "checking for autoconf... "
17 (autoconf
--version) < /dev
/null
> /dev
/null
2>&1 ||
{
19 echo "You must have autoconf installed to compile $package."
20 echo "Download the appropriate package for your distribution,"
21 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
25 VERSIONGREP
="sed -e s/.*[^0-9\.]\([0-9][0-9]*\.[0-9][0-9]*\).*/\1/"
26 VERSIONMKMAJ
="sed -e s/\([0-9][0-9]*\)[^0-9].*/\\1/"
27 VERSIONMKMIN
="sed -e s/.*[0-9][0-9]*\.//"
29 # do we need automake?
30 if test -r Makefile.am
; then
31 AM_OPTIONS
=`fgrep AUTOMAKE_OPTIONS Makefile.am`
32 AM_NEEDED
=`echo $AM_OPTIONS | $VERSIONGREP`
33 if test x
"$AM_NEEDED" = "x$AM_OPTIONS"; then
36 if test -z $AM_NEEDED; then
37 echo -n "checking for automake... "
40 if ($AUTOMAKE --version < /dev
/null
> /dev
/null
2>&1); then
47 echo -n "checking for automake $AM_NEEDED or later... "
48 majneeded
=`echo $AM_NEEDED | $VERSIONMKMAJ`
49 minneeded
=`echo $AM_NEEDED | $VERSIONMKMIN`
50 for am
in automake-
$AM_NEEDED automake
$AM_NEEDED \
51 automake automake-1.7 automake-1.8 automake-1.9 automake-1.10
; do
52 ($am --version < /dev
/null
> /dev
/null
2>&1) ||
continue
53 ver
=`$am --version < /dev/null | head -n 1 | $VERSIONGREP`
54 maj
=`echo $ver | $VERSIONMKMAJ`
55 min
=`echo $ver | $VERSIONMKMIN`
56 if test $maj -eq $majneeded -a $min -ge $minneeded; then
62 test -z $AUTOMAKE && echo "no"
63 echo -n "checking for aclocal $AM_NEEDED or later... "
64 for ac
in aclocal-
$AM_NEEDED aclocal
$AM_NEEDED \
65 aclocal aclocal-1.7 aclocal-1.8 aclocal-1.9 aclocal-1.10
; do
66 ($ac --version < /dev
/null
> /dev
/null
2>&1) ||
continue
67 ver
=`$ac --version < /dev/null | head -n 1 | $VERSIONGREP`
68 maj
=`echo $ver | $VERSIONMKMAJ`
69 min
=`echo $ver | $VERSIONMKMIN`
70 if test $maj -eq $majneeded -a $min -ge $minneeded; then
76 test -z $ACLOCAL && echo "no"
78 test -z $AUTOMAKE ||
test -z $ACLOCAL && {
80 echo "You must have automake installed to compile $package."
81 echo "Download the appropriate package for your distribution,"
82 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
87 echo -n "checking for libtool... "
88 for LIBTOOLIZE
in libtoolize glibtoolize nope
; do
89 ($LIBTOOLIZE --version) < /dev
/null
> /dev
/null
2>&1 && break
91 if test x
$LIBTOOLIZE = xnope
; then
97 ($LIBTOOLIZE --version) < /dev
/null
> /dev
/null
2>&1 ||
{
99 echo "You must have libtool installed to compile $package."
100 echo "Download the appropriate package for your system,"
101 echo "or get the source from one of the GNU ftp sites"
102 echo "listed in http://www.gnu.org/order/ftp.html"
106 if test "$DIE" -eq 1; then
110 if test -z "$*"; then
111 echo "I am going to run ./configure with no arguments - if you wish "
112 echo "to pass any to it, please specify them on the $0 command line."
115 echo "Generating configuration files for $package, please wait...."
117 echo " $ACLOCAL $ACLOCAL_FLAGS"
118 $ACLOCAL $ACLOCAL_FLAGS ||
exit 1
119 echo " $LIBTOOLIZE --automake"
120 $LIBTOOLIZE --automake ||
exit 1
123 echo " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS"
124 $AUTOMAKE --add-missing $AUTOMAKE_FLAGS ||
exit 1
129 $srcdir/configure
--enable-gcc-werror "$@" && echo