config-os2.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:22k
源码类别:

MySQL数据库

开发平台:

Visual C++

  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.
  5.    This library is free software; you can redistribute it and/or
  6.    modify it under the terms of the GNU Library General Public
  7.    License as published by the Free Software Foundation; either
  8.    version 2 of the License, or (at your option) any later version.
  9.    This library is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.    Library General Public License for more details.
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /* Defines for OS2 to make it compatible for MySQL */
  18. #ifndef __CONFIG_OS2_H__
  19. #define __CONFIG_OS2_H__
  20. #include <os2.h>
  21. #include <math.h>
  22. #include <io.h>
  23. #include <types.h>
  24. /* Define to name of system eg solaris*/
  25. #define SYSTEM_TYPE "IBM OS/2 Warp"
  26. /* Define to machine type name eg sun10 */
  27. #define MACHINE_TYPE "i686"
  28. /* Name of package */
  29. #define PACKAGE "mysql"
  30. /* Version number of package */
  31. #define VERSION MYSQL_SERVER_VERSION
  32. /* Default socket */
  33. #define MYSQL_UNIX_ADDR "\socket\MySQL"
  34. #define FN_LIBCHAR  '\'
  35. #define FN_ROOTDIR  "\"
  36. #define MY_NFILE 1024  /* This is only used to save filenames */
  37. #define HAVE_ACCESS
  38. #define DEFAULT_MYSQL_HOME "c:\mysql"
  39. #define DEFAULT_BASEDIR "C:\"
  40. #define SHAREDIR "share"
  41. #define DEFAULT_CHARSET_HOME "C:/mysql/"
  42. #define _POSIX_PATH_MAX 255
  43. #define DWORD ULONG
  44. #define O_SHARE 0x1000 /* Open file in sharing mode */
  45. #define FILE_BINARY O_BINARY /* my_fopen in binary mode */
  46. #define S_IROTH S_IREAD /* for my_lib */
  47. #define CANT_DELETE_OPEN_FILES /* saves open files in a list, for delayed delete */
  48. #define O_NONBLOCK 0x10
  49. #define NO_OPEN_3 /* For my_create() */
  50. #define SIGQUIT SIGTERM /* No SIGQUIT */
  51. #define SIGALRM 14 /* Alarm */
  52. #define NO_FCNTL_NONBLOCK
  53. #define EFBIG    E2BIG
  54. /*#define ENFILE   EMFILE    */
  55. /*#define ENAMETOOLONG (EOS2ERR+2) */
  56. /*#define ETIMEDOUT   145       */
  57. /*#define EPIPE   146       */
  58. #define EROFS 147
  59. #define sleep(A) DosSleep((A)*1000)
  60. #define closesocket(A) soclose(A)
  61. #define F_OK 0
  62. #define W_OK 2
  63. #define bzero(x,y) memset((x),'',(y))
  64. #define bcopy(x,y,z) memcpy((y),(x),(z))
  65. #define bcmp(x,y,z) memcmp((y),(x),(z))
  66. #define F_RDLCK 4     /* Read lock.  */
  67. #define F_WRLCK 2     /* Write lock.  */
  68. #define F_UNLCK 0     /* Remove lock.  */
  69. #define S_IFMT 0x17000     /* Mask for file type */
  70. #define F_TO_EOF 0L     /* Param to lockf() to lock rest of file */
  71. #define HUGE_PTR
  72. #ifdef __cplusplus
  73. extern "C"
  74. #endif
  75. double _cdecl rint( double nr);
  76. DWORD  TlsAlloc( void);
  77. BOOL  TlsFree( DWORD);
  78. PVOID  TlsGetValue( DWORD);
  79. BOOL  TlsSetValue( DWORD, PVOID);
  80. /* support for > 2GB file size */
  81. #define SIZEOF_OFF_T 8
  82. #define lseek(A,B,C) _lseek64( A, B, C)
  83. #define tell(A) _lseek64( A, 0, SEEK_CUR)
  84. void* dlopen( char* path, int flag);
  85. char* dlerror( void);
  86. void* dlsym( void* hmod, char* fn);
  87. void  dlclose( void* hmod);
  88. /* Some typedefs */
  89. typedef unsigned long long os_off_t;
  90. /* config.h.  Generated automatically by configure.  */
  91. /* config.h.in.  Generated automatically from configure.in by autoheader.  */
  92. /* Define if using alloca.c.  */
  93. /* #undef C_ALLOCA */
  94. /* Define to empty if the keyword does not work.  */
  95. /* #undef const */
  96. /* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
  97.    This function is required for alloca.c support on those systems.  */
  98. /* #undef CRAY_STACKSEG_END */
  99. /* Define if you have alloca, as a function or macro.  */
  100. #define HAVE_ALLOCA 1
  101. /* Define if you have <alloca.h> and it should be used (not on Ultrix).  */
  102. /* #define HAVE_ALLOCA_H 1 */
  103. /* Define if you don't have vprintf but do have _doprnt.  */
  104. /* #undef HAVE_DOPRNT */
  105. /* Define if you have a working `mmap' system call.  */
  106. /* #undef HAVE_MMAP */
  107. /* Define if system calls automatically restart after interruption
  108.    by a signal.  */
  109. /* #undef HAVE_RESTARTABLE_SYSCALLS */
  110. /* Define if your struct stat has st_rdev.  */
  111. #define HAVE_ST_RDEV 1
  112. /* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
  113. /* #define HAVE_SYS_WAIT_H 1 */
  114. /* Define if you don't have tm_zone but do have the external array
  115.    tzname.  */
  116. #define HAVE_TZNAME 1
  117. /* Define if utime(file, NULL) sets file's timestamp to the present.  */
  118. #define HAVE_UTIME_NULL 1
  119. /* Define if you have the vprintf function.  */
  120. #define HAVE_VPRINTF 1
  121. /* Define as __inline if that's what the C compiler calls it.  */
  122. /* #undef inline */
  123. /* Define to `long' if <sys/types.h> doesn't define.  */
  124. /* #undef off_t */
  125. /* Define as the return type of signal handlers (int or void). */
  126. #define RETSIGTYPE void
  127. /* Define to `unsigned' if <sys/types.h> doesn't define.  */
  128. /* #undef size_t */
  129. /* If using the C implementation of alloca, define if you know the
  130.    direction of stack growth for your system; otherwise it will be
  131.    automatically deduced at run-time.
  132.  STACK_DIRECTION > 0 => grows toward higher addresses
  133.  STACK_DIRECTION < 0 => grows toward lower addresses
  134.  STACK_DIRECTION = 0 => direction of growth unknown
  135.  */
  136. #define STACK_DIRECTION -1
  137. /* Define if the `S_IS*' macros in <sys/stat.h> do not work properly.  */
  138. /* #undef STAT_MACROS_BROKEN */
  139. /* Define if you have the ANSI C header files. */
  140. #define STDC_HEADERS 1
  141. /* Define if you can safely include both <sys/time.h> and <time.h>.  */
  142. #define TIME_WITH_SYS_TIME 1
  143. /* Define if your <sys/time.h> declares struct tm.  */
  144. /* #undef TM_IN_SYS_TIME */
  145. /* Define if your processor stores words with the most significant
  146.    byte first (like Motorola and SPARC, unlike Intel and VAX). */
  147. /* #undef WORDS_BIGENDIAN */
  148. /* Version of .frm files */
  149. #define DOT_FRM_VERSION 6
  150. /* READLINE: */
  151. #define FIONREAD_IN_SYS_IOCTL 1
  152. /* READLINE: Define if your system defines TIOCGWINSZ in sys/ioctl.h.  */
  153. /* #undef GWINSZ_IN_SYS_IOCTL */
  154. /* Do we have FIONREAD */
  155. #define FIONREAD_IN_SYS_IOCTL 1
  156. /* atomic_add() from <asm/atomic.h> (Linux only) */
  157. /* #undef HAVE_ATOMIC_ADD */
  158. /* atomic_sub() from <asm/atomic.h> (Linux only) */
  159. /* #undef HAVE_ATOMIC_SUB */
  160. /* bool is not defined by all C++ compilators */
  161. #define HAVE_BOOL 1
  162. /* Have berkeley db installed */
  163. /* #define HAVE_BERKELEY_DB 1 */
  164. /* DSB style signals ? */
  165. /* #undef HAVE_BSD_SIGNALS */
  166. /* Can netinet be included */
  167. /* #undef HAVE_BROKEN_NETINET_INCLUDES */
  168. /* READLINE: */
  169. /* #undef HAVE_BSD_SIGNALS */
  170. /* ZLIB and compress: */
  171. #define HAVE_COMPRESS 1
  172. /* Define if we are using OSF1 DEC threads */
  173. /* #undef HAVE_DEC_THREADS */
  174. /* Define if we are using OSF1 DEC threads on 3.2 */
  175. /* #undef HAVE_DEC_3_2_THREADS */
  176. /* fp_except from ieeefp.h */
  177. /* #undef HAVE_FP_EXCEPT */
  178. /* READLINE: */
  179. /* #undef HAVE_GETPW_DECLS */
  180. /* Solaris define gethostbyname_r with 5 arguments. glibc2 defines
  181.    this with 6 arguments */
  182. /* #undef HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE */
  183. /* In OSF 4.0f the 3'd argument to gethostname_r is hostent_data * */
  184. /* #undef HAVE_GETHOSTBYNAME_R_RETURN_INT */
  185. /* Define if int8, int16 and int32 types exist */
  186. /* #undef HAVE_INT_8_16_32 */
  187. /* Define if have -lwrap */
  188. /* #undef HAVE_LIBWRAP */
  189. /* Define if we are using Xavier Leroy's LinuxThreads */
  190. /* #undef HAVE_LINUXTHREADS */
  191. /* Do we use user level threads */
  192. /* #undef HAVE_mit_thread */
  193. /* For some non posix threads */
  194. /* #undef HAVE_NONPOSIX_PTHREAD_GETSPECIFIC */
  195. /* For some non posix threads */
  196. /* #undef HAVE_NONPOSIX_PTHREAD_MUTEX_INIT */
  197. /* READLINE: */
  198. #define HAVE_POSIX_SIGNALS 0
  199. /* sigwait with one argument */
  200. /* #undef HAVE_NONPOSIX_SIGWAIT */
  201. /* pthread_attr_setscope */
  202. #define HAVE_PTHREAD_ATTR_SETSCOPE 1
  203. /* POSIX readdir_r */
  204. /* #undef HAVE_READDIR_R */
  205. /* POSIX sigwait */
  206. /* #undef HAVE_SIGWAIT */
  207. /* crypt */
  208. #define HAVE_CRYPT 1
  209. /* Solaris define gethostbyaddr_r with 7 arguments. glibc2 defines
  210.    this with 8 arguments */
  211. /* #undef HAVE_SOLARIS_STYLE_GETHOST */
  212. /* Timespec has a ts_sec instead of tv_sev  */
  213. #define HAVE_TIMESPEC_TS_SEC 1
  214. /* Have the tzname variable */
  215. #define HAVE_TZNAME 1
  216. /* Define if the system files define uchar */
  217. /* #undef HAVE_UCHAR */
  218. /* Define if the system files define uint */
  219. /* #undef HAVE_UINT */
  220. /* Define if the system files define ulong */
  221. /* #undef HAVE_ULONG */
  222. /* UNIXWARE7 threads are not posix */
  223. /* #undef HAVE_UNIXWARE7_THREADS */
  224. /* new UNIXWARE7 threads that are not yet posix */
  225. /* #undef HAVE_UNIXWARE7_POSIX */
  226. /* READLINE: */
  227. /* #undef HAVE_USG_SIGHOLD */
  228. /* Define if want -lwrap */
  229. /* #undef LIBWRAP */
  230. /* mysql client protocoll version */
  231. #define PROTOCOL_VERSION 10
  232. /* Define if qsort returns void */
  233. #define QSORT_TYPE_IS_VOID 1
  234. /* Define as the return type of qsort (int or void). */
  235. #define RETQSORTTYPE void
  236. /* Define as the base type of the last arg to accept */
  237. #define SOCKET_SIZE_TYPE int
  238. /* Last argument to get/setsockopt */
  239. /* #undef SOCKOPT_OPTLEN_TYPE */
  240. /* #undef SPEED_T_IN_SYS_TYPES */
  241. /* #undef SPRINTF_RETURNS_PTR */
  242. #define SPRINTF_RETURNS_INT 1
  243. /* #undef SPRINTF_RETURNS_GARBAGE */
  244. /* #undef STRUCT_DIRENT_HAS_D_FILENO */
  245. #define STRUCT_DIRENT_HAS_D_INO 1
  246. /* Define if you want to have threaded code. This may be undef on client code */
  247. #define THREAD 1
  248. /* Should be client be thread safe */
  249. /* #undef THREAD_SAFE_CLIENT */
  250. /* READLINE: */
  251. /* #undef TIOCSTAT_IN_SYS_IOCTL */
  252. /* Use multi-byte character routines */
  253. /* #undef USE_MB */
  254. /* #undef USE_MB_IDENT */
  255. /* Use MySQL RAID */
  256. /* #undef USE_RAID */
  257. /* Use strcoll() functions when comparing and sorting. */
  258. /* #undef USE_STRCOLL */
  259. /* READLINE: */
  260. #define VOID_SIGHANDLER 1
  261. /* The number of bytes in a char.  */
  262. #define SIZEOF_CHAR 1
  263. /* The number of bytes in a int.  */
  264. #define SIZEOF_INT 4
  265. /* The number of bytes in a long.  */
  266. #define SIZEOF_LONG 4
  267. /* The number of bytes in a long long. */
  268. #define SIZEOF_LONG_LONG 8
  269. /* Define if you have the alarm function.  */
  270. #define HAVE_ALARM 1
  271. /* Define if you have the atod function.  */
  272. /* #undef HAVE_ATOD */
  273. /* Define if you have the bcmp function.  */
  274. #define HAVE_BCMP 1
  275. /* Define if you have the bfill function.  */
  276. /* #undef HAVE_BFILL */
  277. /* Define if you have the bmove function.  */
  278. /* #undef HAVE_BMOVE */
  279. /* Define if you have the bzero function.  */
  280. #define HAVE_BZERO 1
  281. /* Define if you have the chsize function.  */
  282. #define HAVE_CHSIZE 1
  283. /* Define if you have the cuserid function.  */
  284. /* #define HAVE_CUSERID 1 */
  285. /* Define if you have the dlerror function.  */
  286. #define HAVE_DLERROR 1
  287. /* Define if you have the dlopen function.  */
  288. #define HAVE_DLOPEN 1
  289. /* Define if you have the fchmod function.  */
  290. /* #undef HAVE_FCHMOD */
  291. /* Define if you have the fcntl function.  */
  292. /* #define HAVE_FCNTL 1 */
  293. /* Define if you have the fconvert function.  */
  294. /* #undef HAVE_FCONVERT */
  295. /* Define if you have the finite function.  */
  296. /* #undef HAVE_FINITE */
  297. /* Define if you have the fpresetsticky function.  */
  298. /* #undef HAVE_FPRESETSTICKY */
  299. /* Define if you have the fpsetmask function.  */
  300. /* #undef HAVE_FPSETMASK */
  301. /* Define if you have the fseeko function.  */
  302. /* #undef HAVE_FSEEKO */
  303. /* Define if you have the ftruncate function.  */
  304. /* #define HAVE_FTRUNCATE 1 */
  305. /* Define if you have the getcwd function.  */
  306. #define HAVE_GETCWD 1
  307. /* Define if you have the gethostbyaddr_r function.  */
  308. /* #undef HAVE_GETHOSTBYADDR_R */
  309. /* Define if you have the gethostbyname_r function.  */
  310. /* #undef HAVE_GETHOSTBYNAME_R */
  311. /* Define if you have the getpagesize function.  */
  312. #define HAVE_GETPAGESIZE 1
  313. /* Define if you have the getpass function.  */
  314. /*#define HAVE_GETPASS 1 */
  315. /* Define if you have the getpassphrase function.  */
  316. /* #undef HAVE_GETPASSPHRASE */
  317. /* Define if you have the getpwnam function.  */
  318. /* #define HAVE_GETPWNAM 1 */
  319. /* Define if you have the getpwuid function.  */
  320. /* #define HAVE_GETPWUID 1 */
  321. /* Define if you have the getrlimit function.  */
  322. /* #undef HAVE_GETRLIMIT */
  323. /* Define if you have the getrusage function.  */
  324. /* #undef HAVE_GETRUSAGE */
  325. /* Define if you have the getwd function.  */
  326. #define HAVE_GETWD 1
  327. /* Define to 1 if you have the `gmtime_r' function. */
  328. #define HAVE_GMTIME_R 1
  329. /* Define if you have the index function.  */
  330. #define HAVE_INDEX 1
  331. /* Define if you have the initgroups function. */
  332. /* #undef HAVE_INITGROUPS */
  333. /* Define if you have the localtime_r function.  */
  334. #define HAVE_LOCALTIME_R 1
  335. /* Define if you have the locking function.  */
  336. /* #undef HAVE_LOCKING */
  337. /* Define if you have the longjmp function.  */
  338. #define HAVE_LONGJMP 1
  339. /* Define if you have the lrand48 function.  */
  340. /* #undef HAVE_LRAND48 */
  341. /* Define if you have the lstat function.  */
  342. /* #undef HAVE_LSTAT */
  343. /* Define if you have the madvise function.  */
  344. /* #undef HAVE_MADVISE */
  345. /* Define if you have the memcpy function.  */
  346. #define HAVE_MEMCPY 1
  347. /* Define if you have the memmove function.  */
  348. #define HAVE_MEMMOVE 1
  349. /* Define if you have the mkstemp function.  */
  350. /* #define HAVE_MKSTEMP 1 */
  351. /* Define if you have the mlockall function.  */
  352. /* #undef HAVE_MLOCKALL */
  353. /* Define if you have the perror function.  */
  354. #define HAVE_PERROR 1
  355. /* Define if you have the poll function.  */
  356. /* #undef HAVE_POLL */
  357. /* Define if you have the pread function.  */
  358. /* #undef HAVE_PREAD */
  359. /* Define if you have the pthread_attr_create function.  */
  360. /* #undef HAVE_PTHREAD_ATTR_CREATE */
  361. /* Define if you have the pthread_attr_setprio function.  */
  362. #define HAVE_PTHREAD_ATTR_SETPRIO 1
  363. /* Define if you have the pthread_attr_setschedparam function. */
  364. /* #undef HAVE_PTHREAD_ATTR_SETSCHEDPARAM */
  365. /* Define if you have the pthread_attr_setstacksize function.  */
  366. #define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1
  367. /* Define if you have the pthread_condattr_create function.  */
  368. /* #undef HAVE_PTHREAD_CONDATTR_CREATE */
  369. /* Define if you have the pthread_getsequence_np function.  */
  370. /* #undef HAVE_PTHREAD_GETSEQUENCE_NP */
  371. /* Define if you have the pthread_init function.  */
  372. /* #undef HAVE_PTHREAD_INIT */
  373. /* Define if you have the pthread_rwlock_rdlock function.  */
  374. /* #undef HAVE_PTHREAD_RWLOCK_RDLOCK */
  375. /* Define if you have the pthread_setprio function.  */
  376. #define HAVE_PTHREAD_SETPRIO 1
  377. /* Define if you have the pthread_setprio_np function. */
  378. /* #undef HAVE_PTHREAD_SETPRIO_NP */
  379. /* Define if you have the pthread_setschedparam function.  */
  380. /* #undef HAVE_PTHREAD_SETSCHEDPARAM */
  381. /* Define if you have the pthread_sigmask function.  */
  382. #define HAVE_PTHREAD_SIGMASK 1
  383. /* Define if you have the putenv function.  */
  384. #define HAVE_PUTENV 1
  385. /* Define if you have the readlink function.  */
  386. /* #undef HAVE_READLINK */
  387. /* Define if you have the realpath function.  */
  388. /* #undef HAVE_REALPATH */
  389. /* Define if you have the rename function.  */
  390. #define HAVE_RENAME 1
  391. /* Define if you have the rint function.  */
  392. #define HAVE_RINT 1
  393. /* Define if you have the rwlock_init function.  */
  394. /* #undef HAVE_RWLOCK_INIT */
  395. /* Define if you have the select function.  */
  396. #define HAVE_SELECT 1
  397. /* Define if you have the setenv function.  */
  398. /* #undef HAVE_SETENV */
  399. /* Define if you have the setlocale function.  */
  400. #define HAVE_SETLOCALE 1
  401. /* Define if you have the setupterm function.  */
  402. /* #undef HAVE_SETUPTERM */
  403. /* Define if you have the sighold function.  */
  404. /* #undef HAVE_SIGHOLD */
  405. /* Define if you have the sigset function.  */
  406. /* #undef HAVE_SIGSET */
  407. /* Define if you have the sigthreadmask function.  */
  408. /* #undef HAVE_SIGTHREADMASK */
  409. /* Define if you have the snprintf function.  */
  410. /* #define HAVE_SNPRINTF 1 */
  411. /* Define if you have the socket function.  */
  412. #define HAVE_SOCKET 1
  413. /* Define if you have the stpcpy function.  */
  414. /* #undef HAVE_STPCPY */
  415. /* Define if you have the strcasecmp function. */
  416. /* #undef HAVE_STRCASECMP */
  417. /* Define if you have the strcoll function.  */
  418. #define HAVE_STRCOLL 1
  419. /* Define if you have the strerror function.  */
  420. #define HAVE_STRERROR 1
  421. /* Define if you have the strnlen function.  */
  422. /* #undef HAVE_STRNLEN */
  423. /* Define if you have the strpbrk function.  */
  424. #define HAVE_STRPBRK 1
  425. /* Define if you have the strstr function.  */
  426. #define HAVE_STRSTR 1
  427. /* Define if you have the strtok_r function.  */
  428. /* #undef HAVE_STRTOK_R */
  429. /* Define if you have the strtol function.  */
  430. #define HAVE_STRTOL 1
  431. /* Define if you have the strtoul function.  */
  432. #define HAVE_STRTOUL 1
  433. /* Define if you have the strtoull function.  */
  434. /* #undef HAVE_STRTOULL */
  435. /* Define if you have the tcgetattr function.  */
  436. #define HAVE_TCGETATTR 1
  437. /* Define if you have the tell function.  */
  438. #define HAVE_TELL 1
  439. /* Define if you have the tempnam function.  */
  440. #define HAVE_TEMPNAM 1
  441. /* Define if you have the thr_setconcurrency function. */
  442. /* #undef HAVE_THR_SETCONCURRENCY */
  443. /* Define if you have the vidattr function.  */
  444. /* #undef HAVE_VIDATTR */
  445. /* Define if you have the <alloca.h> header file.  */
  446. /* #define HAVE_ALLOCA_H 1 */
  447. /* Define if you have the <arpa/inet.h> header file.  */
  448. #define HAVE_ARPA_INET_H 1
  449. /* Define if you have the <asm/termbits.h> header file.  */
  450. /* #undef HAVE_ASM_TERMBITS_H */
  451. /* Define if you have the <crypt.h> header file.  */
  452. #define HAVE_CRYPT_H 1
  453. /* Define if you have the <curses.h> header file.  */
  454. /* #define HAVE_CURSES_H 1 */
  455. /* Define if you have the <dirent.h> header file.  */
  456. /* #define HAVE_DIRENT_H 1 */
  457. /* Define if you have the <fcntl.h> header file.  */
  458. #define HAVE_FCNTL_H 1
  459. /* Define if you have the <float.h> header file.  */
  460. #define HAVE_FLOAT_H 1
  461. /* Define if you have the <floatingpoint.h> header file.  */
  462. /* #undef HAVE_FLOATINGPOINT_H */
  463. /* Define if you have the <grp.h> header file. */
  464. /* #define HAVE_GRP_H 1 */
  465. /* Define if you have the <ieeefp.h> header file.  */
  466. /* #undef HAVE_IEEEFP_H */
  467. /* Define if you have the <limits.h> header file.  */
  468. #define HAVE_LIMITS_H 1
  469. /* Define if you have the <locale.h> header file.  */
  470. #define HAVE_LOCALE_H 1
  471. /* Define if you have the <memory.h> header file.  */
  472. #define HAVE_MEMORY_H 1
  473. /* Define if you have the <ndir.h> header file.  */
  474. /* #undef HAVE_NDIR_H */
  475. /* Define if you have the <netinet/in.h> header file.  */
  476. #define HAVE_NETINET_IN_H 1
  477. /* Define if you have the <paths.h> header file.  */
  478. /* #undef HAVE_PATHS_H */
  479. /* Define if you have the <pwd.h> header file. */
  480. /* #define HAVE_PWD_H 1 */
  481. /* Define if you have the <sched.h> header file.  */
  482. /* #undef HAVE_SCHED_H */
  483. /* Define if you have the <select.h> header file.  */
  484. /* #undef HAVE_SELECT_H */
  485. /* Define if you have the <stdarg.h> header file.  */
  486. #define HAVE_STDARG_H 1
  487. /* Define if you have the <stddef.h> header file.  */
  488. #define HAVE_STDDEF_H 1
  489. /* Define if you have the <stdlib.h> header file.  */
  490. #define HAVE_STDLIB_H 1
  491. /* Define if you have the <string.h> header file.  */
  492. #define HAVE_STRING_H 1
  493. /* Define if you have the <strings.h> header file.  */
  494. /* #define HAVE_STRINGS_H 1 */
  495. /* Define if you have the <synch.h> header file.  */
  496. /* #undef HAVE_SYNCH_H */
  497. /* Define if you have the <sys/dir.h> header file.  */
  498. /* #define HAVE_SYS_DIR_H 1 */
  499. /* Define if you have the <sys/file.h> header file.  */
  500. /* #define HAVE_SYS_FILE_H 1 */
  501. /* Define if you have the <sys/ioctl.h> header file.  */
  502. #define HAVE_SYS_IOCTL_H 1
  503. /* Define if you have the <sys/mman.h> header file.  */
  504. /* #undef HAVE_SYS_MMAN_H */
  505. /* Define if you have the <sys/ndir.h> header file.  */
  506. /* #undef HAVE_SYS_NDIR_H */
  507. /* Define if you have the <sys/pte.h> header file.  */
  508. /* #undef HAVE_SYS_PTE_H */
  509. /* Define if you have the <sys/ptem.h> header file.  */
  510. /* #undef HAVE_SYS_PTEM_H */
  511. /* Define if you have the <sys/select.h> header file.  */
  512. #define HAVE_SYS_SELECT_H 1
  513. /* Define if you have the <sys/socket.h> header file.  */
  514. #define HAVE_SYS_SOCKET_H 1
  515. /* Define if you have the <sys/stream.h> header file.  */
  516. /* #undef HAVE_SYS_STREAM_H */
  517. /* Define if you have the <sys/timeb.h> header file.  */
  518. #define HAVE_SYS_TIMEB_H 1
  519. /* Define if you have the <sys/types.h> header file.  */
  520. #define HAVE_SYS_TYPES_H 1
  521. /* Define if you have the <sys/un.h> header file.  */
  522. #define HAVE_SYS_UN_H 1
  523. /* Define if you have the <sys/utime.h> header file.  */
  524. #define HAVE_SYS_UTIME_H 1
  525. /* Define if you have the <sys/vadvise.h> header file. */
  526. /* #undef HAVE_SYS_VADVISE_H */
  527. /* Define if you have the <sys/wait.h> header file.  */
  528. /* #define HAVE_SYS_WAIT_H 1 */
  529. /* Define if you have the <term.h> header file.  */
  530. /* #undef HAVE_TERM_H */
  531. /* Define if you have the <termbits.h> header file.  */
  532. /* #undef HAVE_TERMBITS_H */
  533. /* Define if you have the <termcap.h> header file.  */
  534. /* #define HAVE_TERMCAP_H 1 */
  535. /* Define if you have the <termio.h> header file.  */
  536. /* /#define HAVE_TERMIO_H 1 */
  537. /* Define if you have the <termios.h> header file.  */
  538. /* #define HAVE_TERMIOS_H 1 */
  539. /* Define if you have the <unistd.h> header file.  */
  540. #define HAVE_UNISTD_H 1
  541. /* Define if you have the <utime.h> header file.  */
  542. #define HAVE_UTIME_H 1
  543. /* Define if you have the <varargs.h> header file.  */
  544. #define HAVE_VARARGS_H 1
  545. /* Define if you have the bind library (-lbind).  */
  546. /* #undef HAVE_LIBBIND */
  547. /* Define if you have the c_r library (-lc_r). */
  548. /* #undef HAVE_LIBC_R */
  549. /* Define if you have the compat library (-lcompat).  */
  550. /* #undef HAVE_LIBCOMPAT */
  551. /* Define if you have the crypt library (-lcrypt).  */
  552. #define HAVE_LIBCRYPT 1
  553. /* Define if you have the dl library (-ldl).  */
  554. #define HAVE_LIBDL 1
  555. /* Define if you have the gen library (-lgen). */
  556. /* #undef HAVE_LIBGEN */
  557. /* Define if you have the m library (-lm).  */
  558. #define HAVE_LIBM 1
  559. /* Define if you have the nsl library (-lnsl). */
  560. /* #undef HAVE_LIBNSL */
  561. /* Define if you have the nsl_r library (-lnsl_r).  */
  562. /* #undef HAVE_LIBNSL_R */
  563. /* Define if you have the pthread library (-lpthread). */
  564. /* #undef HAVE_LIBPTHREAD */
  565. /* Define if you have the socket library (-lsocket).  */
  566. /* #undef HAVE_LIBSOCKET */
  567. /* Number of bits in a file offset, on hosts where this is settable. */
  568. /* #undef _FILE_OFFSET_BITS */
  569. /* Define to make fseeko etc. visible, on some hosts. */
  570. /* #undef _LARGEFILE_SOURCE */
  571. /* Define for large files, on AIX-style hosts. */
  572. /* #undef _LARGE_FILES */
  573. #endif /* __CONFIG_OS2_H__ */