2 # Run this to generate all the initial makefiles, etc.
8 # a quick cvs co to ease the transition
9 if test ! -d common; then
10 echo "+ getting common from cvs"; cvs co common
12 if test ! -d libs/ext/cothreads; then
13 echo "+ getting cothreads from cvs"; cvs co gst-cothreads
16 # source helper functions
17 if test ! -f common/gst-autogen.sh;
19 echo There is something wrong with your source tree.
20 echo You are missing common/gst-autogen.sh
23 . common/gst-autogen.sh
27 echo -n "+ check for build tools"
28 if test ! -z $NOCHECK; then echo " skipped"; else echo; fi
29 version_check "autoconf" "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
30 version_check "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
34 autoconf_2.52d_check || DIE=1
36 CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-plugin-builddir'
37 # if no arguments specified then this will be printed
39 echo "+ checking for autogen.sh options"
40 echo " This autogen script will automatically run ./configure as:"
41 echo " ./configure $CONFIGURE_DEF_OPT"
42 echo " To pass any additional options, please specify them on the $0"
46 toplevel_check $srcfile
48 if test -e acinclude.m4; then rm acinclude.m4; fi
49 tool_run "aclocal" "-I common/m4 $ACLOCAL_FLAGS"
51 # FIXME : why does libtoolize keep complaining about aclocal ?
53 echo "+ not running libtoolize until libtool fix has flown downstream"
54 # tool_run "libtoolize" "--copy --force"
57 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
58 echo timestamp > stamp-h.in 2> /dev/null
61 tool_run "automake" "-a -c"
64 echo "+ running autogen.sh in libs/ext/cothreads..."
65 pushd libs/ext/cothreads > /dev/null
67 ./autogen.sh --autogen-noconfigure --autogen-nocheck || {
68 echo "autogen in cothreads failed."
74 test -n "$NOCONFIGURE" && {
75 echo "skipping configure stage for package $package, as requested."
76 echo "autogen.sh done."
80 echo "+ running configure ... "
81 test ! -z "$CONFIGURE_DEF_OPT" && echo " ./configure default flags: $CONFIGURE_DEF_OPT"
82 test ! -z "$CONFIGURE_EXT_OPT" && echo " ./configure external flags: $CONFIGURE_EXT_OPT"
85 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || {
86 echo " configure failed"
90 echo "Now type 'make' to compile $package."