codecmap: _XVID is gone
[platform/upstream/gst-libav.git] / autogen.sh
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
3
4 DIE=0
5 package=gst-ffmpeg
6 srcfile=configure.ac
7
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
15
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
24
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
31
32 autogen_options $@
33
34 printf "+ check for build tools"
35 if test ! -z "$NOCHECK"; then echo " skipped"; else  echo; fi
36 version_check "autoconf" "$AUTOCONF autoconf autoconf270 autoconf269 autoconf268 autoconf267 autoconf266 autoconf265 autoconf264 autoconf263 autoconf262 autoconf261 autoconf260" \
37               "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 60 || DIE=1
38 version_check "automake" "$AUTOMAKE automake automake-1.11 automake-1.10" \
39               "ftp://ftp.gnu.org/pub/gnu/automake/" 1 10 || DIE=1
40 version_check "libtoolize" "$LIBTOOLIZE libtoolize glibtoolize" \
41               "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
42 version_check "pkg-config" "" \
43               "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
44
45 die_check $DIE
46
47 aclocal_check || DIE=1
48 autoheader_check || DIE=1
49
50 die_check $DIE
51
52 # if no arguments specified then this will be printed
53 if test -z "$*"; then
54   echo "+ checking for autogen.sh options"
55   echo "  This autogen script will automatically run ./configure as:"
56   echo "  ./configure $CONFIGURE_DEF_OPT"
57   echo "  To pass any additional options, please specify them on the $0"
58   echo "  command line."
59 fi
60
61 toplevel_check $srcfile
62
63 tool_run "$libtoolize" "--copy --force"
64 tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
65 tool_run "$autoheader"
66
67 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode
68 echo timestamp > stamp-h.in 2> /dev/null
69
70 tool_run "$autoconf"
71 tool_run "$automake" "-a -c -Wno-portability"
72
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_FILE_OPT="--enable-$a"
77   done
78 fi
79
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_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a"
84   done
85 fi
86
87 test -n "$NOCONFIGURE" && {
88   echo "+ skipping configure stage for package $package, as requested."
89   echo "+ autogen.sh done."
90   exit 0
91 }
92
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"
96 test ! -z "$CONFIGURE_FILE_OPT" && echo "  ./configure enable/disable flags: $CONFIGURE_FILE_OPT"
97 echo
98
99 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || {
100         echo "  configure failed"
101         exit 1
102 }
103
104 echo
105 echo "Now type 'make' to compile $package."