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
|
/* config.h.in. Generated automatically from configure.in by autoheader 2.13. */
/* The number of bytes in a char. */
#undef SIZEOF_CHAR
/* The number of bytes in a char *. */
#undef SIZEOF_CHAR_P
/* The number of bytes in a int. */
#undef SIZEOF_INT
/* The number of bytes in a long. */
#undef SIZEOF_LONG
/* Define if you have the res_init function. */
#undef HAVE_RES_INIT
/* Name of package */
#undef PACKAGE
/* Version number of package */
#undef VERSION
/* C++ compiler supports template repository */
#undef HAVE_TEMPLATE_REPOSITORY
/* Defines if your system has the crypt function */
#undef HAVE_CRYPT
/* Define the real type of socklen_t */
#undef socklen_t
/* Compatibility define */
#undef ksize_t
/* Define if you have libz */
#undef HAVE_LIBZ
/* Define if you want Xinerama support */
#undef HAVE_XINERAMA
/* Define if you have libpng */
#undef HAVE_LIBPNG
/* Define if you have libjpeg */
#undef HAVE_LIBJPEG
/* Define if you have libtiff */
#undef HAVE_LIBTIFF
/* Define if you have libtiff */
#undef HAVE_LIBTIFF
#undef HAVE_BOOL
#ifndef HAVE_BOOL
#define HAVE_BOOL
typedef int bool;
#ifdef __cplusplus
const bool false = 0;
const bool true = 1;
#else
#define false (bool)0;
#define true (bool)1;
#endif
#endif
/* this is needed for Solaris and others */
#ifndef HAVE_GETDOMAINNAME
#define HAVE_GETDOMAINNAME
#ifdef __cplusplus
extern "C"
#endif
int getdomainname (char *Name, int Namelen);
#endif
#ifndef HAVE_GETHOSTNAME
#define HAVE_GETHOSTNAME
#ifdef __cplusplus
extern "C"
#endif
int gethostname (char *Name, int Namelen);
#endif
#ifndef HAVE_SETENV
#define HAVE_SETENV
int setenv(const char *name, const char *value, int overwrite);
#endif
#ifndef HAVE_UNSETENV
#define HAVE_UNSETENV
int unsetenv(const char *name);
#endif
/*
* jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system
* headers and I'm too lazy to write a configure test as long as only
* unixware is related
*/
#ifdef _UNIXWARE
#define HAVE_BOOLEAN
#endif
#if !defined(HAVE_SETEUID)
#define seteuid(_eu) setresuid(-1, _eu, -1)
#endif
#ifndef HAVE_S_ISSOCK
#define HAVE_S_ISSOCK
#define S_ISSOCK(mode) (1==0)
#endif
#ifdef __osf__
#ifndef OSF_INT32_DEFINED
#define OSF_INT32_DEFINED
typedef int int32_t;
#endif
#ifndef HAVE_USLEEP /* usleep not defined in Tru64 */
#ifdef __cplusplus
extern "C" void usleep(unsigned int);
#else
void usleep(unsigned int);
#endif
#endif
#endif
/*
* AIX defines FD_SET in terms of bzero, but fails to include <strings.h>
* that defines bzero.
*/
#if defined(_AIX)
#include <strings.h>
#endif
|