Main Page   Compound List   File List   Compound Members   File Members  

config.h

Go to the documentation of this file.
00001 /* kmtraceviewer/config.h.  Generated by configure.  */
00002 /* kmtraceviewer/config.h.in.  Generated from configure.ac 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 to 1 if you have the <pthread/linuxthreads/pthread.h> header file.
00038    */
00039 /* #undef HAVE_PTHREAD_LINUXTHREADS_PTHREAD_H */
00040 
00041 /* Define if you have res_init */
00042 #define HAVE_RES_INIT 1
00043 
00044 /* Define if you have the res_init prototype */
00045 #define HAVE_RES_INIT_PROTO 1
00046 
00047 /* Define to 1 if you have the `snprintf' function. */
00048 #define HAVE_SNPRINTF 1
00049 
00050 /* Define to 1 if you have the <stdint.h> header file. */
00051 #define HAVE_STDINT_H 1
00052 
00053 /* Define to 1 if you have the <stdlib.h> header file. */
00054 #define HAVE_STDLIB_H 1
00055 
00056 /* Define to 1 if you have the <strings.h> header file. */
00057 #define HAVE_STRINGS_H 1
00058 
00059 /* Define to 1 if you have the <string.h> header file. */
00060 #define HAVE_STRING_H 1
00061 
00062 /* Define to 1 if you have the <sys/stat.h> header file. */
00063 #define HAVE_SYS_STAT_H 1
00064 
00065 /* Define to 1 if you have the <sys/types.h> header file. */
00066 #define HAVE_SYS_TYPES_H 1
00067 
00068 /* C++ compiler supports template repository */
00069 #define HAVE_TEMPLATE_REPOSITORY 1
00070 
00071 /* Define to 1 if you have the <unistd.h> header file. */
00072 #define HAVE_UNISTD_H 1
00073 
00074 /* Define to 1 if you have the `vsnprintf' function. */
00075 #define HAVE_VSNPRINTF 1
00076 
00077 /* Define if you want Xinerama support */
00078 /* #undef HAVE_XINERAMA */
00079 
00080 /* Suffix for lib directories */
00081 #define KDELIBSUFF ""
00082 
00083 /* Name of package */
00084 #define PACKAGE "kmtraceviewer"
00085 
00086 /* Define to the address where bug reports for this package should be sent. */
00087 #define PACKAGE_BUGREPORT "andreas_baumann@users.sourceforge.net"
00088 
00089 /* Define to the full name of this package. */
00090 #define PACKAGE_NAME "KMTRACEVIEWER"
00091 
00092 /* Define to the full name and version of this package. */
00093 #define PACKAGE_STRING "KMTRACEVIEWER 0.65"
00094 
00095 /* Define to the one symbol short name of this package. */
00096 #define PACKAGE_TARNAME "kmtraceviewer"
00097 
00098 /* Define to the version of this package. */
00099 #define PACKAGE_VERSION "0.65"
00100 
00101 /* The size of a `char', as computed by sizeof. */
00102 #define SIZEOF_CHAR 1
00103 
00104 /* The size of a `char *', as computed by sizeof. */
00105 #define SIZEOF_CHAR_P 4
00106 
00107 /* The size of a `int', as computed by sizeof. */
00108 #define SIZEOF_INT 4
00109 
00110 /* The size of a `long', as computed by sizeof. */
00111 #define SIZEOF_LONG 4
00112 
00113 /* Define to 1 if you have the ANSI C header files. */
00114 #define STDC_HEADERS 1
00115 
00116 /* Version number of package */
00117 #define VERSION "0.65"
00118 
00119 /*
00120  * jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system
00121  * headers and I'm too lazy to write a configure test as long as only
00122  * unixware is related
00123  */
00124 #ifdef _UNIXWARE
00125 #define HAVE_BOOLEAN
00126 #endif
00127 
00128 
00129 
00130 /*
00131  * AIX defines FD_SET in terms of bzero, but fails to include <strings.h>
00132  * that defines bzero.
00133  */
00134 
00135 #if defined(_AIX)
00136 #include <strings.h>
00137 #endif
00138 
00139 
00140 
00141 #if !defined(HAVE_RES_INIT_PROTO)
00142 #ifdef __cplusplus
00143 extern "C"
00144 #endif
00145 int res_init (void);
00146 #endif
00147 
00148 
00149 
00150 /*
00151  * On HP-UX, the declaration of vsnprintf() is needed every time !
00152  */
00153 
00154 #if !defined(HAVE_VSNPRINTF) || defined(hpux)
00155 #if __STDC__
00156 #include <stdarg.h>
00157 #include <stdlib.h>
00158 #else
00159 #include <varargs.h>
00160 #endif
00161 #ifdef __cplusplus
00162 extern "C"
00163 #endif
00164 int vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
00165 #ifdef __cplusplus
00166 extern "C"
00167 #endif
00168 int snprintf(char *str, size_t n, char const *fmt, ...);
00169 #endif
00170 
00171 
00172 
00173 #if defined(__SVR4) && !defined(__svr4__)
00174 #define __svr4__ 1
00175 #endif
00176 
00177 
00178 /* Compatibility define */
00179 #define ksize_t socklen_t
00180 
00181 /* Define the real type of socklen_t */
00182 /* #undef socklen_t */

Generated on Fri Jan 3 11:42:18 2003 for kmtraceviewer by doxygen1.3-rc1