1/** 2*** Configuration parameters for the OS/400 implementation. 3*** 4*** See Copyright for the status of this software. 5*** 6*** Author: Patrick Monnerat <[email protected]>, DATASPHERE S.A. 7**/ 8 9/* Define to 1 if you have the <arpa/inet.h> header file. */ 10#define HAVE_ARPA_INET_H 1 11 12/* Define to 1 if you have the <arpa/nameser.h> header file. */ 13#define HAVE_ARPA_NAMESER_H 1 14 15/* Whether struct sockaddr::__ss_family exists */ 16#undef HAVE_BROKEN_SS_FAMILY 17 18/* Define to 1 if you have the <dlfcn.h> header file. */ 19#define HAVE_DLFCN_H 1 /* Locally emulated. */ 20 21/* Have dlopen based dso */ 22#define HAVE_DLOPEN 1 /* Locally emulated. */ 23 24/* Define to 1 if you have the <dl.h> header file. */ 25#undef HAVE_DL_H 26 27/* Define to 1 if you have the <fcntl.h> header file. */ 28#define HAVE_FCNTL_H 1 29 30/* Define to 1 if you have the `ftime' function. */ 31#undef HAVE_FTIME 32 33/* Define if getaddrinfo is there */ 34#define HAVE_GETADDRINFO 1 35 36/* Define to 1 if you have the `gettimeofday' function. */ 37#undef HAVE_GETTIMEOFDAY 38 39/* Define to 1 if you have the <inttypes.h> header file. */ 40#define HAVE_INTTYPES_H 1 41 42/* Define to 1 if you have the `isascii' function. */ 43#define HAVE_ISASCII 1 44 45/* Define if history library is there (-lhistory) */ 46#undef HAVE_LIBHISTORY 47 48/* Define if readline library is there (-lreadline) */ 49#undef HAVE_LIBREADLINE 50 51/* Define to 1 if you have the `mmap' function. */ 52#undef HAVE_MMAP 53 54/* Define to 1 if you have the `munmap' function. */ 55#undef HAVE_MUNMAP 56 57/* mmap() is no good without munmap() */ 58#if defined(HAVE_MMAP) && !defined(HAVE_MUNMAP) 59# undef /**/ HAVE_MMAP 60#endif 61 62/* Define to 1 if you have the <netdb.h> header file. */ 63#define HAVE_NETDB_H 1 64 65/* Define to 1 if you have the <netinet/in.h> header file. */ 66#define HAVE_NETINET_IN_H 1 67 68/* Define to 1 if you have the <poll.h> header file. */ 69#undef HAVE_POLL_H 70 71/* Define if <pthread.h> is there */ 72#define HAVE_PTHREAD_H 1 73 74/* Define to 1 if you have the `putenv' function. */ 75#define HAVE_PUTENV 1 76 77/* Define to 1 if you have the `rand_r' function. */ 78#define HAVE_RAND_R 1 79 80/* Define to 1 if you have the <resolv.h> header file. */ 81#define HAVE_RESOLV_H 1 82 83/* Have shl_load based dso */ 84#undef HAVE_SHLLOAD 85 86/* Define to 1 if you have the `stat' function. */ 87#define HAVE_STAT 1 88 89/* Define to 1 if you have the <stdint.h> header file. */ 90#define HAVE_STDINT_H 1 91 92/* Define to 1 if you have the <sys/mman.h> header file. */ 93#define HAVE_SYS_MMAN_H 1 94 95/* Define to 1 if you have the <sys/select.h> header file. */ 96#undef HAVE_SYS_SELECT_H 97 98/* Define to 1 if you have the <sys/socket.h> header file. */ 99#define HAVE_SYS_SOCKET_H 1 100 101/* Define to 1 if you have the <sys/stat.h> header file. */ 102#define HAVE_SYS_STAT_H 1 103 104/* Define to 1 if you have the <sys/timeb.h> header file. */ 105#define HAVE_SYS_TIMEB_H 1 106 107/* Define to 1 if you have the <sys/time.h> header file. */ 108#define HAVE_SYS_TIME_H 1 109 110/* Define to 1 if you have the <sys/types.h> header file. */ 111#define HAVE_SYS_TYPES_H 1 112 113/* Define to 1 if you have the <unistd.h> header file. */ 114#define HAVE_UNISTD_H 1 115 116/* Whether va_copy() is available */ 117#undef HAVE_VA_COPY 118 119/* Whether __va_copy() is available */ 120#undef HAVE___VA_COPY 121 122/* Define to the sub-directory in which libtool stores uninstalled libraries. 123 */ 124#undef LT_OBJDIR 125 126/* Name of package */ 127#define PACKAGE "libxml2" 128 129/* Define to the address where bug reports for this package should be sent. */ 130#define PACKAGE_BUGREPORT "" 131 132/* Define to the full name of this package. */ 133#define PACKAGE_NAME "" 134 135/* Define to the full name and version of this package. */ 136#define PACKAGE_STRING "" 137 138/* Define to the one symbol short name of this package. */ 139#define PACKAGE_TARNAME "" 140 141/* Define to the home page for this package. */ 142#define PACKAGE_URL "" 143 144/* Define to the version of this package. */ 145#define PACKAGE_VERSION "" 146 147/* Support for IPv6 */ 148#define SUPPORT_IP6 149 150/* Version number of package */ 151#define VERSION "@VERSION@" 152 153/* Determine what socket length (socklen_t) data type is */ 154#define XML_SOCKLEN_T socklen_t 155 156/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>, 157 <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the 158 #define below would cause a syntax error. */ 159#undef _UINT32_T 160 161/* ss_family is not defined here, use __ss_family instead */ 162#undef ss_family 163 164/* Define to the type of an unsigned integer type of width exactly 32 bits if 165 such a type exists and the standard includes do not define it. */ 166#undef uint32_t 167 168/* Type cast for the send() function 2nd arg */ 169#define SEND_ARG2_CAST (char *) 170 171/* Type cast for the gethostbyname() argument */ 172#define GETHOSTBYNAME_ARG_CAST (char *) 173 174/* Define if va_list is an array type */ 175#define VA_LIST_IS_ARRAY 1 176