Add missing #includes for FreeBSD and Solaris.
This commit is contained in:
parent
a65ef56101
commit
c8764e4de0
10
files/smb.c
10
files/smb.c
|
@ -53,8 +53,18 @@
|
|||
#include <utime.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/types.h>
|
||||
#ifdef HAVE_NETINET_IN_SYSTM_H
|
||||
#include <netinet/in_systm.h>
|
||||
#endif
|
||||
#ifdef HAVE_NETINET_IN_H
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
#ifdef HAVE_NETINET_IP_H
|
||||
#include <netinet/ip.h>
|
||||
#endif
|
||||
#ifdef HAVE_ARPA_INET_H
|
||||
#include <arpa/inet.h>
|
||||
#endif
|
||||
|
||||
#include "winerror.h"
|
||||
#include "windef.h"
|
||||
|
|
Loading…
Reference in New Issue