together with the recent commit in common, this little beauty should
[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=gstreamer
6 srcfile=gst/gst.c
7
8 # a quick cvs co to ease the transition
9 if test ! -d common; then
10   echo "+ getting common from cvs"; cvs co common
11 fi
12 if test ! -d libs/ext/cothreads; then
13   echo "+ getting cothreads from cvs"; cvs co gst-cothreads
14 fi
15
16 # source helper functions
17 if test ! -f common/gst-autogen.sh;
18 then
19   echo There is something wrong with your source tree.
20   echo You are missing common/gst-autogen.sh
21   exit 1
22 fi
23 . common/gst-autogen.sh
24
25 CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-plugin-builddir'
26
27 autogen_options $@
28
29 echo -n "+ check for build tools"
30 if test ! -z $NOCHECK; then echo ": skipped version checks"; else  echo; fi
31 version_check "autoconf" "$AUTOCONF" "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
32 version_check "automake" "$AUTOMAKE" "ftp://ftp.gnu.org/pub/gnu/automake/" 1 5 || DIE=1
33 version_check "libtool" "" "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 4 0 || DIE=1
34 version_check "pkg-config" "" "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
35
36 die_check $DIE
37
38 autoconf_2.52d_check || DIE=1
39 aclocal_check || DIE=1
40 autoheader_check || DIE=1
41
42 die_check $DIE
43
44 # if no arguments specified then this will be printed
45 if test -z "$*"; then
46   echo "+ checking for autogen.sh options"
47   echo "  This autogen script will automatically run ./configure as:"
48   echo "  ./configure $CONFIGURE_DEF_OPT"
49   echo "  To pass any additional options, please specify them on the $0"
50   echo "  command line."
51 fi
52
53 toplevel_check $srcfile
54
55 if test -e acinclude.m4; then rm acinclude.m4; fi
56 tool_run "$aclocal" "-I common/m4 $ACLOCAL_FLAGS"
57
58 # FIXME : why does libtoolize keep complaining about aclocal ?
59
60 echo "+ not running libtoolize until libtool fix has flown downstream"
61 # tool_run "libtoolize" "--copy --force"
62 tool_run "$autoheader"
63
64 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
65 echo timestamp > stamp-h.in 2> /dev/null
66
67 tool_run "$autoconf"
68 debug "automake: $automake"
69 tool_run "$automake" "-a -c"
70
71 echo
72 echo "+ running autogen.sh --noconfigure --nocheck $@ in libs/ext/cothreads..."
73 pushd libs/ext/cothreads > /dev/null
74 echo
75 ./autogen.sh --noconfigure --nocheck $@ || {
76         echo "autogen in cothreads failed."
77         exit 1
78 }
79 popd > /dev/null
80 echo
81
82 test -n "$NOCONFIGURE" && {
83   echo "skipping configure stage for package $package, as requested."
84   echo "autogen.sh done."
85   exit 0
86 }
87
88 echo "+ running configure ... "
89 test ! -z "$CONFIGURE_DEF_OPT" && echo "  ./configure default flags: $CONFIGURE_DEF_OPT"
90 test ! -z "$CONFIGURE_EXT_OPT" && echo "  ./configure external flags: $CONFIGURE_EXT_OPT"
91 echo
92
93 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || {
94         echo "  configure failed"
95         exit 1
96 }
97
98 echo "Now type 'make' to compile $package."
99