autogen.sh.in: merge some changes from gst-plugins-base
[platform/upstream/gst-common.git] / autogen.sh.in
1 test -n "$srcdir" || srcdir=`dirname "$0"`
2 test -n "$srcdir" || srcdir=.
3
4 olddir=`pwd`
5 cd "$srcdir"
6
7 DIE=0
8 package=@PACKAGE@
9 srcfile=@SRCFILE@
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 # source helper functions
20 if test ! -f common/gst-autogen.sh;
21 then
22   echo There is something wrong with your source tree.
23   echo You are missing common/gst-autogen.sh
24   exit 1
25 fi
26 . common/gst-autogen.sh
27
28 # install pre-commit hook for doing clean commits
29 if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \);
30 then
31     rm -f .git/hooks/pre-commit
32     ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit
33 fi
34
35 # GNU gettext automake support doesn't get along with git.
36 # https://bugzilla.gnome.org/show_bug.cgi?id=661128
37 if test -d po ; then
38   touch -t 200001010000 po/@PACKAGE@-@API_VERSION@.pot
39 fi
40
41 CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-gtk-doc'
42
43 if test "x$package" = "xgstreamer"; then
44   CONFIGURE_DEF_OPT="$CONFIGURE_DEF_OPT --enable-docbook --enable-failing-tests --enable-poisoning"
45 fi
46
47 autogen_options $@
48
49 printf "+ check for build tools"
50 if test ! -z "$NOCHECK"; then echo ": skipped version checks"; else  echo; fi
51 version_check "autoconf" "$AUTOCONF autoconf autoconf270 autoconf269 autoconf268 autoconf267 autoconf266 autoconf265 autoconf264 autoconf263 autoconf262" \
52               "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 62 || DIE=1
53 version_check "automake" "$AUTOMAKE automake automake-1.11" \
54               "ftp://ftp.gnu.org/pub/gnu/automake/" 1 11 || DIE=1
55 version_check "autopoint" "autopoint" \
56               "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 17 || DIE=1
57 version_check "libtoolize" "$LIBTOOLIZE libtoolize glibtoolize" \
58               "ftp://ftp.gnu.org/pub/gnu/libtool/" 2 2 6 || DIE=1
59 version_check "pkg-config" "" \
60               "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
61
62 die_check $DIE
63
64 aclocal_check || DIE=1
65 autoheader_check || DIE=1
66
67 die_check $DIE
68
69 # if no arguments specified then this will be printed
70 if test -z "$*" && test -z "$NOCONFIGURE"; then
71   echo "+ checking for autogen.sh options"
72   echo "  This autogen script will automatically run ./configure as:"
73   echo "  ./configure $CONFIGURE_DEF_OPT"
74   echo "  To pass any additional options, please specify them on the $0"
75   echo "  command line."
76 fi
77
78 toplevel_check $srcfile
79
80 # autopoint
81 #    older autopoint (< 0.12) has a tendency to complain about mkinstalldirs
82 if test -x mkinstalldirs; then rm mkinstalldirs; fi
83 #    first remove patch if necessary, then run autopoint, then reapply
84 if test -f po/Makefile.in.in;
85 then
86   patch -p0 -R --forward < common/gettext.patch
87 fi
88 tool_run "$autopoint" "--force" "patch -p0 < common/gettext.patch"
89 patch -p0 < common/gettext.patch
90
91 # aclocal
92 if test -f acinclude.m4; then rm acinclude.m4; fi
93
94 tool_run "$libtoolize" "--copy --force"
95 tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
96 tool_run "$autoheader"
97
98 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode
99 echo timestamp > stamp-h.in 2> /dev/null
100
101 tool_run "$autoconf"
102 debug "automake: $automake"
103 tool_run "$automake" "--add-missing --copy"
104
105 test -n "$NOCONFIGURE" && {
106   echo "+ skipping configure stage for package $package, as requested."
107   echo "+ autogen.sh done."
108   exit 0
109 }
110
111 cd "$olddir"
112
113 echo "+ running configure ... "
114 test ! -z "$CONFIGURE_DEF_OPT" && echo "  default flags:  $CONFIGURE_DEF_OPT"
115 test ! -z "$CONFIGURE_EXT_OPT" && echo "  external flags: $CONFIGURE_EXT_OPT"
116 echo
117
118 echo "$srcdir/configure" $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT
119 "$srcdir/configure" $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || {
120         echo "  configure failed"
121         exit 1
122 }
123
124 echo "Now type 'make' to compile $package."