]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blob - autogen.sh
Bump automake requirement to 1.10
[glsdk/gstreamer0-10.git] / autogen.sh
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
4 DIE=0
5 package=gstreamer
6 srcfile=gst/gst.c
8 # Make sure we have common
9 if test ! -f common/gst-autogen.sh;
10 then
11   echo "+ Setting up common submodule"
12   git submodule init
13 fi
14 git submodule update
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
25 # install pre-commit hook for doing clean commits
26 if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \);
27 then
28     rm -f .git/hooks/pre-commit
29     ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit
30 fi
34 CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-failing-tests --enable-poisoning --enable-gtk-doc --enable-docbook'
36 autogen_options $@
38 printf "+ check for build tools"
39 if test ! -z "$NOCHECK"; then echo ": skipped version checks"; else  echo; fi
40 version_check "autoconf" "$AUTOCONF autoconf autoconf270 autoconf269 autoconf268 autoconf267 autoconf266 autoconf265 autoconf264 autoconf263 autoconf262 autoconf261 autoconf260" \
41               "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 60 || DIE=1
42 version_check "automake" "$AUTOMAKE automake automake-1.11 automake-1.10" \
43               "ftp://ftp.gnu.org/pub/gnu/automake/" 1 10 || DIE=1
44 version_check "autopoint" "autopoint" \
45               "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 17 || DIE=1
46 version_check "libtoolize" "libtoolize libtoolize15 glibtoolize" \
47               "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
48 version_check "pkg-config" "" \
49               "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
51 die_check $DIE
53 aclocal_check || DIE=1
54 autoheader_check || DIE=1
56 die_check $DIE
58 # if no arguments specified then this will be printed
59 if test -z "$*"; then
60   echo "+ checking for autogen.sh options"
61   echo "  This autogen script will automatically run ./configure as:"
62   echo "  ./configure $CONFIGURE_DEF_OPT"
63   echo "  To pass any additional options, please specify them on the $0"
64   echo "  command line."
65 fi
67 toplevel_check $srcfile
69 # autopoint
70 #    older autopoint (< 0.12) has a tendency to complain about mkinstalldirs
71 if test -x mkinstalldirs; then rm mkinstalldirs; fi
72 #    first remove patch if necessary, then run autopoint, then reapply
73 if test -f po/Makefile.in.in;
74 then
75   patch -p0 -R --forward < common/gettext.patch
76 fi
77 tool_run "$autopoint" "--force" "patch -p0 < common/gettext.patch"
78 patch -p0 < common/gettext.patch
80 # aclocal
81 if test -f acinclude.m4; then rm acinclude.m4; fi
83 tool_run "$libtoolize" "--copy --force"
84 tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
85 tool_run "$autoheader"
87 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
88 echo timestamp > stamp-h.in 2> /dev/null
90 tool_run "$autoconf"
91 debug "automake: $automake"
92 tool_run "$automake" "--add-missing --copy"
94 test -n "$NOCONFIGURE" && {
95   echo "skipping configure stage for package $package, as requested."
96   echo "autogen.sh done."
97   exit 0
98 }
100 echo "+ running configure ... "
101 test ! -z "$CONFIGURE_DEF_OPT" && echo "  ./configure default flags: $CONFIGURE_DEF_OPT"
102 test ! -z "$CONFIGURE_EXT_OPT" && echo "  ./configure external flags: $CONFIGURE_EXT_OPT"
103 echo
105 echo ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT
106 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || {
107         echo "  configure failed"
108         exit 1
111 echo "Now type 'make' to compile $package."