public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Mike Frysinger <vapier@gentoo.org>
To: gdb-patches@sourceware.org
Subject: [PATCH 6/7] sim: unify bug & package settings
Date: Mon,  7 Jun 2021 01:33:54 -0400	[thread overview]
Message-ID: <20210607053355.9965-6-vapier@gentoo.org> (raw)
In-Reply-To: <20210607053355.9965-1-vapier@gentoo.org>

Move these options up to the common dir so we only test & export
them once across all ports.  The AC_INIT macro does a lot of the
heavy lifting already which allows further simplification.
---
 sim/Makefile.in                |  6 ++-
 sim/aarch64/aclocal.m4         |  1 -
 sim/aarch64/config.in          |  9 ----
 sim/aarch64/configure          | 79 +---------------------------------
 sim/aclocal.m4                 |  1 +
 sim/arm/aclocal.m4             |  1 -
 sim/arm/config.in              |  9 ----
 sim/arm/configure              | 79 +---------------------------------
 sim/avr/aclocal.m4             |  1 -
 sim/avr/config.in              |  9 ----
 sim/avr/configure              | 79 +---------------------------------
 sim/bfin/aclocal.m4            |  1 -
 sim/bfin/config.in             |  9 ----
 sim/bfin/configure             | 79 +---------------------------------
 sim/bpf/aclocal.m4             |  1 -
 sim/bpf/config.in              |  9 ----
 sim/bpf/configure              | 79 +---------------------------------
 sim/config.h.in                |  6 +++
 sim/configure                  | 67 ++++++++++++++++++++++++++++
 sim/configure.ac               |  7 +++
 sim/cr16/aclocal.m4            |  1 -
 sim/cr16/config.in             |  9 ----
 sim/cr16/configure             | 79 +---------------------------------
 sim/cris/aclocal.m4            |  1 -
 sim/cris/config.in             |  9 ----
 sim/cris/configure             | 79 +---------------------------------
 sim/d10v/aclocal.m4            |  1 -
 sim/d10v/config.in             |  9 ----
 sim/d10v/configure             | 79 +---------------------------------
 sim/erc32/aclocal.m4           |  1 -
 sim/erc32/config.in            |  9 ----
 sim/erc32/configure            | 79 +---------------------------------
 sim/example-synacor/aclocal.m4 |  1 -
 sim/example-synacor/config.in  |  9 ----
 sim/example-synacor/configure  | 79 +---------------------------------
 sim/frv/aclocal.m4             |  1 -
 sim/frv/config.in              |  9 ----
 sim/frv/configure              | 79 +---------------------------------
 sim/ft32/aclocal.m4            |  1 -
 sim/ft32/config.in             |  9 ----
 sim/ft32/configure             | 79 +---------------------------------
 sim/h8300/aclocal.m4           |  1 -
 sim/h8300/config.in            |  9 ----
 sim/h8300/configure            | 79 +---------------------------------
 sim/iq2000/aclocal.m4          |  1 -
 sim/iq2000/config.in           |  9 ----
 sim/iq2000/configure           | 79 +---------------------------------
 sim/lm32/aclocal.m4            |  1 -
 sim/lm32/config.in             |  9 ----
 sim/lm32/configure             | 79 +---------------------------------
 sim/m32c/aclocal.m4            |  1 -
 sim/m32c/config.in             |  9 ----
 sim/m32c/configure             | 79 +---------------------------------
 sim/m32r/aclocal.m4            |  1 -
 sim/m32r/config.in             |  9 ----
 sim/m32r/configure             | 79 +---------------------------------
 sim/m4/sim_ac_common.m4        | 12 ------
 sim/m68hc11/aclocal.m4         |  1 -
 sim/m68hc11/config.in          |  9 ----
 sim/m68hc11/configure          | 79 +---------------------------------
 sim/mcore/aclocal.m4           |  1 -
 sim/mcore/config.in            |  9 ----
 sim/mcore/configure            | 79 +---------------------------------
 sim/microblaze/aclocal.m4      |  1 -
 sim/microblaze/config.in       |  9 ----
 sim/microblaze/configure       | 79 +---------------------------------
 sim/mips/aclocal.m4            |  1 -
 sim/mips/config.in             |  9 ----
 sim/mips/configure             | 79 +---------------------------------
 sim/mn10300/aclocal.m4         |  1 -
 sim/mn10300/config.in          |  9 ----
 sim/mn10300/configure          | 79 +---------------------------------
 sim/moxie/aclocal.m4           |  1 -
 sim/moxie/config.in            |  9 ----
 sim/moxie/configure            | 79 +---------------------------------
 sim/msp430/aclocal.m4          |  1 -
 sim/msp430/config.in           |  9 ----
 sim/msp430/configure           | 79 +---------------------------------
 sim/or1k/aclocal.m4            |  1 -
 sim/or1k/config.in             |  9 ----
 sim/or1k/configure             | 79 +---------------------------------
 sim/pru/aclocal.m4             |  1 -
 sim/pru/config.in              |  9 ----
 sim/pru/configure              | 79 +---------------------------------
 sim/riscv/aclocal.m4           |  1 -
 sim/riscv/config.in            |  9 ----
 sim/riscv/configure            | 79 +---------------------------------
 sim/rl78/aclocal.m4            |  1 -
 sim/rl78/config.in             |  9 ----
 sim/rl78/configure             | 79 +---------------------------------
 sim/rx/aclocal.m4              |  1 -
 sim/rx/config.in               |  9 ----
 sim/rx/configure               | 79 +---------------------------------
 sim/sh/aclocal.m4              |  1 -
 sim/sh/config.in               |  9 ----
 sim/sh/configure               | 79 +---------------------------------
 sim/v850/aclocal.m4            |  1 -
 sim/v850/config.in             |  9 ----
 sim/v850/configure             | 79 +---------------------------------
 99 files changed, 148 insertions(+), 2710 deletions(-)

diff --git a/sim/configure.ac b/sim/configure.ac
index d8c6f2d4feb4..8022a11bc91a 100644
--- a/sim/configure.ac
+++ b/sim/configure.ac
@@ -5,6 +5,13 @@ AC_INIT([sim], [0],
   [https://sourceware.org/bugzilla/enter_bug.cgi?product=gdb&component=sim],
   [], [https://sourceware.org/gdb/wiki/Sim/])
 
+dnl Probably should unify PKGVERSION with PACKAGE_* settings from AC_INIT.
+ACX_PKGVERSION([SIM])
+AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
+dnl PACKAGE_BUGREPORT is provided by AC_INIT.
+ACX_BUGURL([$PACKAGE_BUGREPORT])
+AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
+
 AC_CONFIG_HEADERS([config.h])
 
 SIM_AC_TOOLCHAIN
diff --git a/sim/m4/sim_ac_common.m4 b/sim/m4/sim_ac_common.m4
index 0f687dc7bc58..e8385c2e7c1c 100644
--- a/sim/m4/sim_ac_common.m4
+++ b/sim/m4/sim_ac_common.m4
@@ -24,13 +24,6 @@ AC_DEFUN([SIM_AC_COMMON],
 SIM_AC_TOOLCHAIN
 AC_CONFIG_HEADERS([config.h:config.in])
 
-# Some of the common include files depend on bfd.h, and bfd.h checks
-# that config.h is included first by testing that the PACKAGE macro
-# is defined.
-PACKAGE=sim
-AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of this package. ])
-AC_SUBST(PACKAGE)
-
 # Dependency checking.
 ZW_CREATE_DEPDIR
 ZW_PROG_COMPILER_DEPENDENCIES([CC])
@@ -60,11 +53,6 @@ AM_MAINTAINER_MODE
 
 SIM_AC_OPTION_INLINE
 
-ACX_PKGVERSION([SIM])
-ACX_BUGURL([https://www.gnu.org/software/gdb/bugs/])
-AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
-AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
-
 dnl Detect exe extension
 AC_EXEEXT
 ]) dnl End of SIM_AC_COMMON
-- 
2.31.1


  parent reply	other threads:[~2021-06-07  5:34 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-07  5:33 [PATCH 1/7] sim: unify platform function & header tests Mike Frysinger
2021-06-07  5:33 ` [PATCH 2/7] sim: unify assert build settings Mike Frysinger
2021-06-07  5:33 ` [PATCH 3/7] sim: unify environment " Mike Frysinger
2021-06-12 17:17   ` [PATCH/committed] sim: ppc: unify env settings too Mike Frysinger
2021-06-07  5:33 ` [PATCH 4/7] sim: split debug/stdio/trace/profile options into dedicated m4 files Mike Frysinger
2021-06-07  5:33 ` [PATCH 5/7] sim: unify debug/stdio/trace/profile build settings Mike Frysinger
2021-06-13  0:09   ` [PATCH 5/7 v2] " Mike Frysinger
2021-06-07  5:33 ` Mike Frysinger [this message]
2021-06-13  0:25   ` [PATCH 6/7 v2] sim: unify bug & package settings Mike Frysinger
2021-06-07  5:33 ` [PATCH 7/7] sim: overhaul alignment settings management Mike Frysinger
2021-06-13  1:19   ` [PATCH 7/7 v2] " Mike Frysinger
2021-06-12 18:40 ` [PATCH/committed] sim: ppc: unify header & function & type tests too Mike Frysinger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210607053355.9965-6-vapier@gentoo.org \
    --to=vapier@gentoo.org \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).