diff options
author | Pedro Alves <palves@redhat.com> | 2015-04-08 18:10:21 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-04-09 10:36:05 +0100 |
commit | 421693b020bf6e306c6c795541d0bd9dad0db1f1 (patch) | |
tree | 9b0a7d01da1405618fcdb0de400db88ba7c2fbb5 /gdb/gnulib/Makefile.in | |
parent | f543dc83b84d8ebcd0899dfd16215b884b7762fa (diff) | |
download | gdb-421693b020bf6e306c6c795541d0bd9dad0db1f1.zip gdb-421693b020bf6e306c6c795541d0bd9dad0db1f1.tar.gz gdb-421693b020bf6e306c6c795541d0bd9dad0db1f1.tar.bz2 |
Import strtok_r gnulib module
gdb/linux-tdep.c recently gained a strtok_r use. That broke
--enable-targets=all with some versions of mingw64, which don't have
strtok_r:
https://sourceware.org/ml/gdb-patches/2015-04/msg00266.html
Fix that by importing the strtok_r gnulib module.
gdb/ChangeLog:
2015-04-09 Pedro Alves <palves@redhat.com>
* gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r.
* gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4.
* gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate.
* gnulib/import/Makefile.am: Update.
* gnulib/import/Makefile.in: Update.
* gnulib/import/m4/gnulib-cache.m4: Update.
* gnulib/import/m4/gnulib-comp.m4: Update.
* gnulib/import/m4/strtok_r.m4: New file.
* gnulib/import/strtok_r.c: New file.
Diffstat (limited to 'gdb/gnulib/Makefile.in')
-rw-r--r-- | gdb/gnulib/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/gnulib/Makefile.in b/gdb/gnulib/Makefile.in index f385ee8..921d2ba 100644 --- a/gdb/gnulib/Makefile.in +++ b/gdb/gnulib/Makefile.in @@ -242,6 +242,7 @@ aclocal_m4_deps = \ import/m4/stddef_h.m4 \ import/m4/stdint.m4 \ import/m4/string_h.m4 \ + import/m4/strtok_r.m4 \ import/m4/sys_types_h.m4 \ import/m4/unistd_h.m4 \ import/m4/warn-on-use.m4 \ |