1 /* Copyright (C) 2000 MySQL AB & Yuri Dario
2 All the above parties has a full, independent copyright to
3 the following code, including the right to use the code in
4 any manner without any demands from the other parties.
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public
8 License as published by the Free Software Foundation; version 2
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with this library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
21 /* Defines for OS2 to make it compatible for MySQL */
23 #ifndef __CONFIG_OS2_H__
24 #define __CONFIG_OS2_H__
31 /* Define to name of system eg solaris*/
32 #define SYSTEM_TYPE "IBM OS/2 Warp"
33 /* Define to machine type name eg sun10 */
34 #define MACHINE_TYPE "i686"
36 #define PACKAGE "mysql"
37 /* Version number of package */
38 #define VERSION MYSQL_SERVER_VERSION
40 #define MYSQL_UNIX_ADDR "\\socket\\MySQL"
42 #define FN_LIBCHAR '\\'
43 #define FN_ROOTDIR "\\"
44 #define MY_NFILE 1024 /* This is only used to save filenames */
48 #define DEFAULT_MYSQL_HOME "c:\\mysql"
49 #define DEFAULT_BASEDIR "C:\\"
50 #define SHAREDIR "share"
51 #define DEFAULT_CHARSET_HOME "C:/mysql/"
52 #define _POSIX_PATH_MAX 255
55 #define O_SHARE 0x1000 /* Open file in sharing mode */
56 #define FILE_BINARY O_BINARY /* my_fopen in binary mode */
57 #define S_IROTH S_IREAD /* for my_lib */
59 #define CANT_DELETE_OPEN_FILES /* saves open files in a list, for delayed delete */
61 #define O_NONBLOCK 0x10
63 #define NO_OPEN_3 /* For my_create() */
64 #define SIGQUIT SIGTERM /* No SIGQUIT */
65 #define SIGALRM 14 /* Alarm */
67 #define NO_FCNTL_NONBLOCK
70 /*#define ENFILE EMFILE */
71 /*#define ENAMETOOLONG (EOS2ERR+2) */
72 /*#define ETIMEDOUT 145 */
73 /*#define EPIPE 146 */
76 #define sleep(A) DosSleep((A)*1000)
77 #define closesocket(A) soclose(A)
82 #define bzero(x,y) memset((x),'\0',(y))
83 #define bcopy(x,y,z) memcpy((y),(x),(z))
84 #define bcmp(x,y,z) memcmp((y),(x),(z))
86 #define F_RDLCK 4 /* Read lock. */
87 #define F_WRLCK 2 /* Write lock. */
88 #define F_UNLCK 0 /* Remove lock. */
90 #define S_IFMT 0x17000 /* Mask for file type */
91 #define F_TO_EOF 0L /* Param to lockf() to lock rest of file */
98 double _cdecl
rint( double nr
);
100 DWORD
TlsAlloc( void);
101 BOOL
TlsFree( DWORD
);
102 PVOID
TlsGetValue( DWORD
);
103 BOOL
TlsSetValue( DWORD
, PVOID
);
105 /* support for > 2GB file size */
106 #define SIZEOF_OFF_T 8
107 #define lseek(A,B,C) _lseek64( A, B, C)
108 #define tell(A) _lseek64( A, 0, SEEK_CUR)
110 void* dlopen( char* path
, int flag
);
111 char* dlerror( void);
112 void* dlsym( void* hmod
, char* fn
);
113 void dlclose( void* hmod
);
116 typedef unsigned long long os_off_t
;
118 /* config.h. Generated automatically by configure. */
119 /* config.h.in. Generated automatically from configure.in by autoheader. */
121 /* Define if using alloca.c. */
122 /* #undef C_ALLOCA */
124 /* Define to empty if the keyword does not work. */
127 /* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
128 This function is required for alloca.c support on those systems. */
129 /* #undef CRAY_STACKSEG_END */
131 /* Define if you have alloca, as a function or macro. */
132 #define HAVE_ALLOCA 1
134 /* Define if you have <alloca.h> and it should be used (not on Ultrix). */
135 /* #define HAVE_ALLOCA_H 1 */
137 /* Define if you don't have vprintf but do have _doprnt. */
138 /* #undef HAVE_DOPRNT */
140 /* Define if you have a working `mmap' system call. */
141 /* #undef HAVE_MMAP */
143 /* Define if system calls automatically restart after interruption
145 /* #undef HAVE_RESTARTABLE_SYSCALLS */
147 /* Define if your struct stat has st_rdev. */
148 #define HAVE_ST_RDEV 1
150 /* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
151 /* #define HAVE_SYS_WAIT_H 1 */
153 /* Define if you don't have tm_zone but do have the external array
155 #define HAVE_TZNAME 1
157 /* Define if utime(file, NULL) sets file's timestamp to the present. */
158 #define HAVE_UTIME_NULL 1
160 /* Define if you have the vprintf function. */
161 #define HAVE_VPRINTF 1
163 /* Define as __inline if that's what the C compiler calls it. */
166 /* Define to `long' if <sys/types.h> doesn't define. */
169 /* Define as the return type of signal handlers (int or void). */
170 #define RETSIGTYPE void
172 /* Define to `unsigned' if <sys/types.h> doesn't define. */
175 /* If using the C implementation of alloca, define if you know the
176 direction of stack growth for your system; otherwise it will be
177 automatically deduced at run-time.
178 STACK_DIRECTION > 0 => grows toward higher addresses
179 STACK_DIRECTION < 0 => grows toward lower addresses
180 STACK_DIRECTION = 0 => direction of growth unknown
182 #define STACK_DIRECTION -1
184 /* Define if the `S_IS*' macros in <sys/stat.h> do not work properly. */
185 /* #undef STAT_MACROS_BROKEN */
187 /* Define if you have the ANSI C header files. */
188 #define STDC_HEADERS 1
190 /* Define if you can safely include both <sys/time.h> and <time.h>. */
191 #define TIME_WITH_SYS_TIME 1
193 /* Define if your <sys/time.h> declares struct tm. */
194 /* #undef TM_IN_SYS_TIME */
196 /* Define if your processor stores words with the most significant
197 byte first (like Motorola and SPARC, unlike Intel and VAX). */
198 /* #undef WORDS_BIGENDIAN */
200 /* Version of .frm files */
201 #define DOT_FRM_VERSION 6
204 #define FIONREAD_IN_SYS_IOCTL 1
206 /* READLINE: Define if your system defines TIOCGWINSZ in sys/ioctl.h. */
207 /* #undef GWINSZ_IN_SYS_IOCTL */
209 /* Do we have FIONREAD */
210 #define FIONREAD_IN_SYS_IOCTL 1
212 /* atomic_add() from <asm/atomic.h> (Linux only) */
213 /* #undef HAVE_ATOMIC_ADD */
215 /* atomic_sub() from <asm/atomic.h> (Linux only) */
216 /* #undef HAVE_ATOMIC_SUB */
218 /* bool is not defined by all C++ compilators */
221 /* Have berkeley db installed */
222 /* #define HAVE_BERKELEY_DB 1 */
224 /* DSB style signals ? */
225 /* #undef HAVE_BSD_SIGNALS */
227 /* Can netinet be included */
228 /* #undef HAVE_BROKEN_NETINET_INCLUDES */
231 /* #undef HAVE_BSD_SIGNALS */
233 /* ZLIB and compress: */
234 #define HAVE_COMPRESS 1
236 /* Define if we are using OSF1 DEC threads */
237 /* #undef HAVE_DEC_THREADS */
239 /* Define if we are using OSF1 DEC threads on 3.2 */
240 /* #undef HAVE_DEC_3_2_THREADS */
242 /* fp_except from ieeefp.h */
243 /* #undef HAVE_FP_EXCEPT */
246 /* #undef HAVE_GETPW_DECLS */
248 /* Solaris define gethostbyname_r with 5 arguments. glibc2 defines
249 this with 6 arguments */
250 /* #undef HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE */
252 /* In OSF 4.0f the 3'd argument to gethostname_r is hostent_data * */
253 /* #undef HAVE_GETHOSTBYNAME_R_RETURN_INT */
255 /* Define if int8, int16 and int32 types exist */
256 /* #undef HAVE_INT_8_16_32 */
258 /* Define if have -lwrap */
259 /* #undef HAVE_LIBWRAP */
261 /* Define if we are using Xavier Leroy's LinuxThreads */
262 /* #undef HAVE_LINUXTHREADS */
264 /* Do we use user level threads */
265 /* #undef HAVE_mit_thread */
267 /* For some non posix threads */
268 /* #undef HAVE_NONPOSIX_PTHREAD_GETSPECIFIC */
270 /* For some non posix threads */
271 /* #undef HAVE_NONPOSIX_PTHREAD_MUTEX_INIT */
274 #define HAVE_POSIX_SIGNALS 0
276 /* sigwait with one argument */
277 /* #undef HAVE_NONPOSIX_SIGWAIT */
279 /* pthread_attr_setscope */
280 #define HAVE_PTHREAD_ATTR_SETSCOPE 1
282 /* POSIX readdir_r */
283 /* #undef HAVE_READDIR_R */
286 /* #undef HAVE_SIGWAIT */
291 /* Solaris define gethostbyaddr_r with 7 arguments. glibc2 defines
292 this with 8 arguments */
293 /* #undef HAVE_SOLARIS_STYLE_GETHOST */
295 /* Timespec has a ts_sec instead of tv_sev */
296 #define HAVE_TIMESPEC_TS_SEC 1
298 /* Have the tzname variable */
299 #define HAVE_TZNAME 1
301 /* Define if the system files define uchar */
302 /* #undef HAVE_UCHAR */
304 /* Define if the system files define uint */
305 /* #undef HAVE_UINT */
307 /* Define if the system files define ulong */
308 /* #undef HAVE_ULONG */
310 /* UNIXWARE7 threads are not posix */
311 /* #undef HAVE_UNIXWARE7_THREADS */
313 /* new UNIXWARE7 threads that are not yet posix */
314 /* #undef HAVE_UNIXWARE7_POSIX */
317 /* #undef HAVE_USG_SIGHOLD */
319 /* Define if want -lwrap */
322 /* mysql client protocoll version */
323 #define PROTOCOL_VERSION 10
325 /* Define if qsort returns void */
326 #define QSORT_TYPE_IS_VOID 1
328 /* Define as the return type of qsort (int or void). */
329 #define RETQSORTTYPE void
331 /* Define as the base type of the last arg to accept */
332 #define SOCKET_SIZE_TYPE int
334 /* Last argument to get/setsockopt */
335 /* #undef SOCKOPT_OPTLEN_TYPE */
337 /* #undef SPEED_T_IN_SYS_TYPES */
338 /* #undef SPRINTF_RETURNS_PTR */
339 #define SPRINTF_RETURNS_INT 1
340 /* #undef SPRINTF_RETURNS_GARBAGE */
342 /* #undef STRUCT_DIRENT_HAS_D_FILENO */
343 #define STRUCT_DIRENT_HAS_D_INO 1
345 /* Define if you want to have threaded code. This may be undef on client code */
348 /* Should be client be thread safe */
349 /* #undef THREAD_SAFE_CLIENT */
352 /* #undef TIOCSTAT_IN_SYS_IOCTL */
354 /* Use multi-byte character routines */
356 /* #undef USE_MB_IDENT */
359 /* #undef USE_RAID */
361 /* Use strcoll() functions when comparing and sorting. */
362 /* #undef USE_STRCOLL */
365 #define VOID_SIGHANDLER 1
367 /* The number of bytes in a char. */
368 #define SIZEOF_CHAR 1
370 /* The number of bytes in a int. */
373 /* The number of bytes in a long. */
374 #define SIZEOF_LONG 4
376 /* The number of bytes in a long long. */
377 #define SIZEOF_LONG_LONG 8
379 /* Define if you have the alarm function. */
382 /* Define if you have the atod function. */
383 /* #undef HAVE_ATOD */
385 /* Define if you have the bcmp function. */
388 /* Define if you have the bfill function. */
389 /* #undef HAVE_BFILL */
391 /* Define if you have the bmove function. */
392 /* #undef HAVE_BMOVE */
394 /* Define if you have the bzero function. */
397 /* Define if you have the chsize function. */
398 #define HAVE_CHSIZE 1
400 /* Define if you have the cuserid function. */
401 /* #define HAVE_CUSERID 1 */
403 /* Define if you have the dlerror function. */
404 #define HAVE_DLERROR 1
406 /* Define if you have the dlopen function. */
407 #define HAVE_DLOPEN 1
409 /* Define if you have the fchmod function. */
410 /* #undef HAVE_FCHMOD */
412 /* Define if you have the fcntl function. */
413 /* #define HAVE_FCNTL 1 */
415 /* Define if you have the fconvert function. */
416 /* #undef HAVE_FCONVERT */
418 /* Define if you have the finite function. */
419 /* #undef HAVE_FINITE */
421 /* Define if you have the fpresetsticky function. */
422 /* #undef HAVE_FPRESETSTICKY */
424 /* Define if you have the fpsetmask function. */
425 /* #undef HAVE_FPSETMASK */
427 /* Define if you have the fseeko function. */
428 /* #undef HAVE_FSEEKO */
430 /* Define if you have the ftruncate function. */
431 /* #define HAVE_FTRUNCATE 1 */
433 /* Define if you have the getcwd function. */
434 #define HAVE_GETCWD 1
436 /* Define if you have the gethostbyaddr_r function. */
437 /* #undef HAVE_GETHOSTBYADDR_R */
439 /* Define if you have the gethostbyname_r function. */
440 /* #undef HAVE_GETHOSTBYNAME_R */
442 /* Define if you have the getpagesize function. */
443 #define HAVE_GETPAGESIZE 1
445 /* Define if you have the getpass function. */
446 /*#define HAVE_GETPASS 1 */
448 /* Define if you have the getpassphrase function. */
449 /* #undef HAVE_GETPASSPHRASE */
451 /* Define if you have the getpwnam function. */
452 /* #define HAVE_GETPWNAM 1 */
454 /* Define if you have the getpwuid function. */
455 /* #define HAVE_GETPWUID 1 */
457 /* Define if you have the getrlimit function. */
458 /* #undef HAVE_GETRLIMIT */
460 /* Define if you have the getrusage function. */
461 /* #undef HAVE_GETRUSAGE */
463 /* Define if you have the getwd function. */
466 /* Define to 1 if you have the `gmtime_r' function. */
467 #define HAVE_GMTIME_R 1
469 /* Define if you have the index function. */
472 /* Define if you have the initgroups function. */
473 /* #undef HAVE_INITGROUPS */
475 /* Define if you have the localtime_r function. */
476 #define HAVE_LOCALTIME_R 1
478 /* Define if you have the locking function. */
479 /* #undef HAVE_LOCKING */
481 /* Define if you have the longjmp function. */
482 #define HAVE_LONGJMP 1
484 /* Define if you have the lrand48 function. */
485 /* #undef HAVE_LRAND48 */
487 /* Define if you have the lstat function. */
488 /* #undef HAVE_LSTAT */
490 /* Define if you have the madvise function. */
491 /* #undef HAVE_MADVISE */
493 /* Define if you have the memcpy function. */
494 #define HAVE_MEMCPY 1
496 /* Define if you have the memmove function. */
497 #define HAVE_MEMMOVE 1
499 /* Define if you have the mkstemp function. */
500 /* #define HAVE_MKSTEMP 1 */
502 /* Define if you have the mlockall function. */
503 /* #undef HAVE_MLOCKALL */
505 /* Define if you have the perror function. */
506 #define HAVE_PERROR 1
508 /* Define if you have the poll function. */
509 /* #undef HAVE_POLL */
511 /* Define if you have the pread function. */
512 /* #undef HAVE_PREAD */
514 /* Define if you have the pthread_attr_create function. */
515 /* #undef HAVE_PTHREAD_ATTR_CREATE */
517 /* Define if you have the pthread_attr_setprio function. */
518 #define HAVE_PTHREAD_ATTR_SETPRIO 1
520 /* Define if you have the pthread_attr_setschedparam function. */
521 /* #undef HAVE_PTHREAD_ATTR_SETSCHEDPARAM */
523 /* Define if you have the pthread_attr_setstacksize function. */
524 #define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1
526 /* Define if you have the pthread_condattr_create function. */
527 /* #undef HAVE_PTHREAD_CONDATTR_CREATE */
529 /* Define if you have the pthread_getsequence_np function. */
530 /* #undef HAVE_PTHREAD_GETSEQUENCE_NP */
532 /* Define if you have the pthread_init function. */
533 /* #undef HAVE_PTHREAD_INIT */
535 /* Define if you have the pthread_rwlock_rdlock function. */
536 /* #undef HAVE_PTHREAD_RWLOCK_RDLOCK */
538 /* Define if you have the pthread_setprio function. */
539 #define HAVE_PTHREAD_SETPRIO 1
541 /* Define if you have the pthread_setprio_np function. */
542 /* #undef HAVE_PTHREAD_SETPRIO_NP */
544 /* Define if you have the pthread_setschedparam function. */
545 /* #undef HAVE_PTHREAD_SETSCHEDPARAM */
547 /* Define if you have the pthread_sigmask function. */
548 #define HAVE_PTHREAD_SIGMASK 1
550 /* Define if you have the putenv function. */
551 #define HAVE_PUTENV 1
553 /* Define if you have the readlink function. */
554 /* #undef HAVE_READLINK */
556 /* Define if you have the realpath function. */
557 /* #undef HAVE_REALPATH */
559 /* Define if you have the rename function. */
560 #define HAVE_RENAME 1
562 /* Define if you have the rint function. */
565 /* Define if you have the rwlock_init function. */
566 /* #undef HAVE_RWLOCK_INIT */
568 /* Define if you have the select function. */
569 #define HAVE_SELECT 1
571 /* Define if you have the setenv function. */
572 /* #undef HAVE_SETENV */
574 /* Define if you have the setlocale function. */
575 #define HAVE_SETLOCALE 1
577 /* Define if you have the setupterm function. */
578 /* #undef HAVE_SETUPTERM */
580 /* Define if you have the sighold function. */
581 /* #undef HAVE_SIGHOLD */
583 /* Define if you have the sigset function. */
584 /* #undef HAVE_SIGSET */
586 /* Define if you have the sigthreadmask function. */
587 /* #undef HAVE_SIGTHREADMASK */
589 /* Define if you have the snprintf function. */
590 /* #define HAVE_SNPRINTF 1 */
592 /* Define if you have the socket function. */
593 #define HAVE_SOCKET 1
595 /* Define if you have the stpcpy function. */
596 /* #undef HAVE_STPCPY */
598 /* Define if you have the strcasecmp function. */
599 /* #undef HAVE_STRCASECMP */
601 /* Define if you have the strcoll function. */
602 #define HAVE_STRCOLL 1
604 /* Define if you have the strerror function. */
605 #define HAVE_STRERROR 1
607 /* Define if you have the strnlen function. */
608 /* #undef HAVE_STRNLEN */
610 /* Define if you have the strpbrk function. */
611 #define HAVE_STRPBRK 1
613 /* Define if you have the strstr function. */
614 #define HAVE_STRSTR 1
616 /* Define if you have the strtok_r function. */
617 /* #undef HAVE_STRTOK_R */
619 /* Define if you have the strtol function. */
620 #define HAVE_STRTOL 1
622 /* Define if you have the strtoul function. */
623 #define HAVE_STRTOUL 1
625 /* Define if you have the strtoull function. */
626 /* #undef HAVE_STRTOULL */
628 /* Define if you have the tcgetattr function. */
629 #define HAVE_TCGETATTR 1
631 /* Define if you have the tell function. */
634 /* Define if you have the tempnam function. */
635 #define HAVE_TEMPNAM 1
637 /* Define if you have the thr_setconcurrency function. */
638 /* #undef HAVE_THR_SETCONCURRENCY */
640 /* Define if you have the vidattr function. */
641 /* #undef HAVE_VIDATTR */
643 /* Define if you have the <alloca.h> header file. */
644 /* #define HAVE_ALLOCA_H 1 */
646 /* Define if you have the <arpa/inet.h> header file. */
647 #define HAVE_ARPA_INET_H 1
649 /* Define if you have the <asm/termbits.h> header file. */
650 /* #undef HAVE_ASM_TERMBITS_H */
652 /* Define if you have the <crypt.h> header file. */
653 #define HAVE_CRYPT_H 1
655 /* Define if you have the <curses.h> header file. */
656 /* #define HAVE_CURSES_H 1 */
658 /* Define if you have the <dirent.h> header file. */
659 /* #define HAVE_DIRENT_H 1 */
661 /* Define if you have the <fcntl.h> header file. */
662 #define HAVE_FCNTL_H 1
664 /* Define if you have the <float.h> header file. */
665 #define HAVE_FLOAT_H 1
667 /* Define if you have the <floatingpoint.h> header file. */
668 /* #undef HAVE_FLOATINGPOINT_H */
670 /* Define if you have the <grp.h> header file. */
671 /* #define HAVE_GRP_H 1 */
673 /* Define if you have the <ieeefp.h> header file. */
674 /* #undef HAVE_IEEEFP_H */
676 /* Define if you have the <limits.h> header file. */
677 #define HAVE_LIMITS_H 1
679 /* Define if you have the <locale.h> header file. */
680 #define HAVE_LOCALE_H 1
682 /* Define if you have the <memory.h> header file. */
683 #define HAVE_MEMORY_H 1
685 /* Define if you have the <ndir.h> header file. */
686 /* #undef HAVE_NDIR_H */
688 /* Define if you have the <netinet/in.h> header file. */
689 #define HAVE_NETINET_IN_H 1
691 /* Define if you have the <paths.h> header file. */
692 /* #undef HAVE_PATHS_H */
694 /* Define if you have the <pwd.h> header file. */
695 /* #define HAVE_PWD_H 1 */
697 /* Define if you have the <sched.h> header file. */
698 /* #undef HAVE_SCHED_H */
700 /* Define if you have the <select.h> header file. */
701 /* #undef HAVE_SELECT_H */
703 /* Define if you have the <stdarg.h> header file. */
704 #define HAVE_STDARG_H 1
706 /* Define if you have the <stddef.h> header file. */
707 #define HAVE_STDDEF_H 1
709 /* Define if you have the <stdlib.h> header file. */
710 #define HAVE_STDLIB_H 1
712 /* Define if you have the <string.h> header file. */
713 #define HAVE_STRING_H 1
715 /* Define if you have the <strings.h> header file. */
716 /* #define HAVE_STRINGS_H 1 */
718 /* Define if you have the <synch.h> header file. */
719 /* #undef HAVE_SYNCH_H */
721 /* Define if you have the <sys/dir.h> header file. */
722 /* #define HAVE_SYS_DIR_H 1 */
724 /* Define if you have the <sys/file.h> header file. */
725 /* #define HAVE_SYS_FILE_H 1 */
727 /* Define if you have the <sys/ioctl.h> header file. */
728 #define HAVE_SYS_IOCTL_H 1
730 /* Define if you have the <sys/mman.h> header file. */
731 /* #undef HAVE_SYS_MMAN_H */
733 /* Define if you have the <sys/ndir.h> header file. */
734 /* #undef HAVE_SYS_NDIR_H */
736 /* Define if you have the <sys/pte.h> header file. */
737 /* #undef HAVE_SYS_PTE_H */
739 /* Define if you have the <sys/ptem.h> header file. */
740 /* #undef HAVE_SYS_PTEM_H */
742 /* Define if you have the <sys/select.h> header file. */
743 #define HAVE_SYS_SELECT_H 1
745 /* Define if you have the <sys/socket.h> header file. */
746 #define HAVE_SYS_SOCKET_H 1
748 /* Define if you have the <sys/stream.h> header file. */
749 /* #undef HAVE_SYS_STREAM_H */
751 /* Define if you have the <sys/timeb.h> header file. */
752 #define HAVE_SYS_TIMEB_H 1
754 /* Define if you have the <sys/types.h> header file. */
755 #define HAVE_SYS_TYPES_H 1
757 /* Define if you have the <sys/un.h> header file. */
758 #define HAVE_SYS_UN_H 1
760 /* Define if you have the <sys/utime.h> header file. */
761 #define HAVE_SYS_UTIME_H 1
763 /* Define if you have the <sys/vadvise.h> header file. */
764 /* #undef HAVE_SYS_VADVISE_H */
766 /* Define if you have the <sys/wait.h> header file. */
767 /* #define HAVE_SYS_WAIT_H 1 */
769 /* Define if you have the <term.h> header file. */
770 /* #undef HAVE_TERM_H */
772 /* Define if you have the <termbits.h> header file. */
773 /* #undef HAVE_TERMBITS_H */
775 /* Define if you have the <termcap.h> header file. */
776 /* #define HAVE_TERMCAP_H 1 */
778 /* Define if you have the <termio.h> header file. */
779 /* /#define HAVE_TERMIO_H 1 */
781 /* Define if you have the <termios.h> header file. */
782 /* #define HAVE_TERMIOS_H 1 */
784 /* Define if you have the <unistd.h> header file. */
785 #define HAVE_UNISTD_H 1
787 /* Define if you have the <utime.h> header file. */
788 #define HAVE_UTIME_H 1
790 /* Define if you have the <varargs.h> header file. */
791 #define HAVE_VARARGS_H 1
793 /* Define if you have the bind library (-lbind). */
794 /* #undef HAVE_LIBBIND */
796 /* Define if you have the c_r library (-lc_r). */
797 /* #undef HAVE_LIBC_R */
799 /* Define if you have the compat library (-lcompat). */
800 /* #undef HAVE_LIBCOMPAT */
802 /* Define if you have the crypt library (-lcrypt). */
803 #define HAVE_LIBCRYPT 1
805 /* Define if you have the dl library (-ldl). */
808 /* Define if you have the gen library (-lgen). */
809 /* #undef HAVE_LIBGEN */
811 /* Define if you have the m library (-lm). */
814 /* Define if you have the nsl library (-lnsl). */
815 /* #undef HAVE_LIBNSL */
817 /* Define if you have the nsl_r library (-lnsl_r). */
818 /* #undef HAVE_LIBNSL_R */
820 /* Define if you have the pthread library (-lpthread). */
821 /* #undef HAVE_LIBPTHREAD */
823 /* Define if you have the socket library (-lsocket). */
824 /* #undef HAVE_LIBSOCKET */
826 /* Number of bits in a file offset, on hosts where this is settable. */
827 /* #undef _FILE_OFFSET_BITS */
829 /* Define to make fseeko etc. visible, on some hosts. */
830 /* #undef _LARGEFILE_SOURCE */
832 /* Define for large files, on AIX-style hosts. */
833 /* #undef _LARGE_FILES */
835 #endif /* __CONFIG_OS2_H__ */