[SCM] GNU Libtool branch, master, updated. v2.4.2-376-g056889b

2013-08-22 Thread Gary V. Vaughan
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project GNU Libtool.

The branch, master has been updated
   via  056889b838c7f7ce42281f095921b34973321e25 (commit)
  from  75ffb257f0af50111ffe3a2ba4a5855c44d11774 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 056889b838c7f7ce42281f095921b34973321e25
Author: Alan Modra amo...@bigpond.net.au
Date:   Thu Jun 6 14:48:22 2013 +0930

libtool: fix mangled powerpc*le-linux support patch

* m4/libtool.m4: unmangled badly pasted hunks from previous
changeset.

---

Summary of changes:
 m4/libtool.m4 |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/m4/libtool.m4 b/m4/libtool.m4
index 1e6cc02..e7b7881 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -1329,7 +1329,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
esac
;;
  powerpcle-*)
-   LD=${LD-ld} -m elf64lppc
+   LD=${LD-ld} -m elf32lppclinux
;;
  powerpc-*)
LD=${LD-ld} -m elf32ppclinux
@@ -1350,7 +1350,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
  x86_64-*linux*)
LD=${LD-ld} -m elf_x86_64
;;
- ppc*-*linux*|powerpc*-*linux*)
+ powerpcle-*)
+   LD=${LD-ld} -m elf64lppc
+   ;;
+ powerpc-*)
LD=${LD-ld} -m elf64ppc
;;
  s390*-*linux*|s390*-*tpf*)


hooks/post-receive
-- 
GNU Libtool



[SCM] GNU Libtool branch, master, updated. v2.4.2-377-gbd998a7

2013-08-22 Thread Gary V. Vaughan
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project GNU Libtool.

The branch, master has been updated
   via  bd998a7ea4f73f05aaa2143bf28469ee4b9d3d0c (commit)
  from  056889b838c7f7ce42281f095921b34973321e25 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit bd998a7ea4f73f05aaa2143bf28469ee4b9d3d0c
Author: Gary V. Vaughan g...@gnu.org
Date:   Thu Aug 22 15:38:00 2013 +0700

libtool: refactor powerpc*le-linux case branch expressions.

libtool (_LT_ENABLE_LOCK): make inner case branch expressions
consistent with outer case expression.
Reported by Peter Rosin.

Signed-off-by: Gary V. Vaughan g...@gnu.org

---

Summary of changes:
 m4/libtool.m4 |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/m4/libtool.m4 b/m4/libtool.m4
index e7b7881..2d4c2a1 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -1328,10 +1328,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
;;
esac
;;
- powerpcle-*)
+ powerpcle-*linux*)
LD=${LD-ld} -m elf32lppclinux
;;
- powerpc-*)
+ powerpc-*linux*)
LD=${LD-ld} -m elf32ppclinux
;;
  s390x-*linux*)
@@ -1350,10 +1350,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
  x86_64-*linux*)
LD=${LD-ld} -m elf_x86_64
;;
- powerpcle-*)
+ powerpcle-*linux*)
LD=${LD-ld} -m elf64lppc
;;
- powerpc-*)
+ powerpc-*linux*)
LD=${LD-ld} -m elf64ppc
;;
  s390*-*linux*|s390*-*tpf*)


hooks/post-receive
-- 
GNU Libtool



[SCM] GNU Libtool branch, master, updated. v2.4.2-378-ga734603

2013-08-22 Thread Gary V. Vaughan
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project GNU Libtool.

The branch, master has been updated
   via  a734603dc187086e3aa0e1482f39138a427fc33b (commit)
  from  bd998a7ea4f73f05aaa2143bf28469ee4b9d3d0c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit a734603dc187086e3aa0e1482f39138a427fc33b
Author: Gary V. Vaughan g...@gnu.org
Date:   Thu Aug 22 15:51:33 2013 +0700

libltdl: don't trip subdir-objects warning from Automake = 1.14.

Latest Automake releases now warn when subdir-objects is not
specified in preparation for Automake 2.0.  The option has been
in Automake for more than a decade, so there's minimal risk of
someone using the next release of Libtool alongside an ancient
release of Automake when bootstrapping libltdl client projects.
* libltdl/configure.ac (AM_INIT_AUTOMAKE): Add subdir-objects.

Signed-off-by: Gary V. Vaughan g...@gnu.org

---

Summary of changes:
 libltdl/configure.ac |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libltdl/configure.ac b/libltdl/configure.ac
index 31baec7..62bd576 100644
--- a/libltdl/configure.ac
+++ b/libltdl/configure.ac
@@ -52,7 +52,7 @@ LT_CONFIG_LTDL_DIR([.]) # I am me!
 ## Automake Initialisation. ##
 ##  ##
 
-AM_INIT_AUTOMAKE([gnu])
+AM_INIT_AUTOMAKE([gnu subdir-objects])
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
 


hooks/post-receive
-- 
GNU Libtool



[SCM] GNU Libtool branch, master, updated. v2.4.2-379-g429d40a

2013-08-22 Thread Gary V. Vaughan
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project GNU Libtool.

The branch, master has been updated
   via  429d40a020348c7cd8e8af75c7cb29a64cf9708d (commit)
  from  a734603dc187086e3aa0e1482f39138a427fc33b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 429d40a020348c7cd8e8af75c7cb29a64cf9708d
Author: Alan Modra amo...@bigpond.net.au
Date:   Thu Jun 6 14:48:22 2013 +0930

libtool: refix unmangled powerpc*le-linux support patch

* m4/libtool.m4: refix badly unmangled hunks from earlier
powerpc*le changeset.
Reported by Peter Rosin.

Signed-off-by: Gary V. Vaughan g...@gnu.org

---

Summary of changes:
 m4/libtool.m4 |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/m4/libtool.m4 b/m4/libtool.m4
index 2d4c2a1..fbf9c69 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -1328,10 +1328,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
;;
esac
;;
- powerpcle-*linux*)
+ powerpc64le-*linux*)
LD=${LD-ld} -m elf32lppclinux
;;
- powerpc-*linux*)
+ powerpc64*-*linux*)
LD=${LD-ld} -m elf32ppclinux
;;
  s390x-*linux*)
@@ -1350,10 +1350,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
  x86_64-*linux*)
LD=${LD-ld} -m elf_x86_64
;;
- powerpcle-*linux*)
+ powerpcle*-*linux*)
LD=${LD-ld} -m elf64lppc
;;
- powerpc-*linux*)
+ powerpc*-*linux*)
LD=${LD-ld} -m elf64ppc
;;
  s390*-*linux*|s390*-*tpf*)


hooks/post-receive
-- 
GNU Libtool



[SCM] GNU Libtool branch, master, updated. v2.4.2-380-g8a8dfae

2013-08-22 Thread Gary V. Vaughan
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project GNU Libtool.

The branch, master has been updated
   via  8a8dfaec78790ab3193c2751b3188925339fdacb (commit)
  from  429d40a020348c7cd8e8af75c7cb29a64cf9708d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 8a8dfaec78790ab3193c2751b3188925339fdacb
Author: Alan Modra amo...@bigpond.net.au
Date:   Thu Jun 6 14:48:22 2013 +0930

libtool: fix refixed unmangled powerpc*le-linux support patch

* m4/libtool.m4: fix refixed badly unmangled hunks from earlier
powerpc*le changeset.
Reported by Peter Rosin.

Signed-off-by: Gary V. Vaughan g...@gnu.org

---

Summary of changes:
 m4/libtool.m4 |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/m4/libtool.m4 b/m4/libtool.m4
index fbf9c69..08fb2a5 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -1331,7 +1331,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
  powerpc64le-*linux*)
LD=${LD-ld} -m elf32lppclinux
;;
- powerpc64*-*linux*)
+ powerpc64-*linux*)
LD=${LD-ld} -m elf32ppclinux
;;
  s390x-*linux*)
@@ -1350,10 +1350,10 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
  x86_64-*linux*)
LD=${LD-ld} -m elf_x86_64
;;
- powerpcle*-*linux*)
+ powerpcle-*linux*)
LD=${LD-ld} -m elf64lppc
;;
- powerpc*-*linux*)
+ powerpc-*linux*)
LD=${LD-ld} -m elf64ppc
;;
  s390*-*linux*|s390*-*tpf*)


hooks/post-receive
-- 
GNU Libtool