diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-14 14:01:33 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-14 14:01:33 +0000 |
commit | 67f473f3212685e6d026c0d123639044455ed8d7 (patch) | |
tree | d6ea32b824cce06f59a82b2a26ef020c4ca8d2a3 | |
parent | 7b9ef9d44f8d3d1e1dc68ef8ca3dcfabf9c5a52c (diff) | |
download | xine-lib-67f473f3212685e6d026c0d123639044455ed8d7.tar.gz xine-lib-67f473f3212685e6d026c0d123639044455ed8d7.tar.bz2 |
Use automake 1.9 if available, solves a few corner cases and avoids the list of warnings when using autoconf 2.60.
CVS patchset: 8258
CVS date: 2006/09/14 14:01:33
-rwxr-xr-x | autogen.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh index e486fc43e..3b3a4cc8c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA # -# $Id: autogen.sh,v 1.17 2005/05/03 18:44:29 dsalt Exp $ +# $Id: autogen.sh,v 1.18 2006/09/14 14:01:33 dgp85 Exp $ # # Maintained by Stephen Torri <storri@users.sourceforge.net> # @@ -27,9 +27,9 @@ PROG=xine-lib # Minimum value required to build -WANT_AUTOMAKE_1_6=1 export WANT_AUTOMAKE_1_6 -WANT_AUTOMAKE=1.6 export WANT_AUTOMAKE -AUTOMAKE_MIN=1.6.0 +WANT_AUTOMAKE_1_9=1 export WANT_AUTOMAKE_1_9 +WANT_AUTOMAKE=1.9 export WANT_AUTOMAKE +AUTOMAKE_MIN=1.9.0 AUTOCONF_MIN=2.53 LIBTOOL_MIN=1.4.0 |