Main Page | Class Hierarchy | Class List | File List | Class Members | File Members

config.h

Go to the documentation of this file.
00001 /* config.h.  Generated by configure.  */
00002 /* config.h.in.  Generated from configure.in by autoheader.  */
00003 
00004 /* Define if you have the CoreAudio API */
00005 /* #undef HAVE_COREAUDIO */
00006 
00007 /* Define to 1 if you have the <crt_externs.h> header file. */
00008 /* #undef HAVE_CRT_EXTERNS_H */
00009 
00010 /* Defines if your system has the crypt function */
00011 #define HAVE_CRYPT 1
00012 
00013 /* Define to 1 if you have the <dlfcn.h> header file. */
00014 #define HAVE_DLFCN_H 1
00015 
00016 /* Define to 1 if you have the <inttypes.h> header file. */
00017 #define HAVE_INTTYPES_H 1
00018 
00019 /* Define if you have libjpeg */
00020 #define HAVE_LIBJPEG 1
00021 
00022 /* Define if you have libpng */
00023 #define HAVE_LIBPNG 1
00024 
00025 /* Define if you have a working libpthread (will enable threaded code) */
00026 #define HAVE_LIBPTHREAD 1
00027 
00028 /* Define if you have libz */
00029 #define HAVE_LIBZ 1
00030 
00031 /* Define to 1 if you have the <memory.h> header file. */
00032 #define HAVE_MEMORY_H 1
00033 
00034 /* Define if your system needs _NSGetEnviron to set up the environment */
00035 /* #undef HAVE_NSGETENVIRON */
00036 
00037 /* Define if you have the res_init function */
00038 #define HAVE_RES_INIT 1
00039 
00040 /* Define if you have a STL implementation by SGI */
00041 #define HAVE_SGI_STL 1
00042 
00043 /* Define to 1 if you have the `snprintf' function. */
00044 #define HAVE_SNPRINTF 1
00045 
00046 /* Define to 1 if you have the <stdint.h> header file. */
00047 #define HAVE_STDINT_H 1
00048 
00049 /* Define to 1 if you have the <stdlib.h> header file. */
00050 #define HAVE_STDLIB_H 1
00051 
00052 /* Define to 1 if you have the <strings.h> header file. */
00053 #define HAVE_STRINGS_H 1
00054 
00055 /* Define to 1 if you have the <string.h> header file. */
00056 #define HAVE_STRING_H 1
00057 
00058 /* Define if you have strlcat */
00059 /* #undef HAVE_STRLCAT */
00060 
00061 /* Define if you have the strlcat prototype */
00062 /* #undef HAVE_STRLCAT_PROTO */
00063 
00064 /* Define if you have strlcpy */
00065 /* #undef HAVE_STRLCPY */
00066 
00067 /* Define if you have the strlcpy prototype */
00068 /* #undef HAVE_STRLCPY_PROTO */
00069 
00070 /* Define to 1 if you have the <sys/stat.h> header file. */
00071 #define HAVE_SYS_STAT_H 1
00072 
00073 /* Define to 1 if you have the <sys/types.h> header file. */
00074 #define HAVE_SYS_TYPES_H 1
00075 
00076 /* Define to 1 if you have the <unistd.h> header file. */
00077 #define HAVE_UNISTD_H 1
00078 
00079 /* Define to 1 if you have the `vsnprintf' function. */
00080 #define HAVE_VSNPRINTF 1
00081 
00082 /* Suffix for lib directories */
00083 #define KDELIBSUFF ""
00084 
00085 /* Name of package */
00086 #define PACKAGE "literature"
00087 
00088 /* Define to the address where bug reports for this package should be sent. */
00089 #define PACKAGE_BUGREPORT ""
00090 
00091 /* Define to the full name of this package. */
00092 #define PACKAGE_NAME ""
00093 
00094 /* Define to the full name and version of this package. */
00095 #define PACKAGE_STRING ""
00096 
00097 /* Define to the one symbol short name of this package. */
00098 #define PACKAGE_TARNAME ""
00099 
00100 /* Define to the version of this package. */
00101 #define PACKAGE_VERSION ""
00102 
00103 /* The size of a `char *', as computed by sizeof. */
00104 #define SIZEOF_CHAR_P 4
00105 
00106 /* The size of a `int', as computed by sizeof. */
00107 #define SIZEOF_INT 4
00108 
00109 /* The size of a `long', as computed by sizeof. */
00110 #define SIZEOF_LONG 4
00111 
00112 /* The size of a `short', as computed by sizeof. */
00113 #define SIZEOF_SHORT 2
00114 
00115 /* The size of a `size_t', as computed by sizeof. */
00116 #define SIZEOF_SIZE_T 4
00117 
00118 /* The size of a `unsigned long', as computed by sizeof. */
00119 #define SIZEOF_UNSIGNED_LONG 4
00120 
00121 /* Define to 1 if you have the ANSI C header files. */
00122 #define STDC_HEADERS 1
00123 
00124 /* Version number of package */
00125 #define VERSION "0.96"
00126 
00127 /*
00128  * jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system
00129  * headers and I'm too lazy to write a configure test as long as only
00130  * unixware is related
00131  */
00132 #ifdef _UNIXWARE
00133 #define HAVE_BOOLEAN
00134 #endif
00135 
00136 
00137 
00138 /*
00139  * AIX defines FD_SET in terms of bzero, but fails to include <strings.h>
00140  * that defines bzero.
00141  */
00142 
00143 #if defined(_AIX)
00144 #include <strings.h>
00145 #endif
00146 
00147 
00148 
00149 #if defined(HAVE_NSGETENVIRON) && defined(HAVE_CRT_EXTERNS_H)
00150 # include <sys/time.h>
00151 # include <crt_externs.h>
00152 # define environ (*_NSGetEnviron())
00153 #endif
00154 
00155 
00156 
00157 #if !defined(HAVE_STRLCAT_PROTO)
00158 #ifdef __cplusplus
00159 extern "C" {
00160 #endif
00161 unsigned long strlcat(char*, const char*, unsigned long);
00162 #ifdef __cplusplus
00163 }
00164 #endif
00165 #endif
00166 
00167 
00168 
00169 #if !defined(HAVE_STRLCPY_PROTO)
00170 #ifdef __cplusplus
00171 extern "C" {
00172 #endif
00173 unsigned long strlcpy(char*, const char*, unsigned long);
00174 #ifdef __cplusplus
00175 }
00176 #endif
00177 #endif
00178 
00179 
00180 
00181 /*
00182  * On HP-UX, the declaration of vsnprintf() is needed every time !
00183  */
00184 
00185 #if !defined(HAVE_VSNPRINTF) || defined(hpux)
00186 #if __STDC__
00187 #include <stdarg.h>
00188 #include <stdlib.h>
00189 #else
00190 #include <varargs.h>
00191 #endif
00192 #ifdef __cplusplus
00193 extern "C"
00194 #endif
00195 int vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
00196 #ifdef __cplusplus
00197 extern "C"
00198 #endif
00199 int snprintf(char *str, size_t n, char const *fmt, ...);
00200 #endif
00201 
00202 
00203 
00204 #if defined(__SVR4) && !defined(__svr4__)
00205 #define __svr4__ 1
00206 #endif
00207 
00208 
00209 /* Compatibility define */
00210 #define ksize_t socklen_t
00211 
00212 /* Define the real type of socklen_t */
00213 /* #undef socklen_t */

Generated on Sat Mar 27 19:20:38 2004 for Literature by doxygen 1.3.6-20040222