Josh Coalson | 176eb56 | 2001-06-06 19:54:54 +0000 | [diff] [blame] | 1 | #!/bin/sh |
Josh Coalson | c7c1a8a | 2006-11-17 06:50:19 +0000 | [diff] [blame] | 2 | # Run this to set up the build system: configure, makefiles, etc. |
| 3 | # (based on the version in enlightenment's cvs) |
Josh Coalson | 176eb56 | 2001-06-06 19:54:54 +0000 | [diff] [blame] | 4 | |
Josh Coalson | c7c1a8a | 2006-11-17 06:50:19 +0000 | [diff] [blame] | 5 | package="flac" |
Josh Coalson | 71fb9ff | 2002-12-03 06:29:10 +0000 | [diff] [blame] | 6 | |
Josh Coalson | c7c1a8a | 2006-11-17 06:50:19 +0000 | [diff] [blame] | 7 | olddir=`pwd` |
| 8 | srcdir=`dirname $0` |
| 9 | test -z "$srcdir" && srcdir=. |
| 10 | |
| 11 | cd "$srcdir" |
| 12 | DIE=0 |
| 13 | |
Josh Coalson | 36b5527 | 2006-11-18 18:37:14 +0000 | [diff] [blame] | 14 | ACLOCAL_FLAGS="-I m4 $ACLOCAL_FLAGS" |
| 15 | |
Josh Coalson | c7c1a8a | 2006-11-17 06:50:19 +0000 | [diff] [blame] | 16 | echo "checking for autoconf... " |
| 17 | (autoconf --version) < /dev/null > /dev/null 2>&1 || { |
| 18 | echo |
| 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/" |
| 22 | DIE=1 |
| 23 | } |
| 24 | |
| 25 | VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9]\.[0-9]\).*/\1/" |
| 26 | VERSIONMKINT="sed -e s/[^0-9]//" |
| 27 | |
| 28 | # do we need automake? |
| 29 | if test -r Makefile.am; then |
| 30 | AM_OPTIONS=`fgrep AUTOMAKE_OPTIONS Makefile.am` |
| 31 | AM_NEEDED=`echo $AM_OPTIONS | $VERSIONGREP` |
| 32 | if test x"$AM_NEEDED" = "x$AM_OPTIONS"; then |
| 33 | AM_NEEDED="" |
| 34 | fi |
| 35 | if test -z $AM_NEEDED; then |
| 36 | echo -n "checking for automake... " |
| 37 | AUTOMAKE=automake |
| 38 | ACLOCAL=aclocal |
| 39 | if ($AUTOMAKE --version < /dev/null > /dev/null 2>&1); then |
| 40 | echo "yes" |
| 41 | else |
| 42 | echo "no" |
| 43 | AUTOMAKE= |
| 44 | fi |
| 45 | else |
| 46 | echo -n "checking for automake $AM_NEEDED or later... " |
| 47 | for am in automake-$AM_NEEDED automake$AM_NEEDED \ |
| 48 | automake automake-1.7 automake-1.8 automake-1.9; do |
| 49 | ($am --version < /dev/null > /dev/null 2>&1) || continue |
| 50 | ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP | $VERSIONMKINT` |
| 51 | verneeded=`echo $AM_NEEDED | $VERSIONMKINT` |
| 52 | if test $ver -ge $verneeded; then |
| 53 | AUTOMAKE=$am |
| 54 | echo $AUTOMAKE |
| 55 | break |
| 56 | fi |
| 57 | done |
| 58 | test -z $AUTOMAKE && echo "no" |
| 59 | echo -n "checking for aclocal $AM_NEEDED or later... " |
| 60 | for ac in aclocal-$AM_NEEDED aclocal$AM_NEEDED \ |
| 61 | aclocal aclocal-1.7 aclocal-1.8 aclocal-1.9; do |
| 62 | ($ac --version < /dev/null > /dev/null 2>&1) || continue |
| 63 | ver=`$ac --version < /dev/null | head -n 1 | $VERSIONGREP | $VERSIONMKINT` |
| 64 | verneeded=`echo $AM_NEEDED | $VERSIONMKINT` |
| 65 | if test $ver -ge $verneeded; then |
| 66 | ACLOCAL=$ac |
| 67 | echo $ACLOCAL |
| 68 | break |
| 69 | fi |
| 70 | done |
| 71 | test -z $ACLOCAL && echo "no" |
| 72 | fi |
| 73 | test -z $AUTOMAKE || test -z $ACLOCAL && { |
| 74 | echo |
| 75 | echo "You must have automake installed to compile $package." |
| 76 | echo "Download the appropriate package for your distribution," |
| 77 | echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" |
| 78 | exit 1 |
| 79 | } |
| 80 | fi |
| 81 | |
| 82 | echo -n "checking for libtool... " |
| 83 | for LIBTOOLIZE in libtoolize glibtoolize nope; do |
| 84 | ($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 && break |
| 85 | done |
| 86 | if test x$LIBTOOLIZE = xnope; then |
| 87 | echo "nope." |
| 88 | LIBTOOLIZE=libtoolize |
| 89 | else |
| 90 | echo $LIBTOOLIZE |
| 91 | fi |
| 92 | ($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 || { |
| 93 | echo |
| 94 | echo "You must have libtool installed to compile $package." |
| 95 | echo "Download the appropriate package for your system," |
| 96 | echo "or get the source from one of the GNU ftp sites" |
| 97 | echo "listed in http://www.gnu.org/order/ftp.html" |
| 98 | DIE=1 |
| 99 | } |
| 100 | |
| 101 | if test "$DIE" -eq 1; then |
| 102 | exit 1 |
| 103 | fi |
| 104 | |
| 105 | if test -z "$*"; then |
| 106 | echo "I am going to run ./configure with no arguments - if you wish " |
| 107 | echo "to pass any to it, please specify them on the $0 command line." |
| 108 | fi |
| 109 | |
| 110 | echo "Generating configuration files for $package, please wait...." |
| 111 | |
| 112 | echo " $ACLOCAL $ACLOCAL_FLAGS" |
| 113 | $ACLOCAL $ACLOCAL_FLAGS || exit 1 |
| 114 | echo " $LIBTOOLIZE --automake" |
| 115 | $LIBTOOLIZE --automake || exit 1 |
| 116 | echo " autoheader" |
| 117 | autoheader || exit 1 |
| 118 | echo " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS" |
| 119 | $AUTOMAKE --add-missing $AUTOMAKE_FLAGS || exit 1 |
| 120 | echo " autoconf" |
| 121 | autoconf || exit 1 |
| 122 | |
| 123 | cd $olddir |
| 124 | $srcdir/configure --enable-maintainer-mode "$@" && echo |