Run libtoolize before aclocal
[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 have_svn=`which svn`
8 # FFMPEG specific properties
9 . ./ffmpegrev
10
11 # make sure we have common
12 if test ! -f common/gst-autogen.sh; 
13 then 
14   echo "+ Setting up common submodule"
15   git submodule init
16 fi
17 git submodule update
18
19 if test -x $have_svn && [ $have_svn ];
20 then
21     if test ! -f $FFMPEG_CO_DIR/configure
22     then
23         # checkout ffmpeg from its repository
24         rm -rf $FFMPEG_CO_DIR
25         echo "+ getting ffmpeg from svn"
26         svn -r $FFMPEG_REVISION co $FFMPEG_SVN $FFMPEG_CO_DIR
27         echo "+ updating externals"
28         svn update -r $FFMPEG_EXTERNALS_REVISION $FFMPEG_CO_DIR/libswscale
29     else
30         # update ffmpeg from its repository
31         echo "+ updating ffmpeg checkout"
32         svn -r $FFMPEG_REVISION up $FFMPEG_CO_DIR
33         echo "+ updating externals"
34         svn update -r $FFMPEG_EXTERNALS_REVISION $FFMPEG_CO_DIR/libswscale
35     fi
36 else
37     echo "Subversion needed for ffmpeg checkout, please install and/or add to \$PATH"
38     exit 0
39 fi
40
41 # source helper functions
42 if test ! -f common/gst-autogen.sh;
43 then
44   echo There is something wrong with your source tree.
45   echo You are missing common/gst-autogen.sh
46   exit 1
47 fi
48 . common/gst-autogen.sh
49
50 # install pre-commit hook for doing clean commits
51 if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \);
52 then
53     rm -f .git/hooks/pre-commit
54     ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit
55 fi
56
57 autogen_options $@
58
59 echo -n "+ check for build tools"
60 if test ! -z "$NOCHECK"; then echo " skipped"; else  echo; fi
61 version_check "autoconf" "$AUTOCONF autoconf autoconf-2.54 autoconf-2.53 autoconf-2.52" \
62               "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
63 version_check "automake" "$AUTOMAKE automake automake-1.9 automake-1.7 automake-1.6 automake-1.5" \
64               "ftp://ftp.gnu.org/pub/gnu/automake/" 1 6 || DIE=1
65 version_check "libtoolize" "$LIBTOOLIZE libtoolize libtoolize14 glibtoolize" \
66               "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 4 0 || DIE=1
67 version_check "pkg-config" "" \
68               "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
69
70 die_check $DIE
71
72 autoconf_2_52d_check || DIE=1
73 aclocal_check || DIE=1
74 autoheader_check || DIE=1
75
76 die_check $DIE
77
78 # if no arguments specified then this will be printed
79 if test -z "$*"; then
80   echo "+ checking for autogen.sh options"
81   echo "  This autogen script will automatically run ./configure as:"
82   echo "  ./configure $CONFIGURE_DEF_OPT"
83   echo "  To pass any additional options, please specify them on the $0"
84   echo "  command line."
85 fi
86
87 toplevel_check $srcfile
88
89 tool_run "$libtoolize" "--copy --force"
90 tool_run "$aclocal" "-I common/m4 $ACLOCAL_FLAGS"
91 tool_run "$autoheader"
92
93 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
94 echo timestamp > stamp-h.in 2> /dev/null
95
96 tool_run "$autoconf"
97 tool_run "$automake" "-a -c -Wno-portability"
98
99 # if enable exists, add an -enable option for each of the lines in that file
100 if test -f enable; then
101   for a in `cat enable`; do
102     CONFIGURE_FILE_OPT="--enable-$a"
103   done
104 fi
105
106 # if disable exists, add an -disable option for each of the lines in that file
107 if test -f disable; then
108   for a in `cat disable`; do
109     CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a"
110   done
111 fi
112
113 test -n "$NOCONFIGURE" && {
114   echo "+ skipping configure stage for package $package, as requested."
115   echo "+ autogen.sh done."
116   exit 0
117 }
118
119 echo "+ running configure ... "
120 test ! -z "$CONFIGURE_DEF_OPT" && echo "  ./configure default flags: $CONFIGURE_DEF_OPT"
121 test ! -z "$CONFIGURE_EXT_OPT" && echo "  ./configure external flags: $CONFIGURE_EXT_OPT"
122 test ! -z "$CONFIGURE_FILE_OPT" && echo "  ./configure enable/disable flags: $CONFIGURE_FILE_OPT"
123 echo
124
125 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || {
126         echo "  configure failed"
127         exit 1
128 }
129
130 echo
131 echo "Now type 'make' to compile $package."