Displaying 4 results from an estimated 4 matches for "verneeded".
Did you mean:
memneeded
2007 Sep 09
2
[PATCH] autogen.sh : detect automake-1.10 correctly
...automake automake-1.7 automake-1.8 automake-1.9; do
+ automake automake-1.7 automake-1.8 automake-1.9 automake-1.10; do
($am --version < /dev/null > /dev/null 2>&1) || continue
- ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP | $VERSIONMKINT`
- verneeded=`echo $AM_NEEDED | $VERSIONMKINT`
- if test $ver -ge $verneeded; then
+ ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP`
+ maj=`echo $ver | $VERSIONMKMAJ`
+ min=`echo $ver | $VERSIONMKMIN`
+ if test $maj -eq $majneeded -a $min -ge $minneeded; then
AUTO...
2003 Nov 10
1
Re: [xiph-cvs] cvs commit: ogg/include/ogg Makefile.am
On Mon, Nov 10, 2003 at 03:31:34PM +0100, gtgbr@gmx.net wrote:
[re: http://xiph.org/archives/cvs/4109.html]
> I have only automake 1.7.8 installed and the check complains that it
> can't find 1.6.x and bails out. My previous makes worked fine with 1.7.x
> ... is it possible to improve this so it works with "or later"?
I'd like to, but haven't been able to come up
2004 Apr 15
1
[PATCH] theora/{Makefile.am,autogen.sh}
...ho -n "checking for automake $AM_NEEDED or later... "
+ for am in automake-$AM_NEEDED automake$AM_NEEDED automake; do
+ ($am --version < /dev/null > /dev/null 2>&1) || continue
+ ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP | $VERSIONMKINT`
+ verneeded=`echo $AM_NEEDED | $VERSIONMKINT`
+ if test $ver -ge $verneeded; then
+ AUTOMAKE=$am
+ echo $AUTOMAKE
+ break
+ fi
+ done
+ test -z $AUTOMAKE && echo "no"
+ echo -n "checking for aclocal $AM_NEEDED or later... "
+ for ac in acl...
2004 Jul 19
0
Ogg Vorbis CVS (ok,
...ot;
- for am in automake-$AM_NEEDED automake$AM_NEEDED automake automake17; do
+ for am in automake-$AM_NEEDED automake$AM_NEEDED ${AUTOMAKE}; do
($am --version < /dev/null > /dev/null 2>&1) || continue
ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP | $VERSIONMKINT`
verneeded=`echo $AM_NEEDED | $VERSIONMKINT`
if test $ver -ge $verneeded; then
AUTOMAKE=$am
echo $AUTOMAKE
+ AM_SUFFIX=${AUTOMAKE##automake}
break
fi
done
test -z $AUTOMAKE && echo "no"
echo -n "checking for aclocal $AM_NEEDED or later... "
- for ac in aclocal-$AM_NEEDED acloca...