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