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