release commit
[lilypond.git] / autogen.sh
blob011fce2510d08c55676d0600a1b195c4d742f37f
1 #!/bin/sh
2 # WARNING WARNING WARNING
3 # do not edit! this is autogen.sh, generated from /home/hanwen/usr/src/lilypond/stepmake/autogen.sh
4 #!/bin/sh
5 # Run this to generate configure and initial GNUmakefiles
7 srcdir=`dirname $0`
10 if [ ! -f aclocal.m4 -o stepmake/aclocal.m4 -nt aclocal.m4 ]; then
11 echo "stepmake/aclocal.m4 is newer. Copying file."
12 cp -f stepmake/aclocal.m4 aclocal.m4
15 if [ ! -f autogen.sh -o stepmake/autogen.sh -nt autogen.sh ]; then
16 echo "stepmake/autogen.sh is newer. Copying file."
17 cp -f stepmake/autogen.sh autogen.sh
18 exec ./autogen.sh
21 # Be paranoid: check for autoconf >= 2.50
22 # Some setups have both autoconf 2.13 and 2.5x available through
23 # a wrapper script: /usr/bin/autoconf.
24 # This wrapper may incorrectly autoselect autoconf 2.50, but it
25 # advertises itself as autoconf 2.13.
26 # If you have such a setup, invoke this script as:
27 # autoconf=autoconf2.50 ./autogen.sh
28 for i in autoconf2.50 autoconf-2.50 autoconf false; do
29 version=`$i --version 2>/dev/null | head -1 | awk '{print $NF}' | awk -F. '{print $1 * 100 + $2}'`
30 if test "0$version" -ge 250; then
31 autoconf=$i
32 break
34 done
36 if test -z "$autoconf"; then
37 echo "ERROR: Please install autoconf 2.50 or newer"
38 exit 1
41 if test -z "$*"; then
42 echo "WARNING: I am going to run \`configure' with no arguments."
43 echo "If you wish to pass any to it, please specify them on the"
44 echo \`$0\'" command line."
45 echo
48 for coin in `find $srcdir -name configure.in -print`
49 do
50 dr=`dirname $coin`
51 echo processing $dr
53 cd $dr
54 echo "Running autoconf ..."
55 $autoconf
57 done
59 #conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c
60 if test -z "$NOCONFIGURE"; then
61 echo Running $srcdir/configure $conf_flags "$@" ...
62 $srcdir/configure $conf_flags "$@"
63 else
64 echo Skipping configure process.