autogen.sh now fails if aclocal fails.
[platform/upstream/gstreamer.git] / autogen.sh
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
3
4 DIE=0
5 package=GStreamer
6 srcfile=gst/gstobject.h
7
8 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
9         echo
10         echo "You must have autoconf installed to compile $package."
11         echo "Download the appropriate package for your distribution,"
12         echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
13         DIE=1
14 }
15
16 (automake --version) < /dev/null > /dev/null 2>&1 || {
17         echo
18         echo "You must have automake installed to compile $package."
19         echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz"
20         echo "(or a newer version if it is available)"
21         DIE=1
22 }
23
24 (libtool --version) < /dev/null > /dev/null 2>&1 || {
25         echo
26         echo "You must have libtool installed to compile $package."
27         echo "Get the latest version from ftp://alpha.gnu.org/gnu/libtool/"
28         DIE=1
29 }
30
31 libtool_version=`libtool --version | sed 's/^.* \([0-9\.]*\) .*$/\1/'`
32 libtool_major=`echo $libtool_version | cut -d. -f1`
33 libtool_minor=`echo $libtool_version | cut -d. -f2`
34 libtool_micro=`echo $libtool_version | cut -d. -f3`
35 if [ $libtool_major -lt 1 -o $libtool_minor -lt 3 -o $libtool_micro -lt 5 ];then
36         echo
37         echo "You must have libtool 1.3.5 or greater to compile $package."
38         echo "Get the latest version from ftp://alpha.gnu.org/gnu/libtool/"
39         DIE=1
40 fi
41
42 if test "$DIE" -eq 1; then
43         exit 1
44 fi
45
46 test -f $srcfile || {
47         echo "You must run this script in the top-level $package directory"
48         exit 1
49 }
50
51 if test -z "$*"; then
52         echo "I am going to run ./configure with no arguments - if you wish "
53         echo "to pass any to it, please specify them on the $0 command line."
54 fi
55
56 libtoolize --copy --force
57 aclocal $ACLOCAL_FLAGS || {
58         echo "aclocal failed - check that all needed development files are present on system"
59         exit 1
60 }
61 autoheader
62 autoconf
63 automake --add-missing
64
65 if [ "x$1" = "x--autogen-recurse" ];then
66   exit  # the rest will happen later
67 fi
68
69 #for dir in `find * -name autogen.sh -print | grep -v '^autogen.sh$' | \
70 #            sed 's/autogen.sh$//'`;do
71 #  echo "Recursively running autogen.sh in $dir"
72 #  pushd $dir > /dev/null
73 #  ./autogen.sh --autogen-recurse "$@"
74 #  popd > /dev/null
75 #done
76
77 # now remove the cache, because it can be considered dangerous in this case
78 rm -f config.cache
79
80 # For busy application developers (Hadess)
81 # ./configure --enable-maintainer-mode --enable-debug --enable-debug-verbose --disable-docs-build "$@"
82
83 ./configure --enable-maintainer-mode --enable-plugin-srcdir --enable-debug --enable-debug-verbose "$@"
84
85 echo 
86 echo "Now type 'make' to compile $package."