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