From patchwork Thu Jan 21 10:28:58 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kamil Rytarowski X-Patchwork-Id: 10497 Received: (qmail 53161 invoked by alias); 21 Jan 2016 10:29:14 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 53144 invoked by uid 89); 21 Jan 2016 10:29:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_05, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 spammy=H*F:D*gmx.com, 7507, sk:cb3a856, 750, 7 X-HELO: mout.gmx.net Received: from mout.gmx.net (HELO mout.gmx.net) (212.227.15.18) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 21 Jan 2016 10:29:12 +0000 Received: from localhost.localdomain ([185.58.161.191]) by mail.gmx.com (mrgmx003) with ESMTPSA (Nemesis) id 0LiTF6-1ZqB3Y07xc-00ceAA for ; Thu, 21 Jan 2016 11:29:08 +0100 From: Kamil Rytarowski To: gdb-patches@sourceware.org Subject: [PATCH] Add netbsd-core to optional backends Date: Thu, 21 Jan 2016 11:28:58 +0100 Message-Id: <1453372138-271-1-git-send-email-n54@gmx.com> X-UI-Out-Filterresults: notjunk:1; V01:K0:0vXCUM2BLts=:bma3X7T8OjH7WlLyD9u3GA A3NLI+RPR5+FpUR/Xam0/VtDwnZQve/ITq9FyfivM7sjsv+4PfIFv9F/ey1lTBK6vL6B5pAT2 EtPD5xaJ1d5fFUItHusoYQquVvPWtAjix4Fs/IdJGznlPOpI0fqM7uT0eotvKfnGhuvz+ArH2 Jn/5YkmDzFoI4AN3mviOraewmuk09X8O+hg7BBFpNQKPxiVKFMSWgMSRR/v+/gX9MAXwTrk2B d8gkZvWW4GeG760zWDxnQg7tzYXz6scNOw7cx03D23hT46inWwh6bg84rMK39AV53Dg9e48ar SNUCeWepBHY/AhR7IER7sqoni6+75NWnHrpGcpoyclJNO3rmhVW+/1WNFB5U7ggegkWgIgYSE 3+iCcVvAl9B6h9ouxcbB+R6WY2+OwQn7TdhnbBxeYnxsZsJcp8ypDId8d0hYk9hEV4WA2AJRo P1vWASL44pj4ohlwo3hNFqbVacTySzVHtsxnKcOvJWjdegQxcXseLDYGMyNFTiEldcVnF2qLI UWJL6UPXj+rxWZxyqbH2xyAI8/BgEGC9h34aFfxRlXlaviAWBgnev73C7cLqiq4H1GIv9DvP1 /+jVjRKQSIGL0m4JMYIThpWUed3NuEsQ5uYgUPgqSa9FNOfaCsKhe8Rd3YdnLX8Bv/hdRYDfu mgLHzXv9+7JCdp7JGQrZ1OVpU3ED+UR8ZkxMuodEJG09j6Q8ieZ7VRXPkhxpQv+hnUFqXCZ9B stX8uYn3x0uGPoo5Q/1U+8EmeyvUWpIrVptP49qth4x+VYvp7uwRQPC95DcxbwhTPXDXuR4J7 oFXVJF9AfsYaoc2qtyfDPOC9LwYjV03LVwL8frmu1AXCGa57jwIbV+WJJKOYZrxchvB4X2Bb7 vFXpXmzHU8YDA/BbHdephfjMlzW1vLVZnvllKBSdY= X-IsSubscribed: yes This fixes NetBSD build with BSD and GNU make(1). bfd/ChangeLog: * Makefile.am (OPTIONAL_BACKENDS): Add netbsd-core.lo. (OPTIONAL_BACKENDS_CFILES): Add netbsd-core.c. * Makefile.in: Regenerated. --- bfd/ChangeLog | 6 ++++++ bfd/Makefile.am | 2 ++ bfd/Makefile.in | 2 ++ 3 files changed, 10 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 739393d..48e504a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2016-01-21 Kamil Rytarowski + + * Makefile.am (OPTIONAL_BACKENDS): Add netbsd-core.lo. + (OPTIONAL_BACKENDS_CFILES): Add netbsd-core.c. + * Makefile.in: Regenerated. + 2016-01-20 Mickael Guene * elf32-arm.c (elf32_arm_special_sections): Remove catch of noread diff --git a/bfd/Makefile.am b/bfd/Makefile.am index cb3a856..d9ae659 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -738,6 +738,7 @@ OPTIONAL_BACKENDS = \ hpux-core.lo \ irix-core.lo \ lynx-core.lo \ + netbsd-core.lo \ osf-core.lo \ rs6000-core.lo \ sco5-core.lo \ @@ -749,6 +750,7 @@ OPTIONAL_BACKENDS_CFILES = \ hpux-core.c \ irix-core.c \ lynx-core.c \ + netbsd-core.c \ osf-core.c \ rs6000-core.c \ sco5-core.c \ diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 6b90be7..784d55d 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -1043,6 +1043,7 @@ OPTIONAL_BACKENDS = \ hpux-core.lo \ irix-core.lo \ lynx-core.lo \ + netbsd-core.lo \ osf-core.lo \ rs6000-core.lo \ sco5-core.lo \ @@ -1054,6 +1055,7 @@ OPTIONAL_BACKENDS_CFILES = \ hpux-core.c \ irix-core.c \ lynx-core.c \ + netbsd-core.c \ osf-core.c \ rs6000-core.c \ sco5-core.c \