K2.6 patches and update.
[tomato.git] / release / src / router / flac / autogen.sh
blob6ba76d091f658b40c64a63de4dc41b5dc54d5db2
1 #!/bin/sh
2 # Run this to set up the build system: configure, makefiles, etc.
3 # (based on the version in enlightenment's cvs)
5 # Some notes:
7 # You may need to specify -I /SOME_PATH/share/aclocal in ACLOCAL_FLAGS
8 # if any packages FLAC relies on (autotools, libogg, libiconv) are
9 # installed in non-standard places.
11 # If you don't have XMMS installed at all, you should comment out
12 # AM_PATH_XMMS in configure.in.
14 # FLAC uses iconv but not gettext. iconv requires config.rpath which
15 # is supplied by gettext, which is copied in by gettextize. But we
16 # can't run gettextize since we do not fulfill all it's requirements
17 # (because we don't use it). So you may have to:
19 # cp /usr/share/gettext/config.rpath .
21 # before running autogen.sh
23 # If you are running on OS X and get errors related to the AM_ICONV
24 # and/or AM_LANGINFO_CODESET macros, replace those 2 lines in
25 # configure.in with
27 # AC_DEFINE([HAVE_ICONV], [], [Whether we have libiconv available]) LIBICONV="-liconv"
28 # AC_SUBST(LIBICONV)
30 # See also http://lists.xiph.org/pipermail/flac-dev/2007-September/002384.html
32 # Also watchout, if you replace ltmain.sh, there is a bug in some
33 # versions of libtool (or maybe autoconf) on some platforms where the
34 # configure-generated libtool does not have $SED defined. See also:
36 # http://lists.gnu.org/archive/html/libtool/2003-11/msg00131.html
38 package="flac"
40 olddir=`pwd`
41 srcdir=`dirname $0`
42 test -z "$srcdir" && srcdir=.
44 cd "$srcdir"
45 DIE=0
47 ACLOCAL_FLAGS="-I m4 $ACLOCAL_FLAGS"
49 echo "checking for autoconf... "
50 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
51 echo
52 echo "You must have autoconf installed to compile $package."
53 echo "Download the appropriate package for your distribution,"
54 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
55 DIE=1
58 VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9][0-9]*\.[0-9][0-9]*\).*/\1/"
59 VERSIONMKMAJ="sed -e s/\([0-9][0-9]*\)[^0-9].*/\\1/"
60 VERSIONMKMIN="sed -e s/.*[0-9][0-9]*\.//"
62 # do we need automake?
63 if test -r Makefile.am; then
64 AM_OPTIONS=`fgrep AUTOMAKE_OPTIONS Makefile.am`
65 AM_NEEDED=`echo $AM_OPTIONS | $VERSIONGREP`
66 if test x"$AM_NEEDED" = "x$AM_OPTIONS"; then
67 AM_NEEDED=""
69 if test -z $AM_NEEDED; then
70 echo -n "checking for automake... "
71 AUTOMAKE=automake
72 ACLOCAL=aclocal
73 if ($AUTOMAKE --version < /dev/null > /dev/null 2>&1); then
74 echo "yes"
75 else
76 echo "no"
77 AUTOMAKE=
79 else
80 echo -n "checking for automake $AM_NEEDED or later... "
81 majneeded=`echo $AM_NEEDED | $VERSIONMKMAJ`
82 minneeded=`echo $AM_NEEDED | $VERSIONMKMIN`
83 for am in automake-$AM_NEEDED automake$AM_NEEDED \
84 automake automake-1.7 automake-1.8 automake-1.9 automake-1.10; do
85 ($am --version < /dev/null > /dev/null 2>&1) || continue
86 ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP`
87 maj=`echo $ver | $VERSIONMKMAJ`
88 min=`echo $ver | $VERSIONMKMIN`
89 if test $maj -eq $majneeded -a $min -ge $minneeded; then
90 AUTOMAKE=$am
91 echo $AUTOMAKE
92 break
94 done
95 test -z $AUTOMAKE && echo "no"
96 echo -n "checking for aclocal $AM_NEEDED or later... "
97 for ac in aclocal-$AM_NEEDED aclocal$AM_NEEDED \
98 aclocal aclocal-1.7 aclocal-1.8 aclocal-1.9 aclocal-1.10; do
99 ($ac --version < /dev/null > /dev/null 2>&1) || continue
100 ver=`$ac --version < /dev/null | head -n 1 | $VERSIONGREP`
101 maj=`echo $ver | $VERSIONMKMAJ`
102 min=`echo $ver | $VERSIONMKMIN`
103 if test $maj -eq $majneeded -a $min -ge $minneeded; then
104 ACLOCAL=$ac
105 echo $ACLOCAL
106 break
108 done
109 test -z $ACLOCAL && echo "no"
111 test -z $AUTOMAKE || test -z $ACLOCAL && {
112 echo
113 echo "You must have automake installed to compile $package."
114 echo "Download the appropriate package for your distribution,"
115 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
116 exit 1
120 echo -n "checking for libtool... "
121 for LIBTOOLIZE in libtoolize glibtoolize nope; do
122 ($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 && break
123 done
124 if test x$LIBTOOLIZE = xnope; then
125 echo "nope."
126 LIBTOOLIZE=libtoolize
127 else
128 echo $LIBTOOLIZE
130 ($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 || {
131 echo
132 echo "You must have libtool installed to compile $package."
133 echo "Download the appropriate package for your system,"
134 echo "or get the source from one of the GNU ftp sites"
135 echo "listed in http://www.gnu.org/order/ftp.html"
136 DIE=1
139 if test "$DIE" -eq 1; then
140 exit 1
143 if test -z "$*"; then
144 echo "I am going to run ./configure with no arguments - if you wish "
145 echo "to pass any to it, please specify them on the $0 command line."
148 echo "Generating configuration files for $package, please wait...."
150 echo " $ACLOCAL $ACLOCAL_FLAGS"
151 $ACLOCAL $ACLOCAL_FLAGS || exit 1
152 echo " $LIBTOOLIZE --automake"
153 $LIBTOOLIZE --automake || exit 1
154 echo " autoheader"
155 autoheader || exit 1
156 echo " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS"
157 $AUTOMAKE --add-missing $AUTOMAKE_FLAGS || exit 1
158 echo " autoconf"
159 autoconf || exit 1
161 cd $olddir
162 $srcdir/configure --enable-maintainer-mode "$@" && echo