]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blob - autogen.sh
autogen.sh : Use git submodule
[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 CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-failing-tests --enable-poisoning --enable-gtk-doc --enable-docbook'
27 autogen_options $@
29 echo -n "+ check for build tools"
30 if test ! -z "$NOCHECK"; then echo ": skipped version checks"; else  echo; fi
31 version_check "autoconf" "$AUTOCONF autoconf autoconf259 autoconf257 autoconf-2.54 autoconf-2.53 autoconf253 autoconf-2.52 autoconf252" \
32               "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
33 version_check "automake" "$AUTOMAKE automake automake-1.9 automake19 automake-1.8 automake18 automake-1.7 automake17 automake-1.6 automake16" \
34               "ftp://ftp.gnu.org/pub/gnu/automake/" 1 7 || DIE=1
35 version_check "autopoint" "autopoint" \
36               "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 17 || DIE=1
37 version_check "libtoolize" "libtoolize libtoolize15 glibtoolize" \
38               "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
39 version_check "pkg-config" "" \
40               "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
42 die_check $DIE
44 autoconf_2_52d_check || DIE=1
45 aclocal_check || DIE=1
46 autoheader_check || DIE=1
48 die_check $DIE
50 # if no arguments specified then this will be printed
51 if test -z "$*"; then
52   echo "+ checking for autogen.sh options"
53   echo "  This autogen script will automatically run ./configure as:"
54   echo "  ./configure $CONFIGURE_DEF_OPT"
55   echo "  To pass any additional options, please specify them on the $0"
56   echo "  command line."
57 fi
59 toplevel_check $srcfile
61 # autopoint
62 #    older autopoint (< 0.12) has a tendency to complain about mkinstalldirs
63 if test -x mkinstalldirs; then rm mkinstalldirs; fi
64 #    first remove patch if necessary, then run autopoint, then reapply
65 if test -f po/Makefile.in.in;
66 then
67   patch -p0 -R --forward < common/gettext.patch
68 fi
69 tool_run "$autopoint" "--force" "patch -p0 < common/gettext.patch"
70 patch -p0 < common/gettext.patch
72 # aclocal
73 if test -f acinclude.m4; then rm acinclude.m4; fi
74 tool_run "$aclocal" "-I common/m4 $ACLOCAL_FLAGS"
76 tool_run "$libtoolize" "--copy --force"
77 tool_run "$autoheader"
79 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
80 echo timestamp > stamp-h.in 2> /dev/null
82 tool_run "$autoconf"
83 debug "automake: $automake"
84 tool_run "$automake" "--add-missing --copy -Wno-portability"
86 test -n "$NOCONFIGURE" && {
87   echo "skipping configure stage for package $package, as requested."
88   echo "autogen.sh done."
89   exit 0
90 }
92 echo "+ running configure ... "
93 test ! -z "$CONFIGURE_DEF_OPT" && echo "  ./configure default flags: $CONFIGURE_DEF_OPT"
94 test ! -z "$CONFIGURE_EXT_OPT" && echo "  ./configure external flags: $CONFIGURE_EXT_OPT"
95 echo
97 echo ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT
98 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || {
99         echo "  configure failed"
100         exit 1
103 echo "Now type 'make' to compile $package."