diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/ser-tcp.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7c25a77..0f0eb33 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Fri Sep 6 13:14:13 1996 Geoffrey Noer <noer@cygnus.com> + + * ser-tcp.c: don't include netinet/tcp.h if __CYGWIN32__ + Thu Sep 5 17:05:13 1996 Geoffrey Noer <noer@cygnus.com> * config/i386/cygwin32.mh: diff --git a/gdb/ser-tcp.c b/gdb/ser-tcp.c index 1fb0db4..23153a9 100644 --- a/gdb/ser-tcp.c +++ b/gdb/ser-tcp.c @@ -25,7 +25,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <arpa/inet.h> #include <netdb.h> #include <sys/socket.h> + +#ifndef __CYGWIN32__ #include <netinet/tcp.h> +#endif + #include "signals.h" #include "gdb_string.h" |