]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: move ptrace.m4 to gdbsupport
authorSimon Marchi <simon.marchi@polymtl.ca>
Mon, 26 Oct 2020 01:08:49 +0000 (21:08 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Mon, 26 Oct 2020 01:08:49 +0000 (21:08 -0400)
ptrace.m4, providing the GDB_AC_PTRACE autoconf macro, is used by gdb,
gdbserver and gdbsupport.  I think it would make sense to move it to
gdbsupport.

gdb/ChangeLog:

* acinclude.m4: Update ptrace.m4 path.
* ptrace.m4: Moved to gdbsupport.

gdbserver/ChangeLog:

* acinclude.m4: Update ptrace.m4 path.

gdbsupport/ChangeLog:

* Makefile.in: Re-generate.
* acinclude.m4: Update ptrace.m4 path.
* ptrace.m4: Move here.

Change-Id: I849c149fd5dd8c3b2b0af38654fb353e3727871b

gdb/ChangeLog
gdb/acinclude.m4
gdbserver/ChangeLog
gdbserver/acinclude.m4
gdbsupport/ChangeLog
gdbsupport/Makefile.in
gdbsupport/acinclude.m4
gdbsupport/ptrace.m4 [moved from gdb/ptrace.m4 with 100% similarity]

index 2606f871170bd6da769c674e9adee366a70d428e..d4d13c07b4c5fda253e88bb15da9e4a22bc72ee1 100644 (file)
@@ -1,3 +1,8 @@
+2020-10-25  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * acinclude.m4: Update ptrace.m4 path.
+       * ptrace.m4: Moved to gdbsupport.
+
 2020-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * symfile-mem.c (add_vsyscall_page): Use inferior parameter
index 6fbc88bb55cd3e28aca9c012ec34cc6ba7db4ec0..9aa32e6d1470d514fa7c7f871d0d272f0b10c8c1 100644 (file)
@@ -72,7 +72,7 @@ dnl For libiberty_INIT.
 m4_include(libiberty.m4)
 
 dnl For GDB_AC_PTRACE.
-m4_include(ptrace.m4)
+m4_include(../gdbsupport/ptrace.m4)
 
 m4_include(ax_cxx_compile_stdcxx.m4)
 
index 74391ed137a6a6147dc8be2acd130dbf04b6f00f..a7eebfd7a712efe1ad8996ae96b1299acd4ebba8 100644 (file)
@@ -1,3 +1,7 @@
+2020-10-25  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * acinclude.m4: Update ptrace.m4 path.
+
 2020-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * config.in: Re-generate.
index a49be8dff81e1ffe17f979692d9a6251874586c9..f02a63cc70c33f0c19538d24255e76e1dd1435d3 100644 (file)
@@ -27,7 +27,7 @@ dnl For libiberty_INIT.
 m4_include(../gdb/libiberty.m4)
 
 dnl For GDB_AC_PTRACE.
-m4_include(../gdb/ptrace.m4)
+m4_include(../gdbsupport/ptrace.m4)
 
 m4_include(../gdb/ax_cxx_compile_stdcxx.m4)
 
index cd05d6adf75227b4d89f49f90037b64efa3583ee..759eea1296b58a34c11230c658e26cf2236c767b 100644 (file)
@@ -1,3 +1,9 @@
+2020-10-25  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * Makefile.in: Re-generate.
+       * acinclude.m4: Update ptrace.m4 path.
+       * ptrace.m4: Move here.
+
 2020-10-08  Andrew Burgess  <andrew.burgess@embecosm.com>
 
        * tdesc.h (allocate_target_description): Update return type.
index 044ef1555c276d1af78c828a56011b1a8409ffb3..ccfc27f43aedabab602c93e94a8ae88b5ed749b6 100644 (file)
@@ -123,7 +123,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/codeset.m4 \
        $(top_srcdir)/../config/ax_pthread.m4 \
        $(top_srcdir)/../gdb/ax_cxx_compile_stdcxx.m4 \
        $(top_srcdir)/../gdb/libiberty.m4 $(top_srcdir)/selftest.m4 \
-       $(top_srcdir)/../gdb/ptrace.m4 $(top_srcdir)/warning.m4 \
+       $(top_srcdir)/ptrace.m4 $(top_srcdir)/warning.m4 \
        $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
index 4c86c4f8de7698bf770421c38d1974ac63748659..cc9c2dcb32f8bcca810a1a03c795115acb08ee16 100644 (file)
@@ -4,7 +4,7 @@ m4_include([../config/ax_pthread.m4])
 m4_include([../gdb/ax_cxx_compile_stdcxx.m4])
 m4_include([../gdb/libiberty.m4])
 m4_include([selftest.m4])
-m4_include([../gdb/ptrace.m4])
+m4_include([ptrace.m4])
 
 dnl This gets AM_GDB_WARNINGS.
 m4_include(warning.m4)
similarity index 100%
rename from gdb/ptrace.m4
rename to gdbsupport/ptrace.m4