diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2001-04-05 02:02:13 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2001-04-05 02:02:13 +0000 |
commit | 608506ed674285b7c6dc61e0bdbe9e8c473c0e7b (patch) | |
tree | 64eb0219903753785c412eae6f6141e68486f465 /gdb/symfile.c | |
parent | 6457bd476178a8cac32638d2e5d6cf0977a88e69 (diff) | |
download | gdb-608506ed674285b7c6dc61e0bdbe9e8c473c0e7b.zip gdb-608506ed674285b7c6dc61e0bdbe9e8c473c0e7b.tar.gz gdb-608506ed674285b7c6dc61e0bdbe9e8c473c0e7b.tar.bz2 |
* main.c: Remove windows.h use.
(gdbtk_test): Use PATH_MAX for home var calculation.
* remote-e7000.c (e7000_parse_device): Accomodate Cygwin as well as Win32 in
test.
* ser-tcp.c: Use modern __CYGWIN__ conditional.
* source.c (mod_path): Add __CYGWIN__ conditional to WIN32 test.
(openp): Ditto.
* symfile.c (symfile_bfd_open): Ditto.
* gdbtk/generic/gdbtk.c: Ditto.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index 1166eea..b644af8 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -1052,7 +1052,7 @@ symfile_bfd_open (char *name) /* Look down path for it, allocate 2nd new malloc'd copy. */ desc = openp (getenv ("PATH"), 1, name, O_RDONLY | O_BINARY, 0, &absolute_name); -#if defined(__GO32__) || defined(_WIN32) +#if defined(__GO32__) || defined(_WIN32) || defined (__CYGWIN__) if (desc < 0) { char *exename = alloca (strlen (name) + 5); |