summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter O'Gorman <peter@pogma.com>2005-02-12 12:12:33 +0000
committerPeter O'Gorman <peter@pogma.com>2005-02-12 12:12:33 +0000
commita06680edab8b2fbd91d6025def66792ffac3e145 (patch)
tree8d800ddfc175ece666ee1b1ffb052d5aeab31580
parentffa89b10642dafdb6b202eed14111dc1e93edfcb (diff)
downloadlibtool-release-1-5-14.tar.gz
GNU libtool 1.5.14 is released.release-1-5-14
* ChangeLog: Upped version to 1.5.14. * NEWS: Updated. * config.guess, config.sub: Updated.
-rw-r--r--ChangeLog8
-rw-r--r--NEWS3
-rwxr-xr-xconfig.guess12
-rwxr-xr-xconfig.sub6
-rw-r--r--configure.ac2
5 files changed, 23 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 05d46446..fffa741b 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 b60c2acb..555f110c 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 82294713..892833f9 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 @@ version="\
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 @@ EOF
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 @@ EOF
*: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 987b17d8..d8fd2f8f 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 @@ Report bugs and patches to <config-patches@gnu.org>."
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 68828603..d7a12cf2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,7 +25,7 @@ AC_PREREQ(2.50)
## ------------------------ ##
## 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])