]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gst-plugins-ugly0-10.git/blob - autogen.sh
smallish fixes
[glsdk/gst-plugins-ugly0-10.git] / autogen.sh
1 #!/bin/bash
2 # Run this to generate all the initial makefiles, etc.
4 DIE=0
5 package=gst-plugins
6 srcfile=gst/law/alaw.c
8 # a quick cvs co if necessary to alleviate the pain - may remove this
9 # when developers get a clue ;)
10 if test ! -d common; 
11 then 
12   echo "+ getting common/ from cvs"
13   cvs co common 
14 fi
16 # source helper functions
17 if test ! -e 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
25 autogen_options $@
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 --enable-debug --enable-DEBUG'
37 # if no arguments specified then this will be printed
38 if test -z "$*"; then
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"
43   echo "  command line."
44 fi
46 toplevel_check $srcfile
48 tool_run "aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
50 # FIXME : why does libtoolize keep complaining about aclocal ?
52 echo "+ not running libtoolize until libtool fix has flown downstream"
53 # tool_run "libtoolize" "--copy --force"
54 tool_run "autoheader"
56 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
57 echo timestamp > stamp-h.in 2> /dev/null
59 tool_run "autoconf"
60 tool_run "automake" "-a -c"
62 # if enable exists, add an -enable option for each of the lines in that file
63 if test -f enable; then
64   for a in `cat enable`; do
65     CONFIGURE_OPT="$CONFIGURE_OPT --enable-$a"
66   done
67 fi
69 # if disable exists, add an -disable option for each of the lines in that file
70 if test -f disable; then
71   for a in `cat disable`; do
72     CONFIGURE_OPT="$CONFIGURE_OPT --disable-$a"
73   done
74 fi
76 test -n "$NOCONFIGURE" && {
77   echo "+ skipping configure stage for package $package, as requested."
78   echo "+ autogen.sh done."
79   exit 0
80 }
82 echo "+ running configure ... "
83 test ! -z "$CONFIGURE_DEF_OPT" && echo "  ./configure default flags: $CONFIGURE_DEF_OPT"
84 test ! -z "$CONFIGURE_EXT_OPT" && echo "  ./configure external flags: $CONFIGURE_EXT_OPT"
85 echo
87 ./configure $CONFIGURE_OPT $CONFIGURE_EXT_OPT || {
88         echo "  configure failed"
89         exit 1
90 }
92 echo "Now type 'make' to compile $package."