mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 19:25:18 +00:00
added check for 2.52d, we don't want it
Original commit message from CVS: added check for 2.52d, we don't want it
This commit is contained in:
parent
b2d2b6539d
commit
d2bceb75d7
1 changed files with 11 additions and 2 deletions
13
autogen.sh
13
autogen.sh
|
@ -82,13 +82,22 @@ version_check ()
|
|||
fi
|
||||
}
|
||||
|
||||
# autoconf 2.52d has a weird issue involving a yes:no error
|
||||
# so don't allow it's use
|
||||
ac_version=`autoconf --version|head -n 1|sed 's/^[a-zA-z\.\ ()]*//;s/ .*$//'`
|
||||
if test "$ac_version" = "2.52d"; then
|
||||
echo "autoconf 2.52d has an issue with our current build."
|
||||
echo "We don't know who's to blame however. So until we do, get a"
|
||||
echo "regular version. RPM's of a working version are on the gstreamer site."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
version_check "autoconf" "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
|
||||
version_check "automake" "ftp://ftp.gnu.org/pub/gnu/automake/" 1 5 || DIE=1
|
||||
version_check "libtool" "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 4 0 || DIE=1
|
||||
version_check "pkg-config" "http://www.freedesktop.org/software/pkgconfig" 0 7 0 || DIE=1
|
||||
|
||||
echo
|
||||
|
||||
if test "$DIE" -eq 1; then
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue