fix a typo
[platform/upstream/gstreamer.git] / autogen.sh
1 #!/bin/bash
2 # Run this to generate all the initial makefiles, etc.
3
4 DIE=0
5 package=gst-plugins
6 srcfile=gst/law/alaw.c
7
8 # a quick cvs co if necessary to alleviate the pain - may remove this
9 # when developers get a clue ;)
10 if test ! -d common; 
11 then 
12   echo "+ getting common/ from cvs"
13   cvs co common 
14 else
15   echo "+ updating common/ from cvs"
16   cd common; cvs update -dP; cd ..
17 fi
18
19 # source helper functions
20 if test ! -e common/gst-autogen.sh;
21 then
22   echo There is something wrong with your source tree.
23   echo You are missing common/gst-autogen.sh
24   exit 1
25 fi
26 . common/gst-autogen.sh
27
28 autogen_options $@
29
30 echo -n "+ check for build tools"
31 if test ! -z $NOCHECK; then echo " skipped"; else  echo; fi
32 version_check "autoconf" "$AUTOCONF" "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
33 version_check "automake" "$AUTOMAKE" "ftp://ftp.gnu.org/pub/gnu/automake/" 1 5 || DIE=1
34 version_check "libtool" "" "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 4 0 || DIE=1
35 version_check "pkg-config" "" "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
36
37 autoconf_2.52d_check || DIE=1
38
39 CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-plugin-builddir --enable-debug --enable-DEBUG'
40 # if no arguments specified then this will be printed
41 if test -z "$*"; then
42   echo "+ checking for autogen.sh options"
43   echo "  This autogen script will automatically run ./configure as:"
44   echo "  ./configure $CONFIGURE_DEF_OPT"
45   echo "  To pass any additional options, please specify them on the $0"
46   echo "  command line."
47 fi
48
49 toplevel_check $srcfile
50
51 tool_run "aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
52
53 # FIXME : why does libtoolize keep complaining about aclocal ?
54
55 echo "+ not running libtoolize until libtool fix has flown downstream"
56 # tool_run "libtoolize" "--copy --force"
57 tool_run "autoheader"
58
59 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
60 echo timestamp > stamp-h.in 2> /dev/null
61
62 tool_run "$autoconf"
63 tool_run "$automake" "-a -c"
64
65 # if enable exists, add an -enable option for each of the lines in that file
66 if test -f enable; then
67   for a in `cat enable`; do
68     CONFIGURE_OPT="$CONFIGURE_OPT --enable-$a"
69   done
70 fi
71
72 # if disable exists, add an -disable option for each of the lines in that file
73 if test -f disable; then
74   for a in `cat disable`; do
75     CONFIGURE_OPT="$CONFIGURE_OPT --disable-$a"
76   done
77 fi
78
79 test -n "$NOCONFIGURE" && {
80   echo "+ skipping configure stage for package $package, as requested."
81   echo "+ autogen.sh done."
82   exit 0
83 }
84
85 echo "+ running configure ... "
86 test ! -z "$CONFIGURE_DEF_OPT" && echo "  ./configure default flags: $CONFIGURE_DEF_OPT"
87 test ! -z "$CONFIGURE_EXT_OPT" && echo "  ./configure external flags: $CONFIGURE_EXT_OPT"
88 echo
89
90 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || {
91         echo "  configure failed"
92         exit 1
93 }
94
95 echo "Now type 'make' to compile $package."