don't do -fPIC for mingw. Suppresses warning about unnecessary -fPIC
[lilypond.git] / autogen.sh
blob6db6ec12e21470bacff2e0ec09d4d312f9e3e217
1 #!/bin/sh
2 # Run this to generate configure and initial GNUmakefiles
4 srcdir=`dirname $0`
6 case $1 in
7 --noconf*) NOCONFIGURE=true;;
8 esac
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 -n 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 for i in $srcdir/configure.in #`find $srcdir -name configure.in -print`
42 do
43 dir=`dirname $i`
44 echo processing $dir
46 cd $dir
47 echo "Running autoconf ..."
48 $autoconf
50 done
52 #conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c
53 #conf_flags="--with-ncsb-dir=/usr/share/fonts/default/Type1/"
55 if test -n "$NOCONFIGURE"; then
56 echo Skipping configure process.
57 exit 0
60 if test -z "$*"; then
61 cat <<EOF
62 Warning: about to run \`configure' without arguments.
63 arguments on the \`$0' command line
64 will be passed to \`configure'.
66 Invoke with --noconfigure to skip configure step.
67 EOF
70 echo Running $srcdir/configure $conf_flags "$@" ...
71 $srcdir/configure $conf_flags "$@"