2 # Run this to generate all the initial makefiles, etc.
6 srcfile=gst/gstobject.h
8 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
10 echo "You must have autoconf installed to compile $package."
11 echo "Download the appropriate package for your distribution,"
12 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
16 (automake --version) < /dev/null > /dev/null 2>&1 || {
18 echo "You must have automake installed to compile $package."
19 echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz"
20 echo "(or a newer version if it is available)"
24 (libtool --version) < /dev/null > /dev/null 2>&1 || {
26 echo "You must have libtool installed to compile $package."
27 echo "Get ftp://alpha.gnu.org/gnu/libtool-1.3.5.tar.gz"
28 echo "(or a newer version if it is available)"
32 libtool_version=`libtool --version | sed 's/^.* \([0-9\.]*\) .*$/\1/'`
33 libtool_major=`echo $libtool_version | cut -d. -f1`
34 libtool_minor=`echo $libtool_version | cut -d. -f2`
35 libtool_micro=`echo $libtool_version | cut -d. -f3`
36 if [ $libtool_major -lt 1 -o $libtool_minor -lt 3 -o $libtool_micro -lt 5 ];then
38 echo "You must have libtool 1.3.5 or greater to compile $packate."
39 echo "Get ftp://alpha.gnu.org/gnu/libtool-1.3.5.tar.gz"
40 echo "(or a newer version if it is available)"
44 if test "$DIE" -eq 1; then
49 echo "You must run this script in the top-level $package directory"
54 echo "I am going to run ./configure with no arguments - if you wish "
55 echo "to pass any to it, please specify them on the $0 command line."
58 libtoolize --copy --force
59 aclocal $ACLOCAL_FLAGS
62 automake --add-missing
64 if [ "x$1" = "x--autogen-recurse" ];then
65 exit # the rest will happen later
68 #for dir in `find * -name autogen.sh -print | grep -v '^autogen.sh$' | \
69 # sed 's/autogen.sh$//'`;do
70 # echo "Recursively running autogen.sh in $dir"
71 # pushd $dir > /dev/null
72 # ./autogen.sh --autogen-recurse "$@"
76 ./configure --enable-maintainer-mode --enable-plugin-srcdir --enable-debug-verbose "$@"
79 echo "Now type 'make' to compile $package."