1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
/* config.h. Generated automatically by configure. */
/* Bruno Haible 19.7.1998 */
/* UNIX variants */
/* AC_AIX */
/* Define if on AIX 3. */
#ifndef _ALL_SOURCE
#define _ALL_SOURCE 1
#endif
/* AC_ISC_POSIX */
/* Define if you need to in order for stat and other things to work. */
#ifndef _POSIX_SOURCE
#undef _POSIX_SOURCE
#endif
/* AC_MINIX */
/* Define if you need to in order for stat and other things to work. */
#ifndef _POSIX_SOURCE
#undef _POSIX_SOURCE
#endif
/* Define if the system does not provide POSIX.1 features except
with this defined. */
#ifndef _POSIX_1_SOURCE
#undef _POSIX_1_SOURCE
#endif
/* Define if on MINIX. */
#undef _MINIX
/* header files */
/* CL_OPENFLAGS */
/* Define if you need <sys/file.h> for using open() flags like O_RDWR. */
#undef OPEN_NEEDS_SYS_FILE_H
/* functions and declarations */
/* CL_MEMSET */
/* Define if you have the memset() function. */
#define HAVE_MEMSET 1
/* Define as the return type of memset(). */
#define RETMEMSETTYPE void*
/* CL_MALLOC */
/* Define as the return type of malloc(). */
#define RETMALLOCTYPE void*
/* Define as the type of `size' in malloc() declaration. */
#define MALLOC_SIZE_T unsigned int
/* CL_TYPE_SIGNAL */
/* Define as the return type of signal handlers (int or void). */
#define RETSIGTYPE void
/* Define if the declaration of the signal handler function type needs dots. */
#undef SIGTYPE_DOTS
/* CL_SIGNALBLOCK */
/* how to block and unblock signals */
#define SIGNALBLOCK_SYSV 1
#define SIGNALBLOCK_POSIX 1
#define SIGNALBLOCK_BSD 1
/* CL_SIGNAL_REINSTALL */
/* Define if signal handlers need to be reinstalled when they are activated. */
#define SIGNAL_NEED_REINSTALL 1
/* CL_SIGNAL_UNBLOCK */
/* Define if SIGNALBLOCK_BSD is defined above and
signals need to be unblocked when signal handlers are left. */
#undef SIGNAL_NEED_UNBLOCK
/* CL_SIGNAL_BLOCK_OTHERS */
/* Define if SIGNALBLOCK_BSD is defined above and
other signals need to be unblocked when signal handlers are left. */
#undef SIGNAL_NEED_UNBLOCK_OTHERS
/* CL_SIGACTION */
/* Define if you have the sigaction() function. */
#define HAVE_SIGACTION 1
/* CL_SIGACTION_REINSTALL */
/* Define if signal handlers installed via sigaction()
need to be reinstalled when they are activated. */
#undef SIGACTION_NEED_REINSTALL
/* CL_SIGACTION_UNBLOCK */
/* Define if signals need to be unblocked
when signal handlers installed via sigaction() are left. */
#define SIGACTION_NEED_UNBLOCK 1
/* CL_SIGINTERRUPT */
/* Define if you have the siginterrupt() function. */
#define HAVE_SIGINTERRUPT 1
/* Define if you don't have siginterrupt() or sigaction(), but sigvec(). */
#undef HAVE_SIGVEC
/* CL_SIGALTSTACK */
/* Define if you have the sigaltstack() function. */
#undef HAVE_SIGALTSTACK
/* CL_GETPAGESIZE */
/* Define if you have getpagesize(). */
#define HAVE_GETPAGESIZE 1
/* Define as the return type of getpagesize(). */
#define RETGETPAGESIZETYPE int
/* CL_VADVISE */
/* Define if you have the vadvise() system call. */
#undef HAVE_VADVISE
/* CL_MACH_VM */
/* Define if you have the vm_allocate() and task_self() functions. */
#undef HAVE_MACH_VM
/* CL_MMAP */
/* Define if you have <sys/mman.h> and the mmap() function. */
#define HAVE_MMAP 1
/* Define as the return type of mmap(). */
#define RETMMAPTYPE void*
/* Define as the type of `addr' in mmap() declaration. */
#define MMAP_ADDR_T void*
/* Define as the type of `len' in mmap() declaration. */
#define MMAP_SIZE_T size_t
/* Define if <sys/mman.h> defines MAP_ANON and mmaping with MAP_ANON works. */
#undef HAVE_MMAP_ANON
/* Define if <sys/mman.h> defines MAP_ANONYMOUS and mmaping with MAP_ANONYMOUS
works. */
#undef HAVE_MMAP_ANONYMOUS
/* Define if mmaping of the special device /dev/zero works. */
#undef HAVE_MMAP_DEVZERO
/* Define if mmaping of the special device /dev/zero works,
but only on addresses < 2^29. */
#undef HAVE_MMAP_DEVZERO_SUN4_29
/* CL_MPROTECT */
/* Define if you have the mprotect() function. */
#define HAVE_MPROTECT 1
/* Define if you have a working mprotect() function. */
#undef HAVE_WORKING_MPROTECT
/* Define as const if the declaration of mprotect() needs const. */
#define MPROTECT_CONST
/* CL_RLIMIT */
/* Define if you have the setrlimit() function. */
#define HAVE_SETRLIMIT 1
/* Define as the type of `resource' in setrlimit() declaration. */
#define RLIMIT_RESOURCE_T int
/* Define as const if the declaration of setrlimit() needs const. */
#define SETRLIMIT_CONST const
|