Define HAVE_SYS_SOCKET_H on NetBSD and FreeBSD.

This commit is contained in:
Bang Jun-Young 2001-05-14 19:20:30 +00:00 committed by Alexandre Julliard
parent 8f79fdc3fe
commit 88edb86363
1 changed files with 2 additions and 2 deletions

View File

@ -11,11 +11,11 @@
#include <sys/types.h> #include <sys/types.h>
#ifndef __WINE__ #ifndef __WINE__
#ifdef __svr4__ #if defined(__svr4__) || defined(__NetBSD__) || defined(__FreeBSD__)
#ifndef HAVE_SYS_SOCKET_H #ifndef HAVE_SYS_SOCKET_H
#define HAVE_SYS_SOCKET_H #define HAVE_SYS_SOCKET_H
#endif /* HAVE_SYS_SOCKET_H */ #endif /* HAVE_SYS_SOCKET_H */
#endif /* __svr4__ */ #endif /* __svr4__ || __NetBSD__ || __FreeBSD__ */
#endif /* __WINE__ */ #endif /* __WINE__ */
/* Solaris uses these macro names */ /* Solaris uses these macro names */