2003-04-13 13:38:35 +00:00
|
|
|
#!/bin/sh
|
2000-01-30 09:03:00 +00:00
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
|
|
|
|
DIE=0
|
2002-02-09 21:05:12 +00:00
|
|
|
package=gstreamer
|
|
|
|
srcfile=gst/gst.c
|
2001-12-22 01:58:59 +00:00
|
|
|
|
2009-01-21 03:29:25 +00:00
|
|
|
# Make sure we have common
|
|
|
|
if test ! -f common/gst-autogen.sh;
|
2005-09-05 17:55:10 +00:00
|
|
|
then
|
2009-01-21 03:29:25 +00:00
|
|
|
echo "+ Setting up common submodule"
|
|
|
|
git submodule init
|
2002-02-06 22:28:25 +00:00
|
|
|
fi
|
2009-06-03 08:41:21 +00:00
|
|
|
git submodule update
|
2002-02-06 21:35:37 +00:00
|
|
|
|
2002-02-09 21:05:12 +00:00
|
|
|
# source helper functions
|
|
|
|
if test ! -f common/gst-autogen.sh;
|
|
|
|
then
|
|
|
|
echo There is something wrong with your source tree.
|
|
|
|
echo You are missing common/gst-autogen.sh
|
2001-12-10 17:59:35 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2002-02-09 21:05:12 +00:00
|
|
|
. common/gst-autogen.sh
|
2001-12-10 17:59:35 +00:00
|
|
|
|
2009-01-22 04:35:02 +00:00
|
|
|
# install pre-commit hook for doing clean commits
|
2009-01-30 07:30:28 +00:00
|
|
|
if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \);
|
2009-01-22 04:35:02 +00:00
|
|
|
then
|
2009-01-30 07:30:28 +00:00
|
|
|
rm -f .git/hooks/pre-commit
|
|
|
|
ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit
|
2009-01-22 04:35:02 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-07-24 07:37:52 +00:00
|
|
|
CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-failing-tests --enable-poisoning --enable-gtk-doc --enable-docbook'
|
2002-05-27 13:37:37 +00:00
|
|
|
|
2002-02-09 21:05:12 +00:00
|
|
|
autogen_options $@
|
2001-12-10 17:59:35 +00:00
|
|
|
|
2009-06-26 12:33:50 +00:00
|
|
|
printf "+ check for build tools"
|
2003-05-01 13:11:08 +00:00
|
|
|
if test ! -z "$NOCHECK"; then echo ": skipped version checks"; else echo; fi
|
2010-04-07 18:05:04 +00:00
|
|
|
version_check "autoconf" "$AUTOCONF autoconf autoconf270 autoconf269 autoconf268 autoconf267 autoconf266 autoconf265 autoconf264 autoconf263 autoconf262 autoconf261 autoconf260" \
|
|
|
|
"ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 60 || DIE=1
|
2010-06-28 14:28:59 +00:00
|
|
|
version_check "automake" "$AUTOMAKE automake automake-1.11 automake-1.10" \
|
|
|
|
"ftp://ftp.gnu.org/pub/gnu/automake/" 1 10 || DIE=1
|
2004-01-13 11:30:00 +00:00
|
|
|
version_check "autopoint" "autopoint" \
|
2009-06-03 08:45:25 +00:00
|
|
|
"ftp://ftp.gnu.org/pub/gnu/gettext/" 0 17 || DIE=1
|
2006-05-08 11:43:19 +00:00
|
|
|
version_check "libtoolize" "libtoolize libtoolize15 glibtoolize" \
|
2004-02-29 08:34:03 +00:00
|
|
|
"ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
|
2002-09-30 07:17:40 +00:00
|
|
|
version_check "pkg-config" "" \
|
|
|
|
"http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-02-13 12:18:10 +00:00
|
|
|
die_check $DIE
|
|
|
|
|
2002-04-18 20:47:00 +00:00
|
|
|
aclocal_check || DIE=1
|
2002-05-27 13:37:37 +00:00
|
|
|
autoheader_check || DIE=1
|
2002-02-09 21:05:12 +00:00
|
|
|
|
2002-02-13 12:18:10 +00:00
|
|
|
die_check $DIE
|
|
|
|
|
2002-02-09 21:05:12 +00:00
|
|
|
# if no arguments specified then this will be printed
|
|
|
|
if test -z "$*"; then
|
|
|
|
echo "+ checking for autogen.sh options"
|
|
|
|
echo " This autogen script will automatically run ./configure as:"
|
|
|
|
echo " ./configure $CONFIGURE_DEF_OPT"
|
|
|
|
echo " To pass any additional options, please specify them on the $0"
|
|
|
|
echo " command line."
|
2000-01-30 09:03:00 +00:00
|
|
|
fi
|
|
|
|
|
2002-02-09 21:05:12 +00:00
|
|
|
toplevel_check $srcfile
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-01-13 15:13:11 +00:00
|
|
|
# autopoint
|
|
|
|
# older autopoint (< 0.12) has a tendency to complain about mkinstalldirs
|
2004-02-22 15:55:29 +00:00
|
|
|
if test -x mkinstalldirs; then rm mkinstalldirs; fi
|
2004-01-13 15:13:11 +00:00
|
|
|
# first remove patch if necessary, then run autopoint, then reapply
|
2004-01-13 11:30:00 +00:00
|
|
|
if test -f po/Makefile.in.in;
|
|
|
|
then
|
2005-04-10 18:19:18 +00:00
|
|
|
patch -p0 -R --forward < common/gettext.patch
|
2004-01-13 11:30:00 +00:00
|
|
|
fi
|
2004-12-08 09:18:38 +00:00
|
|
|
tool_run "$autopoint" "--force" "patch -p0 < common/gettext.patch"
|
2004-01-13 11:30:00 +00:00
|
|
|
patch -p0 < common/gettext.patch
|
|
|
|
|
|
|
|
# aclocal
|
2003-05-01 13:17:34 +00:00
|
|
|
if test -f acinclude.m4; then rm acinclude.m4; fi
|
2001-12-14 11:30:50 +00:00
|
|
|
|
2004-02-12 12:09:28 +00:00
|
|
|
tool_run "$libtoolize" "--copy --force"
|
2010-03-30 14:20:07 +00:00
|
|
|
tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
|
2002-05-27 13:37:37 +00:00
|
|
|
tool_run "$autoheader"
|
2002-02-09 21:05:12 +00:00
|
|
|
|
2001-12-20 01:20:22 +00:00
|
|
|
# touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
|
|
|
|
echo timestamp > stamp-h.in 2> /dev/null
|
2002-02-09 21:05:12 +00:00
|
|
|
|
2002-03-02 12:01:32 +00:00
|
|
|
tool_run "$autoconf"
|
|
|
|
debug "automake: $automake"
|
2009-05-20 16:07:37 +00:00
|
|
|
tool_run "$automake" "--add-missing --copy"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-22 01:58:59 +00:00
|
|
|
test -n "$NOCONFIGURE" && {
|
2002-02-09 21:05:12 +00:00
|
|
|
echo "skipping configure stage for package $package, as requested."
|
|
|
|
echo "autogen.sh done."
|
|
|
|
exit 0
|
2001-12-22 01:58:59 +00:00
|
|
|
}
|
|
|
|
|
2001-12-10 14:05:50 +00:00
|
|
|
echo "+ running configure ... "
|
2002-02-09 21:05:12 +00:00
|
|
|
test ! -z "$CONFIGURE_DEF_OPT" && echo " ./configure default flags: $CONFIGURE_DEF_OPT"
|
|
|
|
test ! -z "$CONFIGURE_EXT_OPT" && echo " ./configure external flags: $CONFIGURE_EXT_OPT"
|
2001-10-17 10:21:27 +00:00
|
|
|
echo
|
|
|
|
|
2004-02-05 13:34:10 +00:00
|
|
|
echo ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT
|
2002-02-10 15:54:09 +00:00
|
|
|
./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || {
|
2002-02-09 21:05:12 +00:00
|
|
|
echo " configure failed"
|
|
|
|
exit 1
|
2001-05-29 16:40:07 +00:00
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
echo "Now type 'make' to compile $package."
|
2002-02-09 21:05:12 +00:00
|
|
|
|