GNU libtool 1.5.14 is released. * ChangeLog: Upped version to 1.5.14. * NEWS: Updated. * config.guess, config.sub: Updated.
diff --git a/ChangeLog b/ChangeLog index 05d4644..fffa741 100644 --- a/ChangeLog +++ b/ChangeLog
@@ -1,3 +1,11 @@ +2005-02-12 Peter O'Gorman <peter@pogma.com> + + GNU libtool 1.5.14 is released. + + * ChangeLog: Upped version to 1.5.14. + * NEWS: Updated. + * config.guess, config.sub: Updated. + 2005-02-10 Peter O'Gorman <peter@pogma.com> * ltmain.in, libtoolize.in: --version should show "(C) 2005".
diff --git a/NEWS b/NEWS index b60c2ac..555f110 100644 --- a/NEWS +++ b/NEWS
@@ -1,6 +1,7 @@ NEWS - list of user-visible changes between releases of GNU Libtool -New in 1.5.13a: 2005-??-??; CVS version 1.5.13a, Libtool team: +New in 1.5.14: 2005-02-12; CVS version 1.5.13a, Libtool team: +* Make -pthread work when building executabless too. * Bug Fixes. New in 1.5.12: 2004-02-05; CVS version 1.5.11a, Libtool team:
diff --git a/config.guess b/config.guess index 8229471..892833f 100755 --- a/config.guess +++ b/config.guess
@@ -1,9 +1,9 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2004-11-12' +timestamp='2005-02-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -53,7 +53,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO @@ -804,6 +804,9 @@ i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit 0 ;; + amd64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit 0 ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit 0 ;; @@ -1197,6 +1200,9 @@ *:QNX:*:4*) echo i386-pc-qnx exit 0 ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit 0 ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit 0 ;;
diff --git a/config.sub b/config.sub index 987b17d..d8fd2f8 100755 --- a/config.sub +++ b/config.sub
@@ -1,9 +1,9 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2004-11-30' +timestamp='2005-02-10' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -70,7 +70,7 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO
diff --git a/configure.ac b/configure.ac index 6882860..d7a12cf 100644 --- a/configure.ac +++ b/configure.ac
@@ -25,7 +25,7 @@ ## ------------------------ ## ## Autoconf initialisation. ## ## ------------------------ ## -AC_INIT([libtool], [1.5.13a], [bug-libtool@gnu.org]) +AC_INIT([libtool], [1.5.14], [bug-libtool@gnu.org]) AC_CONFIG_SRCDIR([ltmain.in])