Displaying 6 results from an estimated 6 matches for "versiongrep".
2007 Sep 09
2
[PATCH] autogen.sh : detect automake-1.10 correctly
....sh from libvorbis) fixes
that.
Once that is fixed there are still 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...
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}
...ing for autoconf... "
(autoconf --version) < /dev/null > /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`...
2004 Jul 19
0
Ogg Vorbis CVS (ok,
...\`\`autoconf'', you may specify the path to the autoconf"
+ 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... "
- AUTOM...
2012 Dec 12
0
[PATCH 2/5] autogen.sh: replace this by a simple call to autoreconf
...ull 2>&1 || {
- echo
- echo "You must have autoconf installed to compile $package."
- echo "Download the appropriate package for your distribution,"
- echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
- DIE=1
-}
-
-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]*\.//"
-
-# do we need automake?
-if test -r Makefile.am; then
- AM_OPTIONS=`fgrep AUTOMAKE_OPTIONS Makefile.am`
- AM_NEE...
2012 Dec 12
8
[PATCH 0/5] update build system
This patch series modernizes various aspects of the autotools
based build system. There is a lot more that could and should be
done, but I tried to stay conservative for now and just resolve
some of the most obvious issues.
Max Horn (5):
configure: replace XIPH_C_FIND_ENDIAN by AC_C_BIGENDIAN
autogen.sh: replace this by a simple call to autoreconf
configure: always print