2 # Run this to generate all the initial makefiles, etc.
8 # a quick cvs co if necessary to alleviate the pain - may remove this
9 # when developers get a clue ;)
12 echo "+ getting common/ from cvs"
16 # source helper functions
17 if test ! -e 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
25 CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-plugin-builddir --enable-debug --enable-DEBUG'
29 echo -n "+ check for build tools"
30 if test ! -z $NOCHECK; then echo " skipped"; 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
42 autoconf_2.52d_check || DIE=1
43 aclocal_check || DIE=1
44 autoheader_check || DIE=1
48 # if no arguments specified then this will be printed
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"
57 toplevel_check $srcfile
59 tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
61 # FIXME : why does libtoolize keep complaining about aclocal ?
63 echo "+ not running libtoolize until libtool fix has flown downstream"
64 # tool_run "libtoolize" "--copy --force"
65 tool_run "$autoheader"
67 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
68 echo timestamp > stamp-h.in 2> /dev/null
71 tool_run "$automake" "-a -c"
73 # if enable exists, add an -enable option for each of the lines in that file
74 if test -f enable; then
75 for a in `cat enable`; do
76 CONFIGURE_OPT="$CONFIGURE_OPT --enable-$a"
80 # if disable exists, add an -disable option for each of the lines in that file
81 if test -f disable; then
82 for a in `cat disable`; do
83 CONFIGURE_OPT="$CONFIGURE_OPT --disable-$a"
87 test -n "$NOCONFIGURE" && {
88 echo "+ skipping configure stage for package $package, as requested."
89 echo "+ autogen.sh done."
93 echo "+ running configure ... "
94 test ! -z "$CONFIGURE_DEF_OPT" && echo " ./configure default flags: $CONFIGURE_DEF_OPT"
95 test ! -z "$CONFIGURE_EXT_OPT" && echo " ./configure external flags: $CONFIGURE_EXT_OPT"
98 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || {
99 echo " configure failed"
103 echo "Now type 'make' to compile $package."