]> git.sur5r.net Git - openldap/blob - include/portable.h.nt
Updates for MSVC 5.0. Fix libraries names to be ol{ber,dap,..}32.lib.
[openldap] / include / portable.h.nt
1 /* include/portable.h.nt -- manually updated of MS NT (MS VC5) */
2 /* synced with portable.h.in 1.24 */
3 /*
4  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted only
8  * as authorized by the OpenLDAP Public License.  A copy of this
9  * license is available at http://www.OpenLDAP.org/license.html or
10  * in file LICENSE in the top-level directory of the distribution.
11  */
12
13 #ifndef _LDAP_PORTABLE_H
14 #define _LDAP_PORTABLE_H
15
16 /* end of preamble */
17
18 /* --------------------------------------------------- */
19 /* begin of MSVC5 specific entries */
20
21 /* MSVC5 doesn't define _STDC_ but supports _STDC_ features */
22 #define __NEED_PROTOTYPES 1
23 #define HAVE_STDARG 1
24
25 /* we installed Henry Spencer's REGEX */
26 #define HAVE_REGEX_H 1
27
28 /* win32 specific stuff */
29 #define strcasecmp      stricmp
30 #define strncasecmp     strnicmp
31 #define strdup          _strdup
32
33 /* define type for caddr_t */
34 typedef char * caddr_t;
35
36 /* we have spawnlp instead of fork/execlp */
37 #define HAVE_SPAWNLP 1
38
39 /* we have winsock2 */
40 #define HAVE_WINSOCK2 1
41
42 /* we have winsock */
43 #define HAVE_WINSOCK 1
44
45 /* we have <conio.h> */
46 #define HAVE_CONIO_H 1
47
48 /* we have <io.h> */
49 #define HAVE_IO_H 1
50
51 /* we have <process.h> */
52 #define HAVE_PROCESS_H 1
53
54 /* end of MSVC5 specific entries */
55 /* --------------------------------------------------- */
56
57 /* Define if on AIX 3.
58    System headers sometimes define this.
59    We just want to avoid a redefinition error message.  */
60 #ifndef _ALL_SOURCE
61 /* #undef _ALL_SOURCE */
62 #endif
63
64 /* Define to empty if the keyword does not work.  */
65 /* #undef const */
66
67 /* Define to the type of elements in the array set by `getgroups'.
68    Usually this is either `int' or `gid_t'.  */
69 /* #undef GETGROUPS_T */
70
71 /* Define to `int' if <sys/types.h> doesn't define.  */
72 #define gid_t long
73
74 /* Define if you don't have vprintf but do have _doprnt.  */
75 /* #undef HAVE_DOPRNT */
76
77 /* Define if your struct stat has st_blksize.  */
78 /* #undef HAVE_ST_BLKSIZE */
79
80 /* Define if you have the strftime function.  */
81 #define HAVE_STRFTIME 1
82
83 /* Define if you have <sys/wait.h> that is POSIX.1 compatible.  */
84 /* #undef HAVE_SYS_WAIT_H */
85
86 /* Define if you have the vprintf function.  */
87 #define HAVE_VPRINTF 1
88
89 /* Define if on MINIX.  */
90 /* #undef _MINIX */
91
92 /* Define to `int' if <sys/types.h> doesn't define.  */
93 #define mode_t int
94
95 /* Define to `long' if <sys/types.h> doesn't define.  */
96 /* #undef off_t */
97
98 /* Define to `int' if <sys/types.h> doesn't define.  */
99 #define pid_t int
100
101 /* Define if the system does not provide POSIX.1 features except
102    with this defined.  */
103 /* #undef _POSIX_1_SOURCE */
104
105 /* Define if you need to in order for stat and other things to work.  */
106 /* #undef _POSIX_SOURCE */
107
108 /* Define as the return type of signal handlers (int or void).  */
109 #define RETSIGTYPE void
110
111 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
112 /* #undef size_t */
113
114 /* Define if you have the ANSI C header files.  */
115 #define STDC_HEADERS 1
116
117 /* Define if you can safely include both <sys/time.h> and <time.h>.  */
118 /* #undef TIME_WITH_SYS_TIME */
119
120 /* Define if your <sys/time.h> declares struct tm.  */
121 /* #undef TM_IN_SYS_TIME */
122
123 /* Define to `int' if <sys/types.h> doesn't define.  */
124 #define uid_t long
125
126 /* Define if your processor stores words with the most significant
127    byte first (like Motorola and SPARC, unlike Intel and VAX).  */
128 /* #undef WORDS_BIGENDIAN */
129
130 /* define this if needed to get reentrant functions */
131 #ifndef REENTRANT
132 /* #undef REENTRANT */
133 #endif
134 #ifndef _REENTRANT
135 #undef _REENTRANT
136 #endif
137
138 /* define this if needed to get threadsafe functions */
139 #ifndef THREADSAFE
140 /* #undef THREADSAFE */
141 #endif
142 #ifndef _THREADSAFE
143 /* #undef _THREADSAFE */
144 #endif
145 #ifndef THREAD_SAFE
146 /* #undef THREAD_SAFE */
147 #endif
148 #ifndef _THREAD_SAFE
149 /* #undef _THREAD_SAFE *
150 #endif
151
152 /* define this if toupper() requires tolower() */
153 #define C_UPPER_LOWER
154
155 /* define this to the number of arguments ctime_r() expects */
156 /* #undef CTIME_R_NARGS */
157
158 /* define this if sys_errlist is not defined in stdio.h or errno.h */
159 /* #undef DECL_SYS_ERRLIST */
160
161 /* define if you have berkeley db */
162 /* #undef HAVE_BERKELEY_DB */
163
164 /* define if you have berkeley db2 */
165 /* #undef HAVE_BERKELEY_DB2 */
166
167 /* define if you have crypt */
168 /* #undef HAVE_CRYPT */
169
170 /* define if you have GDBM */
171 /* #undef HAVE_GDBM */
172
173 /* define if you have NDBM */
174 /* #undef HAVE_NDBM */
175
176 /* define if you have res_search() */
177 #ifdef __notdef__
178 /* see second res_search define */
179 /* #undef HAVE_RES_SEARCH */
180 #endif
181
182 /* define if you have sched_yield() */
183 #ifdef __notdef__
184 /* see second sched_yield define */
185 /* #undef HAVE_SCHED_YIELD */
186 #endif
187
188 /* define if you have setproctitle() */
189 #undef HAVE_SETPROCTITLE
190
191 /* define this for connectionless LDAP support */
192 /* #undef LDAP_CONNECTIONLESS */
193
194 /* define this to add debugging code */
195 #define LDAP_DEBUG 1
196
197 /* define this to remove -lldap cache support */
198 /* #undef LDAP_NOCACHE */
199
200 /* define this for LDAP process title support */
201 /* #undef LDAP_PROCTITLE */
202
203 /* define this for LDAP User Interface support */
204 /* #undef LDAP_LIBUI */
205
206 /* define this to add syslog code */
207 /* #undef LDAP_SYSLOG */
208
209 /* define this to use DBBTREE w/ LDBM backend */
210 /* #undef LDBM_USE_DBBTREE */
211
212 /* define this to use DBHASH w/ LDBM backend */
213 /* #undef LDBM_USE_DBHASH */
214
215 /* define this for ACL Group support */
216 /* #undef SLAPD_ACLGROUPS */
217
218 /* define this to use SLAPD Berkeley DB2 backend */
219 /* #undef SLAPD_BDB2 */
220
221 /* define this for ClearText password support */
222 /* #undef SLAPD_CLEARTEXT */
223
224 /* define this for crypt(3) password support */
225 /* #undef SLAPD_CRYPT */
226
227 /* define this to use SLAPD LDBM backend */
228 /* #undef SLAPD_LDBM */
229
230 /* define this to use SLAPD passwd backend */
231 /* #undef SLAPD_PASSWD */
232
233 /* define this to use SLAPD perl backend */
234 /* #undef SLAPD_PERL */
235
236 /* define this for phonetic support */
237 /* #undef SLAPD_PHONETIC */
238
239 /* define this for Reverse Lookup support */
240 /* #undef SLAPD_RLOOKUPS */
241
242 /* define this to use SLAPD shell backend */
243 /* #undef SLAPD_SHELL */
244
245 /* define this to be empty if your compiler doesn't support volatile */
246 /* #undef volatile */
247
248 /* define this if sig_atomic_t isn't defined in signal.h */
249 /* #undef sig_atomic_t */
250
251 /* These are defined in ldap_features.h */
252 /*
253  LDAP_API_FEATURE_X_OPENLDAP_REENTRANT
254  LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE
255  LDAP_API_FEATURE_X_OPENLDAP_V2_DNS
256  LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
257 */
258
259 /* The number of bytes in a int.  */ 
260 #define SIZEOF_INT 4
261
262 /* The number of bytes in a long.  */ 
263 #define SIZEOF_LONG 4
264   
265 /* The number of bytes in a short.  */
266 #define SIZEOF_SHORT 2
267
268 /* Define if you have the bcopy function.  */
269 /* #undef HAVE_BCOPY */
270
271 /* Define if you have the ctime_r function.  */
272 /* #undef HAVE_CTIME_R */
273
274 /* Define if you have the flock function.  */
275 /* #undef HAVE_FLOCK */
276
277 /* Define if you have the getdtablesize function.  */
278 /* #undef HAVE_GETDTABLESIZE */
279
280 /* Define if you have the gethostbyaddr_r function.  */
281 /* #undef HAVE_GETHOSTBYADDR_R */
282
283 /* Define if you have the gethostbyname_r function.  */
284 /* #undef HAVE_GETHOSTBYNAME_R */
285
286 /* Define if you have the gethostname function.  */
287 #define HAVE_GETHOSTNAME 1
288
289 /* define if you have the getopt function */
290 /* #undef HAVE_GETOPT */
291
292 /* Define if you have the getpwuid function.  */
293 /* #undef HAVE_GETPWUID */
294
295 /* Define if you have the gettimeofday function.  */
296 /* #undef HAVE_GETTIMEOFDAY */
297
298 /* Define if you have the lockf function.  */
299 /* #undef HAVE_LOCKF */
300
301 /* Define if you have the memcpy function.  */
302 #define HAVE_MEMCPY 1
303
304 /* Define if you have the memmove function.  */
305 #define HAVE_MEMMOVE 1
306
307 /* Define if you have the mkstemp function.  */
308 /* #undef HAVE_MKSTEMP */
309
310 /* Define if you have the pthread_getconcurrency function.  */
311 /* #undef HAVE_PTHREAD_GETCONCURRENCY */
312
313 /* Define if you have the pthread_kill function.  */
314 /* #undef HAVE_PTHREAD_KILL */
315
316 /* Define if you have the pthread_setconcurrency function.  */
317 /* #undef HAVE_PTHREAD_SETCONCURRENCY */
318
319 /* Define if you have the pthread_yield function.  */
320 /* #undef HAVE_PTHREAD_YIELD */
321
322 /* Define if you have the res_search function.  */
323 /* #undef HAVE_RES_SEARCH */
324
325 /* Define if you have the sched_yield function.  */
326 /* #undef HAVE_SCHED_YIELD */
327
328 /* Define if you have the select function.  */
329 #define HAVE_SELECT 1
330
331 /* Define if you have the setpwfile function.  */
332 /* #undef HAVE_SETPWFILE */
333
334 /* Define if you have the setsid function.  */
335 /* #undef HAVE_SETSID */
336
337 /* Define if you have the signal function.  */
338 #define HAVE_SIGNAL 1
339
340 /* Define if you have the sigset function.  */
341 /* #undef HAVE_SIGSET */
342
343 /* Define if you have the snprintf function.  */
344 /* #undef HAVE_SNPRINTF */
345
346 /* Define if you have the socket function.  */
347 #define HAVE_SOCKET 1
348
349 /* Define if you have the strdup function.  */
350 #define HAVE_STRDUP 1
351
352 /* Define if you have the strerror function.  */
353 #define HAVE_STRERROR 1
354
355 /* Define if you have the strpbrk function.  */
356 #define HAVE_STRPBRK 1
357
358 /* Define if you have the strrchr function.  */
359 #define HAVE_STRRCHR 1
360
361 /* Define if you have the strsep function.  */
362 /* #undef HAVE_STRSEP */
363
364 /* Define if you have the strspn function.  */
365 #define HAVE_STRSPN 1
366
367 /* Define if you have the strstr function.  */
368 #define HAVE_STRSTR 1
369
370 /* Define if you have the strtok function.  */
371 #define HAVE_STRTOK 1
372
373 /* Define if you have the strtok_r function.  */
374 /* #undef HAVE_STRTOK_R */
375
376 /* Define if you have the strtol function.  */
377 #define HAVE_STRTOL 1
378
379 /* Define if you have the strtoul function.  */
380 #define HAVE_STRTOUL 1
381
382 /* Define if you have the sysconf function.  */
383 /* #undef HAVE_SYSCONF */
384
385 /* Define if you have the tempnam function.  */
386 /* #undef HAVE_TEMPNAM */
387
388 /* Define if you have the thr_getconcurrency function.  */
389 /* #undef HAVE_THR_GETCONCURRENCY */
390
391 /* Define if you have the thr_setconcurrency function.  */
392 /* #undef HAVE_THR_SETCONCURRENCY */
393
394 /* Define if you have the thr_yield function.  */
395 /* #undef HAVE_THR_YIELD */
396
397 /* Define if you have the vsnprintf function.  */
398 /* #undef HAVE_VSNPRINTF */
399
400 /* Define if you have the vsprintf function.  */
401 /* #undef HAVE_VSPRINTF */
402
403 /* Define if you have the waitpid function.  */
404 #define HAVE_WAITPID 1
405
406 /* Define if you have the <arpa/nameser.h> header file.  */
407 /* #undef HAVE_ARPA_NAMESER_H */
408
409 /* Define if you have the <crypt.h> header file.  */
410 /* #undef HAVE_CRYPT_H */
411
412 /* Define if you have the <db.h> header file.  */
413 /* #undef HAVE_DB_H */
414
415 /* Define if you have the <db_185.h> header file.  */
416 /* #undef HAVE_DB_185_H */
417
418 /* Define if you have the <des.h> header file.  */
419 /* #undef HAVE_DES_H */
420
421 /* Define if you have the <dirent.h> header file.  */
422 /* #undef HAVE_DIRENT_H */
423
424 /* Define if you have the <dmalloc.h> header file.  */
425 /* #undef HAVE_DMALLOC_H */
426
427 /* Define if you have the <errno.h> header file.  */
428 #define HAVE_ERRNO_H 1
429
430 /* Define if you have the <fcntl.h> header file.  */
431 #define HAVE_FCNTL_H 1
432
433 /* Define if you have the <filio.h> header file.  */
434 /* #undef HAVE_FILIO_H */
435
436 /* Define if you have the <gdbm.h> header file.  */
437 /* #undef HAVE_GDBM_H */
438
439 /* Define if you have the <getopt.h> header file.  */
440 /* #undef HAVE_GETOPT_H */
441
442 /* Define if you have the <kerberosIV/des.h> header file.  */
443 /* #undef HAVE_KERBEROSIV_DES_H */
444
445 /* Define if you have the <kerberosIV/krb.h> header file.  */
446 /* #undef HAVE_KERBEROSIV_KRB_H */
447
448 /* Define if you have the <krb.h> header file.  */
449 /* #undef HAVE_KRB_H */
450
451 /* Define if you have the <libutil.h> header file.  */
452 /* #undef HAVE_LIBUTIL_H */
453
454 /* Define if you have the <limits.h> header file.  */
455 #define HAVE_LIMITS_H 1
456
457 /* Define if you have the <lwp/lwp.h> header file.  */
458 /* #undef HAVE_LWP_LWP_H */
459
460 /* Define if you have the <mach/cthreads.h> header file.  */
461 /* #undef HAVE_MACH_CTHREADS_H */
462
463 /* Define if you have the <malloc.h> header file.  */
464 #define HAVE_MALLOC_H 1
465
466 /* Define if you have the <memory.h> header file.  */
467 /* #define HAVE_MEMORY_H */
468
469 /* Define if you have the <ncurses.h> header file.  */
470 /* #undef HAVE_NCURSES_H */
471
472 /* Define if you have the <ndbm.h> header file.  */
473 /* #undef HAVE_NDBM_H */
474
475 /* Define if you have the <ndir.h> header file.  */
476 /* #undef HAVE_NDIR_H */
477
478 /* Define if you have the <psap.h> header file.  */
479 /* #undef HAVE_PSAP_H */
480
481 /* Define if you have the <pthread.h> header file.  */
482 /* #undef HAVE_PTHREAD_H */
483
484 /* Define if you have the <pwd.h> header file.  */
485 /* #undef HAVE_PWD_H */
486
487 /* Define if you have the <regex.h> header file.  */
488 /* #undef HAVE_REGEX_H */
489
490 /* Define if you have the <resolv.h> header file.  */
491 /* #undef HAVE_RESOLV_H */
492
493 /* Define if you have the <sched.h> header file.  */
494 /* #undef HAVE_SCHED_H */
495
496 /* Define if you have the <sgtty.h> header file.  */
497 /* #undef HAVE_SGTTY_H */
498
499 /* Define if you have the <stdarg.h> header file.  */
500 #define HAVE_STDARG_H 1
501
502 /* Define if you have the <stddef.h> header file.  */
503 #define HAVE_STDDEF_H 1
504
505 /* Define if you have the <string.h> header file.  */
506 #define HAVE_STRING_H 1
507
508 /* Define if you have the <strings.h> header file.  */
509 /* #undef HAVE_STRINGS_H */
510
511 /* Define if you have the <synch.h> header file.  */
512 /* #undef HAVE_SYNCH_H */
513
514 /* Define if you have the <sys/dir.h> header file.  */
515 /* #undef HAVE_SYS_DIR_H */
516
517 /* Define if you have the <sys/errno.h> header file.  */
518 /* #undef HAVE_SYS_ERRNO_H */
519
520 /* Define if you have the <sys/file.h> header file.  */
521 /* #undef HAVE_SYS_FILE_H */
522
523 /* Define if you have the <sys/filio.h> header file.  */
524 /* #undef HAVE_SYS_FILIO_H */
525
526 /* Define if you have the <sys/ioctl.h> header file.  */
527 /* #undef HAVE_SYS_IOCTL_H */
528
529 /* Define if you have the <sys/ndir.h> header file.  */
530 /* #undef HAVE_SYS_NDIR_H */
531
532 /* Define if you have the <sys/param.h> header file.  */
533 /* #undef HAVE_SYS_PARAM_H */
534
535 /* Define if you have the <sys/resource.h> header file.  */
536 /* #undef HAVE_SYS_RESOURCE_H */
537
538 /* Define if you have the <sys/socket.h> header file.  */
539 /* #undef HAVE_SYS_SOCKET_H */
540
541 /* Define if you have the <sys/syslog.h> header file.  */
542 /* #undef HAVE_SYS_SYSLOG_H */
543
544 /* Define if you have the <sys/time.h> header file.  */
545 /* #undef HAVE_SYS_TIME_H */
546
547 /* Define if you have the <sys/types.h> header file.  */
548 #define HAVE_SYS_TYPES_H 1
549
550 /* Define if you have the <sysexits.h> header file.  */
551 /* #undef HAVE_SYSEXITS_H */
552
553 /* Define if you have the <syslog.h> header file.  */
554 /* #undef HAVE_SYSLOG_H */
555
556 /* Define if you have the <tcpd.h> header file.  */
557 /* #undef HAVE_TCPD_H */
558
559 /* Define if you have the <termcap.h> header file.  */
560 /* #undef HAVE_TERMCAP_H */
561
562 /* Define if you have the <termios.h> header file.  */
563 /* #undef HAVE_TERMIOS_H */
564
565 /* Define if you have the <thread.h> header file.  */
566 /* #undef HAVE_THREAD_H */
567
568 /* Define if you have the <unistd.h> header file.  */
569 /* #undef HAVE_UNISTD_H */
570
571 /* Define if you have the V3 library (-lV3).  */
572 /* #undef HAVE_LIBV3 */
573
574 /* Define if you have the bind library (-lbind).  */
575 /* #undef HAVE_LIBBIND */
576
577 /* Define if you have the dmalloc library (-ldmalloc).  */
578 /* #undef HAVE_LIBDMALLOC */
579
580 /* Define if you have the gen library (-lgen).  */
581 /* #undef HAVE_LIBGEN */
582
583 /* Define if you have the inet library (-linet).  */
584 /* #undef HAVE_LIBINET */
585
586 /* Define if you have the net library (-lnet).  */
587 /* #undef HAVE_LIBNET */
588
589 /* Define if you have the nsl library (-lnsl).  */
590 /* #undef HAVE_LIBNSL */
591
592 /* Define if you have the nsl_s library (-lnsl_s).  */
593 /* #undef HAVE_LIBNSL_S */
594
595 /* Define if you have the resolv library (-lresolv).  */
596 /* #undef HAVE_LIBRESOLV */
597
598 /* Define if you have the socket library (-lsocket).  */
599 /* #undef HAVE_LIBSOCKET */
600
601 /* define if you have -lxttp */
602 /* #undef HAVE_XTPP */
603
604 /* define if you have -ldsap */
605 /* #undef HAVE_DSAP */
606
607 /* define if you have -lisode */
608 /* #undef HAVE_ISODE */
609
610 /* define if you have -lpp */
611 /* #undef HAVE_PP */
612
613 /* define if you have Kerberos des_debug */
614 /* #undef HAVE_DES_DEBUG */
615
616 /* define if you have Kerberos */
617 /* #undef HAVE_KERBEROS */
618
619 /* define if pthreads API compatible with final spec */
620 /* #undef HAVE_PTHREADS_FINAL */
621
622 /* define if pthreads API compatible with draft4 spec */
623 /* #undef HAVE_PTHREADS_D4 */
624
625 /* define if you have LinuxThreads */
626 /* #undef HAVE_LINUX_THREADS */
627
628 /* define if you have POSIX Threads */
629 /* #undef HAVE_PTHREADS */
630
631 /* define if you have pthread_detach function */
632 /* #undef HAVE_PTHREAD_DETACH */
633
634 /* define if you have Mach Cthreads */
635 /* #undef HAVE_MACH_CTHREADS */
636
637 /* if you have Solaris LWP (thr) package */
638 /* #undef HAVE_THR */
639
640 /* if you have SunOS LWP package */
641 /* #undef HAVE_LWP */
642
643 /* define if select implicitly yields */
644 #define HAVE_YIELDING_SELECT 1
645
646 /* define if you have (or want) no threads */
647 /* #undef NO_THREADS */
648
649 /* define if you have -lwrap */
650 /* #undef HAVE_TCPD */
651
652 /* define if you have -ltermcap */
653 /* #undef HAVE_TERMCAP */
654
655 /* define if you have -lncurses */
656 /* #undef HAVE_NCURSES */
657
658 /* define if you have no termcap support */
659 #define NO_TERMCAP 1
660
661 /* Define if TIOCGWINSZ requires sys/ioctl.h */
662 /* #undef GWINSZ_IN_SYS_IOCTL */
663
664 /* define if you have POSIX termios */
665 /* #undef HAVE_POSIX_TERMIOS */
666
667 /* Define if system has ptrdiff_t type */
668 #define HAVE_PTRDIFF_T 1
669
670 /* define if cross compiling */
671 /* #undef CROSS_COMPILING */
672
673 /* begin of postamble */
674
675 #ifdef HAVE_STDDEF_H
676 #       include <stddef.h>
677 #endif
678
679 #include "ldap_cdefs.h"
680 #include "ldap_features.h"
681
682 #endif /* _LDAP_PORTABLE_H */