search for: versionmkint

Displaying 4 results from an estimated 4 matches for "versionmkint".

2007 Sep 09
2
[PATCH] autogen.sh : detect automake-1.10 correctly
...some other issues that need fixing for automake-1.10. Cheers, Erik diff -u -r1.16 autogen.sh --- autogen.sh 21 Nov 2006 01:40:57 -0000 1.16 +++ autogen.sh 10 Sep 2007 01:51:16 -0000 @@ -46,9 +46,10 @@ DIE=1 } -VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9]\.[0-9]\).*/\1/" -VERSIONMKINT="sed -e s/[^0-9]//" - +VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9][0-9]*\.[0-9][0-9]*\).*/\1/" +VERSIONMKMAJ="sed -e s/\([0-9][0-9]*\)[^0-9].*/\\1/" +VERSIONMKMIN="sed -e s/.*[0-9][0-9]*\....
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}
...; /dev/null 2>&1 || { echo echo "You must have autoconf installed to compile $package." @@ -19,16 +20,68 @@ DIE=1 } -(automake --version) < /dev/null > /dev/null 2>&1 || { +VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9]\.[0-9]\).*/\1/" +VERSIONMKINT="sed -e s/[^0-9]//" + +# do we need automake? +if test -r Makefile.am; then + AM_NEEDED=`fgrep AUTOMAKE_OPTIONS Makefile.am | $VERSIONGREP` + if test -z $AM_NEEDED; then + echo -n "checking for autom...
2004 Jul 19
0
Ogg Vorbis CVS (ok,
...quot; + echo "you wish to use in the environment used to invoke $0," + echo "for example:" + echo " $ env AUTOCONF=/path/to/autoconf $0" + echo " or $ env AUTOCONF=autoconf259 $0" DIE=1 } VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9]\.[0-9]\).*/\1/" VERSIONMKINT="sed -e s/[^0-9]//" - + # do we need automake? if test -r Makefile.am; then AM_NEEDED=`fgrep AUTOMAKE_OPTIONS Makefile.am | $VERSIONGREP` if test -z $AM_NEEDED; then echo -n "checking for automake... " - AUTOMAKE=automake17 - ACLOCAL=aclocal17 - if ($AUTOMAKE --version...