1 /* src/libjasper/include/jasper/jas_config.h.in. Template for cmake. */
4 /* Avoid problems due to multiple inclusion. */
9 /* Extra debugging support */
12 /* Debugging memory allocator */
15 /* Debugging overflow detection */
19 /* Define to 1 if you have the <dlfcn.h> header file. */
20 #cmakedefine HAVE_DLFCN_H
22 /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
23 /* #undef HAVE_DOPRNT */
25 /* Define to 1 if you have the <fcntl.h> header file. */
26 #cmakedefine HAVE_FCNTL_H
28 /* Define to 1 if you have the <inttypes.h> header file. */
29 #cmakedefine HAVE_INTTYPES_H
31 /* Define to 1 if you have the <io.h> header file. */
32 #cmakedefine HAVE_IO_H
34 ///* Define to 1 if you have the `m' library (-lm). */
37 /* Define to 1 if you have the <limits.h> header file. */
38 #cmakedefine HAVE_LIMITS_H
40 /* Define to 1 if you have the <memory.h> header file. */
41 #cmakedefine HAVE_MEMORY_H
43 /* Define to 1 if you have the <stdbool.h> header file. */
44 #cmakedefine HAVE_STDBOOL_H
46 /* Define to 1 if you have the <stddef.h> header file. */
47 #cmakedefine HAVE_STDDEF_H
49 /* Define to 1 if you have the <stdint.h> header file. */
50 #cmakedefine HAVE_STDINT_H
52 /* Define to 1 if you have the <stdlib.h> header file. */
53 #cmakedefine HAVE_STDLIB_H
55 /* Define to 1 if you have the <strings.h> header file. */
56 #cmakedefine HAVE_STRINGS_H
58 /* Define to 1 if you have the <string.h> header file. */
59 #cmakedefine HAVE_STRING_H
61 /* Define to 1 if you have the <sys/stat.h> header file. */
62 #cmakedefine HAVE_SYS_STAT_H
64 /* Define to 1 if you have the <sys/types.h> header file. */
65 #cmakedefine HAVE_SYS_TYPES_H
67 /* Define to 1 if you have the <unistd.h> header file. */
68 #cmakedefine HAVE_UNISTD_H
70 ///* Have variable length arrays */
73 ///* Define to 1 if you have the `vprintf' function. */
74 //#define HAVE_VPRINTF 1
76 /* Define to 1 if you have the <windows.h> header file. */
77 #cmakedefine HAVE_WINDOWS_H
79 /* JasPer configure */
80 #define JAS_CONFIGURE 1
83 #define JAS_VERSION "@JAS_VERSION@"
86 #define PACKAGE "jasper"
88 /* Define to the address where bug reports for this package should be sent. */
89 #define PACKAGE_BUGREPORT ""
91 /* Define to the full name of this package. */
92 #define PACKAGE_NAME "jasper"
94 /* Define to the full name and version of this package. */
95 #define PACKAGE_STRING "jasper @JAS_VERSION@"
97 /* Define to the one symbol short name of this package. */
98 #define PACKAGE_TARNAME "jasper"
100 /* Define to the version of this package. */
101 #define PACKAGE_VERSION "@JAS_VERSION@"
104 /* The size of a `int', as computed by sizeof. */
107 /* The size of a `long', as computed by sizeof. */
108 #define SIZEOF_LONG 4
110 /* The size of a `long long', as computed by sizeof. */
111 #define SIZEOF_LONG_LONG 8
113 /* The size of a `short', as computed by sizeof. */
114 #define SIZEOF_SHORT 2
116 /* The size of a `unsigned int', as computed by sizeof. */
117 #define SIZEOF_UNSIGNED_INT 4
119 /* The size of a `unsigned long', as computed by sizeof. */
120 #define SIZEOF_UNSIGNED_LONG 4
122 /* The size of a `unsigned long long', as computed by sizeof. */
123 #define SIZEOF_UNSIGNED_LONG_LONG 8
125 /* The size of a `unsigned short', as computed by sizeof. */
126 #define SIZEOF_UNSIGNED_SHORT 2
128 /* Define to 1 if you have the ANSI C header files. */
129 #define STDC_HEADERS 1
132 /* Version number of package */
133 #define VERSION "1.701.0"
135 /* Define to 1 if your processor stores words with the most significant byte
136 first (like Motorola and SPARC, unlike Intel and VAX). */
137 #cmakedefine WORDS_BIGENDIAN
139 /* Define to 1 if the X Window System is missing or not being used. */
140 //#define X_DISPLAY_MISSING 1
142 /* Define to empty if `const' does not conform to ANSI C. */
145 /* Define as `__inline' if that's what the C compiler calls it, or to nothing
146 if it is not supported. */
149 // I have #define for types...
151 /* Define to `long long' if <sys/types.h> does not define. */
152 #define longlong long long
154 /* Define to `unsigned' if <sys/types.h> does not define. */
157 /* Define to `int' if <sys/types.h> does not define. */
160 /* Define to `unsigned char' if <sys/types.h> does not define. */
161 #define uchar unsigned char
163 /* Define to `unsigned int' if <sys/types.h> does not define. */
166 /* Define to `unsigned long' if <sys/types.h> does not define. */
167 #define ulong unsigned long
169 /* Define to `unsigned long long' if <sys/types.h> does not define. */
170 #define ulonglong unsigned long long
172 /* Define to `unsigned short' if <sys/types.h> does not define. */
176 #ifndef HAVE_SYS_TYPES_H
177 typedef unsigned char uchar;
178 typedef unsigned short ushort;
179 typedef unsigned int uint;
180 typedef unsigned long ulong;
181 typedef long long longlong;
182 typedef unsigned long long ulonglong;
183 /*#define ssize_t int*/