renatofilho@320: # a silly hack that generates autoregen.sh but it's handy renatofilho@320: echo "#!/bin/sh" > autoregen.sh renatofilho@320: echo "./autogen.sh $@ \$@" >> autoregen.sh renatofilho@320: chmod +x autoregen.sh renatofilho@320: renatofilho@320: # helper functions for autogen.sh renatofilho@320: renatofilho@320: debug () renatofilho@320: # print out a debug message if DEBUG is a defined variable renatofilho@320: { renatofilho@320: if test ! -z "$DEBUG" renatofilho@320: then renatofilho@320: echo "DEBUG: $1" renatofilho@320: fi renatofilho@320: } renatofilho@320: renatofilho@320: version_check () renatofilho@320: # check the version of a package renatofilho@320: # first argument : package name (executable) renatofilho@320: # second argument : optional path where to look for it instead renatofilho@320: # third argument : source download url renatofilho@320: # rest of arguments : major, minor, micro version renatofilho@320: # all consecutive ones : suggestions for binaries to use renatofilho@320: # (if not specified in second argument) renatofilho@320: { renatofilho@320: PACKAGE=$1 renatofilho@320: PKG_PATH=$2 renatofilho@320: URL=$3 renatofilho@320: MAJOR=$4 renatofilho@320: MINOR=$5 renatofilho@320: MICRO=$6 renatofilho@320: renatofilho@320: # for backwards compatibility, we let PKG_PATH=PACKAGE when PKG_PATH null renatofilho@320: if test -z "$PKG_PATH"; then PKG_PATH=$PACKAGE; fi renatofilho@320: debug "major $MAJOR minor $MINOR micro $MICRO" renatofilho@320: VERSION=$MAJOR renatofilho@320: if test ! -z "$MINOR"; then VERSION=$VERSION.$MINOR; else MINOR=0; fi renatofilho@320: if test ! -z "$MICRO"; then VERSION=$VERSION.$MICRO; else MICRO=0; fi renatofilho@320: renatofilho@320: debug "major $MAJOR minor $MINOR micro $MICRO" renatofilho@320: renatofilho@320: for SUGGESTION in $PKG_PATH; do renatofilho@320: COMMAND="$SUGGESTION" renatofilho@320: renatofilho@320: # don't check if asked not to renatofilho@320: test -z "$NOCHECK" && { renatofilho@320: echo -n " checking for $COMMAND >= $VERSION ... " renatofilho@320: } || { renatofilho@320: # we set a var with the same name as the package, but stripped of renatofilho@320: # unwanted chars renatofilho@320: VAR=`echo $PACKAGE | sed 's/-//g'` renatofilho@320: debug "setting $VAR" renatofilho@320: eval $VAR="$COMMAND" renatofilho@320: return 0 renatofilho@320: } renatofilho@320: renatofilho@320: debug "checking version with $COMMAND" renatofilho@320: ($COMMAND --version) < /dev/null > /dev/null 2>&1 || renatofilho@320: { renatofilho@320: echo "not found." renatofilho@320: continue renatofilho@320: } renatofilho@320: # strip everything that's not a digit, then use cut to get the first field renatofilho@320: pkg_version=`$COMMAND --version|head -n 1|sed 's/^[^0-9]*//'|cut -d' ' -f1` renatofilho@320: debug "pkg_version $pkg_version" renatofilho@320: # remove any non-digit characters from the version numbers to permit numeric renatofilho@320: # comparison renatofilho@320: pkg_major=`echo $pkg_version | cut -d. -f1 | sed s/[a-zA-Z\-].*//g` renatofilho@320: pkg_minor=`echo $pkg_version | cut -d. -f2 | sed s/[a-zA-Z\-].*//g` renatofilho@320: pkg_micro=`echo $pkg_version | cut -d. -f3 | sed s/[a-zA-Z\-].*//g` renatofilho@320: test -z "$pkg_major" && pkg_major=0 renatofilho@320: test -z "$pkg_minor" && pkg_minor=0 renatofilho@320: test -z "$pkg_micro" && pkg_micro=0 renatofilho@320: debug "found major $pkg_major minor $pkg_minor micro $pkg_micro" renatofilho@320: renatofilho@320: #start checking the version renatofilho@320: debug "version check" renatofilho@320: renatofilho@320: # reset check renatofilho@320: WRONG= renatofilho@320: renatofilho@320: if [ ! "$pkg_major" -gt "$MAJOR" ]; then renatofilho@320: debug "major: $pkg_major <= $MAJOR" renatofilho@320: if [ "$pkg_major" -lt "$MAJOR" ]; then renatofilho@320: debug "major: $pkg_major < $MAJOR" renatofilho@320: WRONG=1 renatofilho@320: elif [ ! "$pkg_minor" -gt "$MINOR" ]; then renatofilho@320: debug "minor: $pkg_minor <= $MINOR" renatofilho@320: if [ "$pkg_minor" -lt "$MINOR" ]; then renatofilho@320: debug "minor: $pkg_minor < $MINOR" renatofilho@320: WRONG=1 renatofilho@320: elif [ "$pkg_micro" -lt "$MICRO" ]; then renatofilho@320: debug "micro: $pkg_micro < $MICRO" renatofilho@320: WRONG=1 renatofilho@320: fi renatofilho@320: fi renatofilho@320: fi renatofilho@320: renatofilho@320: if test ! -z "$WRONG"; then renatofilho@320: echo "found $pkg_version, not ok !" renatofilho@320: continue renatofilho@320: else renatofilho@320: echo "found $pkg_version, ok." renatofilho@320: # we set a var with the same name as the package, but stripped of renatofilho@320: # unwanted chars renatofilho@320: VAR=`echo $PACKAGE | sed 's/-//g'` renatofilho@320: debug "setting $VAR" renatofilho@320: eval $VAR="$COMMAND" renatofilho@320: return 0 renatofilho@320: fi renatofilho@320: done renatofilho@320: renatofilho@320: echo "not found !" renatofilho@320: echo "You must have $PACKAGE installed to compile $package." renatofilho@320: echo "Download the appropriate package for your distribution," renatofilho@320: echo "or get the source tarball at $URL" renatofilho@320: return 1; renatofilho@320: } renatofilho@320: renatofilho@320: aclocal_check () renatofilho@320: { renatofilho@320: # normally aclocal is part of automake renatofilho@320: # so we expect it to be in the same place as automake renatofilho@320: # so if a different automake is supplied, we need to adapt as well renatofilho@320: # so how's about replacing automake with aclocal in the set var, renatofilho@320: # and saving that in $aclocal ? renatofilho@320: # note, this will fail if the actual automake isn't called automake* renatofilho@320: # or if part of the path before it contains it renatofilho@320: if [ -z "$automake" ]; then renatofilho@320: echo "Error: no automake variable set !" renatofilho@320: return 1 renatofilho@320: else renatofilho@320: aclocal=`echo $automake | sed s/automake/aclocal/` renatofilho@320: debug "aclocal: $aclocal" renatofilho@320: if [ "$aclocal" != "aclocal" ]; renatofilho@320: then renatofilho@320: CONFIGURE_DEF_OPT="$CONFIGURE_DEF_OPT --with-aclocal=$aclocal" renatofilho@320: fi renatofilho@320: if [ ! -x `which $aclocal` ]; then renatofilho@320: echo "Error: cannot execute $aclocal !" renatofilho@320: return 1 renatofilho@320: fi renatofilho@320: fi renatofilho@320: } renatofilho@320: renatofilho@320: autoheader_check () renatofilho@320: { renatofilho@320: # same here - autoheader is part of autoconf renatofilho@320: # use the same voodoo renatofilho@320: if [ -z "$autoconf" ]; then renatofilho@320: echo "Error: no autoconf variable set !" renatofilho@320: return 1 renatofilho@320: else renatofilho@320: autoheader=`echo $autoconf | sed s/autoconf/autoheader/` renatofilho@320: debug "autoheader: $autoheader" renatofilho@320: if [ "$autoheader" != "autoheader" ]; renatofilho@320: then renatofilho@320: CONFIGURE_DEF_OPT="$CONFIGURE_DEF_OPT --with-autoheader=$autoheader" renatofilho@320: fi renatofilho@320: if [ ! -x `which $autoheader` ]; then renatofilho@320: echo "Error: cannot execute $autoheader !" renatofilho@320: return 1 renatofilho@320: fi renatofilho@320: fi renatofilho@320: renatofilho@320: } renatofilho@320: renatofilho@320: autoconf_2_52d_check () renatofilho@320: { renatofilho@320: # autoconf 2.52d has a weird issue involving a yes:no error renatofilho@320: # so don't allow it's use renatofilho@320: test -z "$NOCHECK" && { renatofilho@320: ac_version=`$autoconf --version|head -n 1|sed 's/^[a-zA-Z\.\ ()]*//;s/ .*$//'` renatofilho@320: if test "$ac_version" = "2.52d"; then renatofilho@320: echo "autoconf 2.52d has an issue with our current build." renatofilho@320: echo "We don't know who's to blame however. So until we do, get a" renatofilho@320: echo "regular version. RPM's of a working version are on the gstreamer site." renatofilho@320: exit 1 renatofilho@320: fi renatofilho@320: } renatofilho@320: return 0 renatofilho@320: } renatofilho@320: renatofilho@320: die_check () renatofilho@320: { renatofilho@320: # call with $DIE renatofilho@320: # if set to 1, we need to print something helpful then die renatofilho@320: DIE=$1 renatofilho@320: if test "x$DIE" = "x1"; renatofilho@320: then renatofilho@320: echo renatofilho@320: echo "- Please get the right tools before proceeding." renatofilho@320: echo "- Alternatively, if you're sure we're wrong, run with --nocheck." renatofilho@320: exit 1 renatofilho@320: fi renatofilho@320: } renatofilho@320: renatofilho@320: autogen_options () renatofilho@320: { renatofilho@320: if test "x$1" = "x"; then renatofilho@320: return 0 renatofilho@320: fi renatofilho@320: renatofilho@320: while test "x$1" != "x" ; do renatofilho@320: optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` renatofilho@320: case "$1" in renatofilho@320: --noconfigure) renatofilho@320: NOCONFIGURE=defined renatofilho@320: AUTOGEN_EXT_OPT="$AUTOGEN_EXT_OPT --noconfigure" renatofilho@320: echo "+ configure run disabled" renatofilho@320: shift renatofilho@320: ;; renatofilho@320: --nocheck) renatofilho@320: AUTOGEN_EXT_OPT="$AUTOGEN_EXT_OPT --nocheck" renatofilho@320: NOCHECK=defined renatofilho@320: echo "+ autotools version check disabled" renatofilho@320: shift renatofilho@320: ;; renatofilho@320: --debug) renatofilho@320: DEBUG=defined renatofilho@320: AUTOGEN_EXT_OPT="$AUTOGEN_EXT_OPT --debug" renatofilho@320: echo "+ debug output enabled" renatofilho@320: shift renatofilho@320: ;; renatofilho@320: --prefix=*) renatofilho@320: CONFIGURE_EXT_OPT="$CONFIGURE_EXT_OPT --prefix=$optarg" renatofilho@320: echo "+ passing --prefix=$optarg to configure" renatofilho@320: shift renatofilho@320: ;; renatofilho@320: --prefix) renatofilho@320: shift renatofilho@320: echo "DEBUG: $1" renatofilho@320: CONFIGURE_EXT_OPT="$CONFIGURE_EXT_OPT --prefix=$1" renatofilho@320: echo "+ passing --prefix=$1 to configure" renatofilho@320: shift renatofilho@320: ;; renatofilho@320: -h|--help) renatofilho@320: echo "autogen.sh (autogen options) -- (configure options)" renatofilho@320: echo "autogen.sh help options: " renatofilho@320: echo " --noconfigure don't run the configure script" renatofilho@320: echo " --nocheck don't do version checks" renatofilho@320: echo " --debug debug the autogen process" renatofilho@320: echo " --prefix will be passed on to configure" renatofilho@320: echo renatofilho@320: echo " --with-autoconf PATH use autoconf in PATH" renatofilho@320: echo " --with-automake PATH use automake in PATH" renatofilho@320: echo renatofilho@320: echo "to pass options to configure, put them as arguments after -- " renatofilho@320: exit 1 renatofilho@320: ;; renatofilho@320: --with-automake=*) renatofilho@320: AUTOMAKE=$optarg renatofilho@320: echo "+ using alternate automake in $optarg" renatofilho@320: CONFIGURE_DEF_OPT="$CONFIGURE_DEF_OPT --with-automake=$AUTOMAKE" renatofilho@320: shift renatofilho@320: ;; renatofilho@320: --with-autoconf=*) renatofilho@320: AUTOCONF=$optarg renatofilho@320: echo "+ using alternate autoconf in $optarg" renatofilho@320: CONFIGURE_DEF_OPT="$CONFIGURE_DEF_OPT --with-autoconf=$AUTOCONF" renatofilho@320: shift renatofilho@320: ;; renatofilho@320: --disable*|--enable*|--with*) renatofilho@320: echo "+ passing option $1 to configure" renatofilho@320: CONFIGURE_EXT_OPT="$CONFIGURE_EXT_OPT $1" renatofilho@320: shift renatofilho@320: ;; renatofilho@320: --) shift ; break ;; renatofilho@320: *) echo "- ignoring unknown autogen.sh argument $1"; shift ;; renatofilho@320: esac renatofilho@320: done renatofilho@320: renatofilho@320: for arg do CONFIGURE_EXT_OPT="$CONFIGURE_EXT_OPT $arg"; done renatofilho@320: if test ! -z "$CONFIGURE_EXT_OPT" renatofilho@320: then renatofilho@320: echo "+ options passed to configure: $CONFIGURE_EXT_OPT" renatofilho@320: fi renatofilho@320: } renatofilho@320: renatofilho@320: toplevel_check () renatofilho@320: { renatofilho@320: srcfile=$1 renatofilho@320: test -f $srcfile || { renatofilho@320: echo "You must run this script in the top-level $package directory" renatofilho@320: exit 1 renatofilho@320: } renatofilho@320: } renatofilho@320: renatofilho@320: renatofilho@320: tool_run () renatofilho@320: { renatofilho@320: tool=$1 renatofilho@320: options=$2 renatofilho@320: run_if_fail=$3 renatofilho@320: echo "+ running $tool $options..." renatofilho@320: $tool $options || { renatofilho@320: echo renatofilho@320: echo $tool failed renatofilho@320: eval $run_if_fail renatofilho@320: exit 1 renatofilho@320: } renatofilho@320: }