This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH 07/13] Move pathmax.h to common-defs.h
- From: Gary Benson <gbenson at redhat dot com>
- To: gdb-patches at sourceware dot org
- Date: Tue, 29 Jul 2014 15:37:09 +0100
- Subject: [PATCH 07/13] Move pathmax.h to common-defs.h
- Authentication-results: sourceware.org; auth=none
- References: <1406644635-1011-1-git-send-email-gbenson at redhat dot com>
This commit moves the inclusion of pathmax.h to common-defs.h and
removes all other inclusions.
gdb/
2014-07-28 Gary Benson <gbenson@redhat.com>
* common/common-defs.h: Include pathmax.h.
* defs.h: Do not include pathmax.h.
gdb/gdbserver/
2014-07-28 Gary Benson <gbenson@redhat.com>
* server.h: Do not include pathmax.h.
---
gdb/ChangeLog | 5 +++++
gdb/common/common-defs.h | 1 +
gdb/defs.h | 3 ---
gdb/gdbserver/ChangeLog | 4 ++++
gdb/gdbserver/server.h | 3 ---
5 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/gdb/common/common-defs.h b/gdb/common/common-defs.h
index eedc318..b31b3b8 100644
--- a/gdb/common/common-defs.h
+++ b/gdb/common/common-defs.h
@@ -33,5 +33,6 @@
#include <stddef.h>
#include "ansidecl.h"
#include "libiberty.h"
+#include "pathmax.h"
#endif /* COMMON_DEFS_H */
diff --git a/gdb/defs.h b/gdb/defs.h
index d9775e3..189de74 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -48,9 +48,6 @@
#include <unistd.h>
-/* For gnulib's PATH_MAX. */
-#include "pathmax.h"
-
#include <fcntl.h>
#include "gdb_locale.h"
diff --git a/gdb/gdbserver/server.h b/gdb/gdbserver/server.h
index 9ecd9e0..fc973c1 100644
--- a/gdb/gdbserver/server.h
+++ b/gdb/gdbserver/server.h
@@ -32,9 +32,6 @@
#endif
#include <setjmp.h>
-/* For gnulib's PATH_MAX. */
-#include "pathmax.h"
-
#include <string.h>
#ifdef HAVE_ALLOCA_H
--
1.7.1