From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2430 invoked by alias); 19 Aug 2014 12:35:59 -0000 Mailing-List: contact src-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: src-cvs-owner@sourceware.org Received: (qmail 2374 invoked by uid 9051); 19 Aug 2014 12:35:58 -0000 Date: Tue, 19 Aug 2014 12:35:00 -0000 Message-ID: <20140819123555.2325.qmail@sourceware.org> From: amodra@sourceware.org To: binutils-cvs@sourceware.org, gdb-cvs@sourceware.org, src-cvs@sourceware.org Subject: gdb and binutils branch master updated. 2974be626b5e40033b9a259a072b2fe123469126 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 180eb0634cd876d759f3cbd5bdce24d363f9f2f1 X-Git-Newrev: 2974be626b5e40033b9a259a072b2fe123469126 X-SW-Source: 2014-q3/txt/msg00013.txt.bz2 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 "gdb and binutils". The branch, master has been updated via 2974be626b5e40033b9a259a072b2fe123469126 (commit) from 180eb0634cd876d759f3cbd5bdce24d363f9f2f1 (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 ----------------------------------------------------------------- https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=2974be626b5e40033b9a259a072b2fe123469126 commit 2974be626b5e40033b9a259a072b2fe123469126 Author: Alan Modra Date: Tue Aug 19 21:59:56 2014 +0930 Fix --diable-shared --enable-plugins build breakage Directories that don't use libtool need to add -ldl (on most *nix hosts) to provide dlopen for libbfd. config/ * plugins.m4 (AC_PLUGINS): If plugins are enabled, add -ldl to LIBS via AC_SEARCH_LIBS. gdb/ * acinclude.m4 (GDB_AC_CHECK_BFD): Don't add -ldl. * config.in: Regenerate. sim/ppc/ * configure.ac: Invoke AC_PLUGINS. * config.in: Regenerate. and regen lots of configure files. ----------------------------------------------------------------------- Summary of changes: bfd/ChangeLog | 4 + bfd/configure | 58 +++++++ binutils/ChangeLog | 4 + binutils/configure | 58 +++++++ config/ChangeLog | 5 + config/plugins.m4 | 3 + gas/ChangeLog | 4 + gas/configure | 58 +++++++ gdb/ChangeLog | 6 + gdb/acinclude.m4 | 4 - gdb/config.in | 3 + gdb/configure | 372 ++++++++++++++++++---------------------------- gprof/ChangeLog | 4 + gprof/configure | 58 +++++++ ld/ChangeLog | 4 + ld/configure | 58 +++++++ sim/arm/ChangeLog | 4 + sim/arm/configure | 62 ++++++++- sim/avr/ChangeLog | 4 + sim/avr/configure | 62 ++++++++- sim/bfin/ChangeLog | 4 + sim/bfin/configure | 62 ++++++++- sim/common/ChangeLog | 4 + sim/common/configure | 62 ++++++++- sim/cr16/ChangeLog | 4 + sim/cr16/configure | 62 ++++++++- sim/cris/ChangeLog | 4 + sim/cris/configure | 62 ++++++++- sim/d10v/ChangeLog | 4 + sim/d10v/configure | 62 ++++++++- sim/erc32/ChangeLog | 4 + sim/erc32/configure | 62 ++++++++- sim/frv/ChangeLog | 4 + sim/frv/configure | 62 ++++++++- sim/h8300/ChangeLog | 4 + sim/h8300/configure | 62 ++++++++- sim/iq2000/ChangeLog | 4 + sim/iq2000/configure | 62 ++++++++- sim/lm32/ChangeLog | 4 + sim/lm32/configure | 62 ++++++++- sim/m32c/ChangeLog | 4 + sim/m32c/configure | 62 ++++++++- sim/m32r/ChangeLog | 4 + sim/m32r/configure | 62 ++++++++- sim/m68hc11/ChangeLog | 4 + sim/m68hc11/configure | 62 ++++++++- sim/mcore/ChangeLog | 4 + sim/mcore/configure | 62 ++++++++- sim/microblaze/ChangeLog | 4 + sim/microblaze/configure | 62 ++++++++- sim/mips/ChangeLog | 4 + sim/mips/configure | 62 ++++++++- sim/mn10300/ChangeLog | 4 + sim/mn10300/configure | 62 ++++++++- sim/moxie/ChangeLog | 4 + sim/moxie/configure | 62 ++++++++- sim/msp430/ChangeLog | 4 + sim/msp430/configure | 62 ++++++++- sim/ppc/ChangeLog | 6 + sim/ppc/config.in | 6 + sim/ppc/configure | 106 +++++++++++++ sim/ppc/configure.ac | 3 + sim/rl78/ChangeLog | 4 + sim/rl78/configure | 62 ++++++++- sim/rx/ChangeLog | 4 + sim/rx/configure | 62 ++++++++- sim/sh/ChangeLog | 4 + sim/sh/configure | 62 ++++++++- sim/sh64/ChangeLog | 4 + sim/sh64/configure | 62 ++++++++- sim/v850/ChangeLog | 4 + sim/v850/configure | 62 ++++++++- 72 files changed, 2254 insertions(+), 286 deletions(-) hooks/post-receive -- gdb and binutils