added checking for freetype.
[swftools.git] / config.h.in
1 #ifndef __config_h__
2 #define __config_h__
3
4 /* Define to empty if the keyword does not work.  */
5 #undef const
6
7 /* Define as __inline if that's what the C compiler calls it.  */
8 #undef inline
9
10 /* Define to `long' if <sys/types.h> doesn't define.  */
11 #undef off_t
12
13 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
14 #undef size_t
15
16 /* Define if you have the ANSI C header files.  */
17 #undef STDC_HEADERS
18
19 /* Define if your <sys/time.h> declares struct tm.  */
20 #undef TM_IN_SYS_TIME
21
22 /* Define if you have the lrand48 function.  */
23 #undef HAVE_LRAND48
24
25 /* Define if you have the mkstemp function.  */
26 #undef HAVE_MKSTEMP
27
28 /* Define if you have the popen function.  */
29 #undef HAVE_POPEN
30
31 /* Define if you have the rand function.  */
32 #undef HAVE_RAND
33
34 /* Define if you have the srand function.  */
35 #undef HAVE_SRAND
36
37 /* Define if you have the srand48 function.  */
38 #undef HAVE_SRAND48
39
40 /* Define if you have the stat function.  */
41 #undef HAVE_STAT
42
43 /* Define if you have the <dirent.h> header file.  */
44 #undef HAVE_DIRENT_H
45
46 /* Define if you have the <assert.h> header file.  */
47 #undef HAVE_ASSERT_H
48
49 /* Define if you have the <signal.h> header file.  */
50 #undef HAVE_SIGNAL_H
51
52 /* Define if you have the <pthread.h> header file.  */
53 #undef HAVE_PTHREAD_H
54
55 /* Define if you have the <jpeglib.h> header file.  */
56 #undef HAVE_JPEGLIB_H
57
58 /* Define if you have the <ndir.h> header file.  */
59 #undef HAVE_NDIR_H
60
61 /* Define if you have the <sys/dir.h> header file.  */
62 #undef HAVE_SYS_DIR_H
63
64 /* Define if you have the <sys/ndir.h> header file.  */
65 #undef HAVE_SYS_NDIR_H
66
67 /* Define if you have the <sys/bsdtypes.h> header file.  */
68 #undef HAVE_SYS_BSDTYPES_H
69
70 /* Define if you have the <sys/stat.h> header file.  */
71 #undef HAVE_SYS_STAT_H
72
73 /* Define if you have the <sys/types.h> header file.  */
74 #undef HAVE_SYS_TYPES_H
75
76 /* Define if you have the <t1lib.h> header file.  */
77 #undef HAVE_T1LIB_H
78
79 /* Define if you have the <zlib.h> header file.  */
80 #undef HAVE_ZLIB_H
81
82 /* Define if you have the jpeg library (-ljpeg).  */
83 #undef HAVE_LIBJPEG
84
85 /* Define if you have the m library (-lm).  */
86 #undef HAVE_LIBM
87
88 /* Define if you have the t1 library (-lt1).  */
89 #undef HAVE_LIBT1
90
91 /* Define if you have the z library (-lz).  */
92 #undef HAVE_LIBZ
93
94 /* Name of package */
95 #undef PACKAGE
96
97 /* Version number of package */
98 #undef VERSION
99
100 /* Typedefs */
101 #undef boolean 
102
103 /* Typedefs */
104 #undef bool
105
106 /* use gzip/uncompress */
107 #undef USE_GZIP
108
109 /* use libfreetype */
110 #undef USE_FREETYPE
111
112 /* system() can handle command substitution */
113 #undef SYSTEM_BACKTICKS
114
115 /* Define to 1 if this machine has network byte order*/
116 #undef WORDS_BIGENDIAN
117
118 /* Define to 0 on non-windows systems */
119 #undef O_BINARY
120
121 #ifdef HAVE_ZLIB_H
122 #ifdef HAVE_LIBZ
123 #define HAVE_ZLIB
124 #endif
125 #endif
126
127 #ifdef HAVE_JPEGLIB_H
128 #ifdef HAVE_LIBJPEG
129 #define HAVE_JPEGLIB
130 #endif
131 #endif
132
133
134 #endif