mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
added sequent fixes
This commit is contained in:
parent
3f37b2db98
commit
21c7f21fd5
@ -481,7 +481,6 @@ char *mktemp(char *); /* No standard include */
|
||||
#include <netinet/ip.h>
|
||||
#define SIGNAL_CAST (void (*)())
|
||||
#define USE_DIRECT
|
||||
#define REPLACE_INNETGR
|
||||
#endif
|
||||
|
||||
|
||||
@ -548,6 +547,32 @@ char *mktemp(char *); /* No standard include */
|
||||
#define USE_DIRECT
|
||||
#endif
|
||||
|
||||
#ifdef SEQUENT_PTX4
|
||||
#include <string.h>
|
||||
#include <sys/dir.h>
|
||||
#include <dirent.h>
|
||||
#include <sys/statfs.h>
|
||||
#include <sys/statvfs.h>
|
||||
#include <sys/vfs.h>
|
||||
#include <fcntl.h>
|
||||
#include <sys/sockio.h>
|
||||
#include <netinet/tcp.h>
|
||||
#include <stropts.h>
|
||||
#include <termios.h>
|
||||
#define SYSV
|
||||
#define USE_WAITPID
|
||||
#define SIGNAL_CAST (void (*)(int))
|
||||
#define USE_STATVFS
|
||||
#define USE_GETCWD
|
||||
#ifndef seteuid
|
||||
#define seteuid(uid) setreuid(-1,uid)
|
||||
#endif
|
||||
#ifndef setegid
|
||||
#define setegid(gid) setregid(-1,gid)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef NEXT2
|
||||
#include <sys/types.h>
|
||||
#include <strings.h>
|
||||
@ -734,7 +759,6 @@ char *strdup (char *);
|
||||
#endif /* DNIX */
|
||||
|
||||
#ifdef CONVEX
|
||||
#define SIGNAL_CAST (void (*)(int))
|
||||
#include <netinet/tcp.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <dirent.h>
|
||||
|
Loading…
Reference in New Issue
Block a user