Samba 3: added Samba 3.0.24 sources
[tomato.git] / release / src / router / samba3 / source / nsswitch / winbind_nss_config.h
blobf9d38526604acb8c1357c3fc5a6e712f9dded633
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind daemon for ntdom nss module
6 Copyright (C) Tim Potter 2000
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Library General Public
10 License as published by the Free Software Foundation; either
11 version 2 of the License, or (at your option) any later version.
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Library General Public License for more details.
18 You should have received a copy of the GNU Library General Public
19 License along with this library; if not, write to the
20 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.
24 #ifndef _WINBIND_NSS_CONFIG_H
25 #define _WINBIND_NSS_CONFIG_H
27 /* shutup the compiler warnings due to krb5.h on 64-bit sles9 */
28 #ifdef SIZEOF_LONG
29 #undef SIZEOF_LONG
30 #endif
33 /* Include header files from data in config.h file */
35 #ifndef NO_CONFIG_H
36 #include <config.h>
37 #endif
39 #include <stdio.h>
41 #ifdef HAVE_STDLIB_H
42 #include <stdlib.h>
43 #endif
45 #ifdef HAVE_UNISTD_H
46 #include <unistd.h>
47 #endif
49 #ifdef HAVE_SYS_SELECT_H
50 #include <sys/select.h>
51 #endif
53 #ifdef HAVE_SYS_SOCKET_H
54 #include <sys/socket.h>
55 #endif
57 #ifdef HAVE_UNIXSOCKET
58 #include <sys/un.h>
59 #endif
61 #ifdef HAVE_SYS_TIME_H
62 #include <sys/time.h>
63 #endif
65 #ifdef HAVE_GRP_H
66 #include <grp.h>
67 #endif
69 #ifdef HAVE_STRING_H
70 #include <string.h>
71 #endif
73 #ifdef HAVE_FCNTL_H
74 #include <fcntl.h>
75 #else
76 #ifdef HAVE_SYS_FCNTL_H
77 #include <sys/fcntl.h>
78 #endif
79 #endif
81 #include <sys/types.h>
82 #include <sys/stat.h>
83 #include <errno.h>
84 #include <pwd.h>
85 #include "nsswitch/winbind_nss.h"
87 /* I'm trying really hard not to include anything from smb.h with the
88 result of some silly looking redeclaration of structures. */
90 #ifndef _PSTRING
91 #define _PSTRING
92 #define PSTRING_LEN 1024
93 #define FSTRING_LEN 256
94 typedef char pstring[PSTRING_LEN];
95 typedef char fstring[FSTRING_LEN];
96 #endif
98 #ifndef _BOOL
99 #define _BOOL /* So we don't typedef BOOL again in vfs.h */
100 #define False (0)
101 #define True (1)
102 #define Auto (2)
103 typedef int BOOL;
104 #endif
106 #if !defined(uint32)
107 #if (SIZEOF_INT == 4)
108 #define uint32 unsigned int
109 #elif (SIZEOF_LONG == 4)
110 #define uint32 unsigned long
111 #elif (SIZEOF_SHORT == 4)
112 #define uint32 unsigned short
113 #endif
114 #endif
116 #if !defined(uint16)
117 #if (SIZEOF_SHORT == 4)
118 #define uint16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
119 #else /* SIZEOF_SHORT != 4 */
120 #define uint16 unsigned short
121 #endif /* SIZEOF_SHORT != 4 */
122 #endif
124 #ifndef uint8
125 #define uint8 unsigned char
126 #endif
129 * check for 8 byte long long
132 #if !defined(uint64)
133 #if (SIZEOF_LONG == 8)
134 #define uint64 unsigned long
135 #elif (SIZEOF_LONG_LONG == 8)
136 #define uint64 unsigned long long
137 #endif /* don't lie. If we don't have it, then don't use it */
138 #endif
140 #if !defined(int64)
141 #if (SIZEOF_LONG == 8)
142 #define int64 long
143 #elif (SIZEOF_LONG_LONG == 8)
144 #define int64 long long
145 #endif /* don't lie. If we don't have it, then don't use it */
146 #endif
150 /* zero a structure */
151 #ifndef ZERO_STRUCT
152 #define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x))
153 #endif
155 /* zero a structure given a pointer to the structure */
156 #ifndef ZERO_STRUCTP
157 #define ZERO_STRUCTP(x) { if ((x) != NULL) memset((char *)(x), 0, sizeof(*(x))); }
158 #endif
160 /* Some systems (SCO) treat UNIX domain sockets as FIFOs */
162 #ifndef S_IFSOCK
163 #define S_IFSOCK S_IFIFO
164 #endif
166 #ifndef S_ISSOCK
167 #define S_ISSOCK(mode) ((mode & S_IFSOCK) == S_IFSOCK)
168 #endif
170 #ifndef HAVE_SOCKLEN_T_TYPE
171 #define HAVE_SOCKLEN_T_TYPE
172 typedef int socklen_t;
173 #endif
175 #endif