summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-08-01 16:48:27 +0000
committerKazu Hirata <kazu@codesourcery.com>2006-08-01 16:48:27 +0000
commit3b277629109572e856d0ba764acb99909f4cb297 (patch)
treeb7570c78f2bae64c25ff8531c7afaf09e072c14e
parent3273ed91a6dce389ef516ebf296ea95d0ba20d75 (diff)
downloadgdb-3b277629109572e856d0ba764acb99909f4cb297.tar.gz
gdb/
Backport from mainline: 2006-06-24 Eli Zaretskii <eliz@gnu.org> * defs.h (DIRNAME_SEPARATOR) [!__CYGWIN__ && _WIN32]: Define to `;'.
-rw-r--r--ChangeLog.csl8
-rw-r--r--gdb/defs.h4
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl
index e64f606cf42..f5c6570aa61 100644
--- a/ChangeLog.csl
+++ b/ChangeLog.csl
@@ -1,3 +1,11 @@
+2006-08-01 Vladimir Prus <vladimir@codesourcery.com>
+
+ gdb/
+ Backport from mainline:
+ 2006-06-24 Eli Zaretskii <eliz@gnu.org>
+ * defs.h (DIRNAME_SEPARATOR) [!__CYGWIN__ && _WIN32]:
+ Define to `;'.
+
2006-07-27 Nathan Sidwell <nathan@codesourcery.com>
gdb/testsuite/
diff --git a/gdb/defs.h b/gdb/defs.h
index 1512a6a7bf3..d472f8de5aa 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -1163,6 +1163,10 @@ extern int use_windows;
# define DIRNAME_SEPARATOR ';'
#endif
+#if !defined (__CYGWIN__) && defined (_WIN32)
+# define DIRNAME_SEPARATOR ';'
+#endif
+
#ifndef DIRNAME_SEPARATOR
#define DIRNAME_SEPARATOR ':'
#endif