O_BINARY
[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 <jpeglib.h> header file.  */
47 #undef HAVE_JPEGLIB_H
48
49 /* Define if you have the <ndir.h> header file.  */
50 #undef HAVE_NDIR_H
51
52 /* Define if you have the <sys/dir.h> header file.  */
53 #undef HAVE_SYS_DIR_H
54
55 /* Define if you have the <sys/ndir.h> header file.  */
56 #undef HAVE_SYS_NDIR_H
57
58 /* Define if you have the <sys/bsdtypes.h> header file.  */
59 #undef HAVE_SYS_BSDTYPES_H
60
61 /* Define if you have the <sys/stat.h> header file.  */
62 #undef HAVE_SYS_STAT_H
63
64 /* Define if you have the <sys/types.h> header file.  */
65 #undef HAVE_SYS_TYPES_H
66
67 /* Define if you have the <t1lib.h> header file.  */
68 #undef HAVE_T1LIB_H
69
70 /* Define if you have the <zlib.h> header file.  */
71 #undef HAVE_ZLIB_H
72
73 /* Define if you have the jpeg library (-ljpeg).  */
74 #undef HAVE_LIBJPEG
75
76 /* Define if you have the m library (-lm).  */
77 #undef HAVE_LIBM
78
79 /* Define if you have the t1 library (-lt1).  */
80 #undef HAVE_LIBT1
81
82 /* Define if you have the z library (-lz).  */
83 #undef HAVE_LIBZ
84
85 /* Name of package */
86 #undef PACKAGE
87
88 /* Version number of package */
89 #undef VERSION
90
91 /* Typedefs */
92 #undef boolean 
93
94 /* Typedefs */
95 #undef bool
96
97 /* use gzip/uncompress */
98 #undef USE_GZIP
99
100 /* system() can handle command substitution */
101 #undef SYSTEM_BACKTICKS
102
103 /* Define to 1 if this machine has network byte order*/
104 #undef WORDS_BIGENDIAN
105
106 /* Define to 0 on non-windows systems */
107 #undef O_BINARY
108
109 #ifdef HAVE_ZLIB_H
110 #ifdef HAVE_LIBZ
111 #define HAVE_ZLIB
112 #endif
113 #endif
114
115 #ifdef HAVE_JPEGLIB_H
116 #ifdef HAVE_LIBJPEG
117 #define HAVE_JPEGLIB
118 #endif
119 #endif
120
121
122 #endif