This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH 8/9] Normalize on PATH_MAX instead of MAXPATHLEN throughout.
- From: Tom Tromey <tromey at redhat dot com>
- To: Pedro Alves <palves at redhat dot com>
- Cc: gdb-patches at sourceware dot org
- Date: Fri, 28 Jun 2013 09:18:19 -0600
- Subject: Re: [PATCH 8/9] Normalize on PATH_MAX instead of MAXPATHLEN throughout.
- References: <20130627185200 dot 6625 dot 10526 dot stgit at brno dot lan> <20130627185257 dot 6625 dot 19906 dot stgit at brno dot lan>
>>>>> "Pedro" == Pedro Alves <palves@redhat.com> writes:
Pedro> With the pathmax gnulib module in place, we can use PATH_MAX
Pedro> consistently throughout, instead of the current mixbag of PATH_MAX and
Pedro> MAXPATHLEN uses. It's no longer necessary to include sys/param.h
Pedro> (supposedly, I can't check all ports touched here) for MAXPATHLEN.
After this patch, I think HAVE_SYS_PARAM_H is never used, so the
configure.ac check can be removed as well.
Tom