2003-05-09 08:09:38 +00:00
|
|
|
#!/bin/sh
|
2001-12-17 18:37:01 +00:00
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
|
|
|
|
DIE=0
|
2008-06-03 15:41:05 +00:00
|
|
|
package=gst-plugins-bad
|
2006-03-13 12:14:18 +00:00
|
|
|
srcfile=gst/speed/gstspeed.c
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2009-01-21 03:32:16 +00:00
|
|
|
# Make sure we have common
|
|
|
|
if test ! -f common/gst-autogen.sh;
|
2005-09-06 14:05:50 +00:00
|
|
|
then
|
2009-01-21 03:32:16 +00:00
|
|
|
echo "+ Setting up common submodule"
|
|
|
|
git submodule init
|
2002-02-06 18:46:39 +00:00
|
|
|
fi
|
2009-01-21 03:32:16 +00:00
|
|
|
git submodule update
|
2002-02-06 18:46:39 +00:00
|
|
|
|
2002-02-06 18:18:16 +00:00
|
|
|
# source helper functions
|
2003-05-09 08:09:38 +00:00
|
|
|
if test ! -f common/gst-autogen.sh;
|
2002-02-06 18:18:16 +00:00
|
|
|
then
|
|
|
|
echo There is something wrong with your source tree.
|
|
|
|
echo You are missing common/gst-autogen.sh
|
2001-12-17 18:37:01 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2002-02-06 18:18:16 +00:00
|
|
|
. common/gst-autogen.sh
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2009-01-22 05:12:55 +00:00
|
|
|
# install pre-commit hook for doing clean commits
|
2009-01-30 07:54:42 +00:00
|
|
|
if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \);
|
2009-01-22 05:12:55 +00:00
|
|
|
then
|
2009-01-30 08:03:42 +00:00
|
|
|
rm -f .git/hooks/pre-commit
|
|
|
|
ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit
|
2009-01-22 05:12:55 +00:00
|
|
|
fi
|
|
|
|
|
2005-11-06 21:55:01 +00:00
|
|
|
CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-gtk-doc'
|
2002-05-27 14:01:51 +00:00
|
|
|
|
2002-02-06 18:18:16 +00:00
|
|
|
autogen_options $@
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2009-06-26 14:10:05 +00:00
|
|
|
printf "+ check for build tools"
|
2003-05-21 15:16:51 +00:00
|
|
|
if test ! -z "$NOCHECK"; then echo " skipped"; else echo; fi
|
2010-06-28 15:20:09 +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
|
|
|
|
version_check "automake" "$AUTOMAKE automake automake-1.11 automake-1.10" \
|
|
|
|
"ftp://ftp.gnu.org/pub/gnu/automake/" 1 10 || DIE=1
|
2004-01-19 15:45:55 +00:00
|
|
|
version_check "autopoint" "autopoint" \
|
2008-11-29 13:33:30 +00:00
|
|
|
"ftp://ftp.gnu.org/pub/gnu/gettext/" 0 17 || DIE=1
|
2006-05-08 11:55:02 +00:00
|
|
|
version_check "libtoolize" "$LIBTOOLIZE libtoolize glibtoolize" \
|
2004-02-29 08:35:55 +00:00
|
|
|
"ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
|
2002-09-30 07:20:35 +00:00
|
|
|
version_check "pkg-config" "" \
|
|
|
|
"http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-05-18 22:45:56 +00:00
|
|
|
die_check $DIE
|
|
|
|
|
2002-04-18 21:57:05 +00:00
|
|
|
aclocal_check || DIE=1
|
2002-05-27 14:01:51 +00:00
|
|
|
autoheader_check || DIE=1
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-05-18 22:45:56 +00:00
|
|
|
die_check $DIE
|
|
|
|
|
2002-02-06 18:18:16 +00:00
|
|
|
# if no arguments specified then this will be printed
|
2001-12-17 18:37:01 +00:00
|
|
|
if test -z "$*"; then
|
2002-02-07 14:30:20 +00:00
|
|
|
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."
|
2001-12-17 18:37:01 +00:00
|
|
|
fi
|
|
|
|
|
2002-02-06 18:18:16 +00:00
|
|
|
toplevel_check $srcfile
|
|
|
|
|
2004-01-19 15:45:55 +00:00
|
|
|
# autopoint
|
|
|
|
# older autopoint (< 0.12) has a tendency to complain about mkinstalldirs
|
2004-02-22 15:59:08 +00:00
|
|
|
if test -x mkinstalldirs; then rm mkinstalldirs; fi
|
2004-01-19 15:45:55 +00:00
|
|
|
# first remove patch if necessary, then run autopoint, then reapply
|
2005-07-08 10:47:28 +00:00
|
|
|
if test -f po/Makefile.in.in;
|
|
|
|
then
|
|
|
|
patch -p0 -R < common/gettext.patch
|
|
|
|
fi
|
|
|
|
tool_run "$autopoint --force"
|
|
|
|
patch -p0 < common/gettext.patch
|
2004-01-19 15:45:55 +00:00
|
|
|
|
2003-08-17 23:35:38 +00:00
|
|
|
tool_run "$libtoolize" "--copy --force"
|
2009-05-10 09:17:17 +00:00
|
|
|
tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
|
2002-05-27 14:01:51 +00:00
|
|
|
tool_run "$autoheader"
|
2002-02-06 18:18:16 +00:00
|
|
|
|
2011-03-18 18:34:57 +00:00
|
|
|
# touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode
|
2001-12-26 23:14:44 +00:00
|
|
|
echo timestamp > stamp-h.in 2> /dev/null
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-03-02 12:03:23 +00:00
|
|
|
tool_run "$autoconf"
|
2009-05-22 08:55:20 +00:00
|
|
|
tool_run "$automake" "-a -c"
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2001-12-20 23:13:50 +00:00
|
|
|
# if enable exists, add an -enable option for each of the lines in that file
|
|
|
|
if test -f enable; then
|
|
|
|
for a in `cat enable`; do
|
2003-05-12 15:08:49 +00:00
|
|
|
CONFIGURE_FILE_OPT="--enable-$a"
|
2001-12-20 23:13:50 +00:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
# if disable exists, add an -disable option for each of the lines in that file
|
|
|
|
if test -f disable; then
|
|
|
|
for a in `cat disable`; do
|
2003-05-12 15:08:49 +00:00
|
|
|
CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a"
|
2001-12-20 23:13:50 +00:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2001-12-22 01:59:48 +00:00
|
|
|
test -n "$NOCONFIGURE" && {
|
2002-02-07 14:30:20 +00:00
|
|
|
echo "+ skipping configure stage for package $package, as requested."
|
|
|
|
echo "+ autogen.sh done."
|
|
|
|
exit 0
|
2001-12-22 01:59:48 +00:00
|
|
|
}
|
2001-12-20 23:13:50 +00:00
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
echo "+ running configure ... "
|
2002-02-06 18:18:16 +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"
|
2003-05-12 15:08:49 +00:00
|
|
|
test ! -z "$CONFIGURE_FILE_OPT" && echo " ./configure enable/disable flags: $CONFIGURE_FILE_OPT"
|
2001-12-17 18:37:01 +00:00
|
|
|
echo
|
|
|
|
|
2003-05-12 15:08:49 +00:00
|
|
|
./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || {
|
2002-02-06 18:18:16 +00:00
|
|
|
echo " configure failed"
|
|
|
|
exit 1
|
2001-12-17 18:37:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
echo "Now type 'make' to compile $package."
|