4 /* Define to empty if the keyword does not work. */
7 /* Define as __inline if that's what the C compiler calls it. */
10 /* Define to `long' if <sys/types.h> doesn't define. */
13 /* Define to `unsigned' if <sys/types.h> doesn't define. */
16 #undef SIZEOF_SIGNED_CHAR
17 #undef SIZEOF_SIGNED_SHORT
19 #undef SIZEOF_SIGNED_LONG_LONG
22 /* Define if you have the ANSI C header files. */
25 /* Define if your <sys/time.h> declares struct tm. */
28 /* Define if you have the time() function */
31 /* Define if you have the time.h header file */
34 /* Define if you have the sys/time.h header file */
35 #undef HAVE_SYS_TIME_H
37 /* Define if you have the sys/resource.h header file */
38 #undef HAVE_SYS_RESOURCE_H
40 /* Define if you have the malloc.h header file */
43 /* Define if you have the getrusage function */
46 /* Define if you have the mallinfo function */
50 /* Define if you have the unistd.h header file */
58 /* Define if you have the open64 function. */
61 /* Define if you have the lrand48 function. */
64 /* Define if you have the mkstemp function. */
67 /* Define if you have the popen function. */
70 /* Define if you have the bcopy function. */
73 /* Define if you have the bzero function. */
76 /* Define if you have the rand function. */
79 /* Define if you have the srand function. */
82 /* Define if you have the srand48 function. */
85 /* Define if you have the calloc function. */
88 /* Define if you have the stat function. */
91 /* Define if you have the mmap function. */
94 /* Define if you have the <dirent.h> header file. */
97 /* Define if you have the <assert.h> header file. */
100 /* Define if you have the <signal.h> header file. */
103 /* Define if you have the <pthread.h> header file. */
104 #undef HAVE_PTHREAD_H
106 /* Define if you have the <jpeglib.h> header file. */
107 #undef HAVE_JPEGLIB_H
109 /* Define if you have the <ndir.h> header file. */
112 /* Define if you have the <sys/dir.h> header file. */
113 #undef HAVE_SYS_DIR_H
115 /* Define if you have the <sys/ndir.h> header file. */
116 #undef HAVE_SYS_NDIR_H
118 /* Define if you have the <sys/io.h> header file. */
121 /* Define if you have the <sys/bsdtypes.h> header file. */
122 #undef HAVE_SYS_BSDTYPES_H
124 /* Define if you have the <sys/stat.h> header file. */
125 #undef HAVE_SYS_STAT_H
127 /* Define if you have the <sys/mman.h> header file. */
128 #undef HAVE_SYS_MMAN_H
130 /* Define if you have the <sys/types.h> header file. */
131 #undef HAVE_SYS_TYPES_H
133 /* Define if you have the <t1lib.h> header file. */
134 /* #undef HAVE_T1LIB_H */
136 /* Define if you have the <zlib.h> header file. */
139 /* Define if you have the <zzip/lib.h> header file. */
140 #undef HAVE_ZZIP_LIB_H
142 /* Define if you have the <pdflib.h> header file. */
145 /* Define if you have the <avifile/version.h> header file. */
146 #undef HAVE_AVIFILE_VERSION_H
148 /* Define if you have the <freetype/ft2build.h> header file. */
149 #undef HAVE_FT2BUILD_H
151 /* Define if you have the <version.h> header file. */
152 #undef HAVE_VERSION_H
154 /* Define if you have the OpenGL header files */
156 #undef HAVE_GL_GLUT_H
158 /* Define if you have the OpenGL libraries */
163 /* Define if OpenGL seems to work */
166 /* Define if you use poppler */
169 /* Define to 1 if you have the `poppler' library (-lpoppler). */
170 #undef HAVE_LIBPOPPLER
172 /* Define to 1 if you have the <OutputDev.h> header file. */
173 #undef HAVE_OUTPUTDEV_H
175 /* Define if you have the jpeg library (-ljpeg). */
178 /* Define if you have the pdf library (-lpdf). */
181 /* Define if you have the zzip library (-lzzip). */
184 /* Define if you have the m library (-lm). */
187 /* Define if you have the t1 library (-lt1). */
188 /* #undef HAVE_LIBT1 */
190 /* Define if you have the z library (-lz). */
193 /* Name of package */
196 /* Version number of package */
202 /* use gzip/uncompress */
205 /* let ttf2pt1 use libfreetype */
208 /* have/use freetype library */
210 #undef HAVE_FREETYPE_FREETYPE_H
212 /* have/use freetype library */
215 #undef HAVE_FONTCONFIG_H
216 #undef HAVE_FONTCONFIG
222 /* have/use internal l.a.m.e. mp3 library */
225 /* whether python-imaging was found */
226 #undef HAVE_PYTHON_IMAGING
228 /* system() can handle command substitution */
229 #undef SYSTEM_BACKTICKS
231 /* Define to 1 if this machine has network byte order*/
232 #undef WORDS_BIGENDIAN
234 #undef LOWERCASE_UPPERCASE
236 /* Define to 0 on non-windows systems */
245 #ifdef HAVE_JPEGLIB_H
251 #ifdef HAVE_FT2BUILD_H
252 #define HAVE_FREETYPE_H 1
255 /* #ifdef HAVE_T1LIB_H */
256 /* #ifdef HAVE_LIBT1 */
257 /* #define HAVE_T1LIB */
262 #ifdef HAVE_GL_GLUT_H
270 #define GString GooString
271 #define GHash GooHash
274 #ifdef HAVE_ZZIP_LIB_H
284 // supply a substitute calloc function if necessary
286 #define calloc rfx_calloc_replacement
289 //#ifdef HAVE_BUILTIN_EXPECT
290 #if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
291 # define likely(x) __builtin_expect((x), 1)
292 # define unlikely(x) __builtin_expect((x), 0)
294 # define likely(x) (x)
295 # define unlikely(x) (x)