diff options
author | Pedro Alves <palves@redhat.com> | 2013-07-01 11:25:43 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2013-07-01 11:25:43 +0000 |
commit | 38ec22075a7298fbe720aeda2b0c611964b67155 (patch) | |
tree | 1f64cbcdc14674569f46b6ba5496582cb7c09c80 /gdb/gnulib/Makefile.in | |
parent | e655c1a2f59367d66f81e446f39b84e9eeee1465 (diff) | |
download | gdb-38ec22075a7298fbe720aeda2b0c611964b67155.zip gdb-38ec22075a7298fbe720aeda2b0c611964b67155.tar.gz gdb-38ec22075a7298fbe720aeda2b0c611964b67155.tar.bz2 |
Import the "pathmax" gnulib module.
This imports the "pathmax" gnulib module, making PATH_MAX always
available on systems that have the notion of a constant max path limit
(i.e., practically everywhere except the Hurd), along with fixing a
couple broken systems --- see pathmax.h in the patch.
This means we can normalize on PATH_MAX throughout the tree (instead
of some places using MAXPATHLEN, or defining fallback constants
ourselves).
This is the just the importing step.
gdb/
2013-07-01 Pedro Alves <palves@redhat.com>
* gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
* gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
* gnulib/aclocal.m4: Regenerate.
* gnulib/config.in: Regenerate.
* gnulib/configure: Regenerate.
* gnulib/import/pathmax.h: New file.
* gnulib/import/Makefile.am: Regenerate.
* gnulib/import/Makefile.in: Regenerate.
* gnulib/import/m4/gnulib-cache.m4: Regenerate.
* gnulib/import/m4/gnulib-comp.m4: Regenerate.
* gnulib/import/m4/pathmax.m4: 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 727056c..e3a8cba 100644 --- a/gdb/gnulib/Makefile.in +++ b/gdb/gnulib/Makefile.in @@ -236,6 +236,7 @@ aclocal_m4_deps = \ import/m4/mmap-anon.m4 \ import/m4/multiarch.m4 \ import/m4/off_t.m4 \ + import/m4/pathmax.m4 \ import/m4/ssize_t.m4 \ import/m4/stdbool.m4 \ import/m4/stddef_h.m4 \ |