diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-02-06 22:51:30 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-02-21 02:20:19 -0500 |
commit | 760b3e8bc9ab6e292debab7758a403fe611d302b (patch) | |
tree | 151033c1708874d9da979e8c7e92c8aca9b08925 /sim/m68hc11 | |
parent | 89753bbf8102edc2aa4262a4d43f1a71a10e34f3 (diff) | |
download | gdb-760b3e8bc9ab6e292debab7758a403fe611d302b.zip gdb-760b3e8bc9ab6e292debab7758a403fe611d302b.tar.gz gdb-760b3e8bc9ab6e292debab7758a403fe611d302b.tar.bz2 |
sim: common: split up acinclude.m4 into individual m4 files
This file is quite large and is getting unmanageable. Split it apart
to follow aclocal best practices by putting one-macro-per-file. There
shouldn't be any real functional changes here as can be seen in the
configure script regens.
Diffstat (limited to 'sim/m68hc11')
-rw-r--r-- | sim/m68hc11/ChangeLog | 5 | ||||
-rw-r--r-- | sim/m68hc11/aclocal.m4 | 10 | ||||
-rwxr-xr-x | sim/m68hc11/configure | 23 | ||||
-rw-r--r-- | sim/m68hc11/configure.ac | 2 |
4 files changed, 32 insertions, 8 deletions
diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index 7deb1b6..5223443 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,3 +1,8 @@ +2021-02-21 Mike Frysinger <vapier@gentoo.org> + + * configure.ac (AC_CONFIG_MACRO_DIRS): Replace common with m4. + * aclocal.m4, configure: Regenerate. + 2021-02-13 Mike Frysinger <vapier@gentoo.org> * configure.ac: Replace sinclude with AC_CONFIG_MACRO_DIRS. diff --git a/sim/m68hc11/aclocal.m4 b/sim/m68hc11/aclocal.m4 index 1c83b20..1183d42 100644 --- a/sim/m68hc11/aclocal.m4 +++ b/sim/m68hc11/aclocal.m4 @@ -98,6 +98,15 @@ AC_DEFUN([_AM_SUBST_NOTMAKE]) # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) +m4_include([../m4/sim_ac_common.m4]) +m4_include([../m4/sim_ac_option_alignment.m4]) +m4_include([../m4/sim_ac_option_assert.m4]) +m4_include([../m4/sim_ac_option_endian.m4]) +m4_include([../m4/sim_ac_option_environment.m4]) +m4_include([../m4/sim_ac_option_hardware.m4]) +m4_include([../m4/sim_ac_option_inline.m4]) +m4_include([../m4/sim_ac_option_warnings.m4]) +m4_include([../m4/sim_ac_output.m4]) m4_include([../../config/acx.m4]) m4_include([../../config/depstand.m4]) m4_include([../../config/gettext-sister.m4]) @@ -110,4 +119,3 @@ m4_include([../../ltoptions.m4]) m4_include([../../ltsugar.m4]) m4_include([../../ltversion.m4]) m4_include([../../lt~obsolete.m4]) -m4_include([../common/acinclude.m4]) diff --git a/sim/m68hc11/configure b/sim/m68hc11/configure index 32a3269..6498bf0 100755 --- a/sim/m68hc11/configure +++ b/sim/m68hc11/configure @@ -631,6 +631,11 @@ ac_includes_default="\ ac_subst_vars='LTLIBOBJS LIBOBJS +sim_reserved_bits +sim_default_model +sim_scache +sim_float +sim_bitsize cgen_breaks REPORT_BUGS_TEXI REPORT_BUGS_TO @@ -747,16 +752,11 @@ PATH_SEPARATOR SHELL WERROR_CFLAGS WARN_CFLAGS -sim_reserved_bits sim_inline sim_hw sim_hw_objs sim_hw_cflags -sim_default_model -sim_scache -sim_float sim_endian -sim_bitsize sim_alignment' ac_subst_files='' ac_user_opts=' @@ -11794,7 +11794,6 @@ _ACEOF - wire_endian="BIG" default_endian="" # Check whether --enable-sim-endian was given. @@ -12106,6 +12105,18 @@ ac_config_commands="$ac_config_commands Makefile" ac_config_commands="$ac_config_commands stamp-h" + + + + + + + + + + + + cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure diff --git a/sim/m68hc11/configure.ac b/sim/m68hc11/configure.ac index 34ae17e..6148d1d 100644 --- a/sim/m68hc11/configure.ac +++ b/sim/m68hc11/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(Makefile.in) -AC_CONFIG_MACRO_DIRS([../common ../.. ../../config]) +AC_CONFIG_MACRO_DIRS([../m4 ../.. ../../config]) SIM_AC_COMMON |