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). */
35 /* #define HAVE_LIBM 1 */
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 */
71 /* #define HAVE_VLA 1 */
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@"
103 /* Size of fundamental data types. */
104 /* The size of a `int', as computed by sizeof. */
105 #define SIZEOF_INT @GDCM_SIZEOF_INT@
107 /* The size of a `long', as computed by sizeof. */
108 #define SIZEOF_LONG @GDCM_SIZEOF_LONG@
110 /* The size of a `short', as computed by sizeof. */
111 #define SIZEOF_SHORT @GDCM_SIZEOF_SHORT@
113 /* The size of a `char', as computed by sizeof. */
114 #define SIZEOF_CHAR @GDCM_SIZEOF_CHAR@
116 /* The size of a `double', as computed by sizeof. */
117 #define SIZEOF_DOUBLE @GDCM_SIZEOF_DOUBLE@
119 /* The size of a `float', as computed by sizeof. */
120 #define SIZEOF_FLOAT @GDCM_SIZEOF_FLOAT@
122 /* Could someone give me an example of plateform that have
123 * different size for unsigned types ?? */
124 /* The size of a `unsigned int', as computed by sizeof. */
125 #define SIZEOF_UNSIGNED_INT @GDCM_SIZEOF_INT@
127 /* The size of a `unsigned long', as computed by sizeof. */
128 #define SIZEOF_UNSIGNED_LONG @GDCM_SIZEOF_LONG@
130 /* The size of a `unsigned short', as computed by sizeof. */
131 #define SIZEOF_UNSIGNED_SHORT @GDCM_SIZEOF_SHORT@
134 /* Define size of long long and/or __int64 bit integer type only if the type
136 /* The size of a `long long', as computed by sizeof. */
137 #cmakedefine GDCM_SIZEOF_LONG_LONG @GDCM_SIZEOF_LONG_LONG@
138 #cmakedefine GDCM_SIZEOF___INT64 @GDCM_SIZEOF___INT64@
140 /* The size of a `unsigned long long', as computed by sizeof. */
141 #define SIZEOF_UNSIGNED_LONG_LONG @GDCM_SIZEOF_LONG_LONG@
146 /* Define to 1 if you have the ANSI C header files. */
147 #define STDC_HEADERS 1
150 /* Version number of package */
151 #define VERSION "1.701.0"
153 /* Define to 1 if your processor stores words with the most significant byte
154 first (like Motorola and SPARC, unlike Intel and VAX). */
155 #cmakedefine WORDS_BIGENDIAN
157 /* Define to 1 if the X Window System is missing or not being used. */
158 /*#define X_DISPLAY_MISSING 1 */
160 /* Define to empty if `const' does not conform to ANSI C. */
163 /* Define as `__inline' if that's what the C compiler calls it, or to nothing
164 if it is not supported. */
167 /* Whether types "long long" and "__int64" are enabled. If a type is
168 enabled then it is a unique fundamental type. */
169 #cmakedefine GDCM_TYPE_USE_LONG_LONG
170 #cmakedefine GDCM_TYPE_USE___INT64
172 /* Some properties of the available types. */
173 #cmakedefine GDCM_TYPE_SAME_LONG_AND___INT64
174 #cmakedefine GDCM_TYPE_SAME_LONG_LONG_AND___INT64
175 #cmakedefine GDCM_TYPE_CONVERT_UI64_TO_DOUBLE
178 // On win32 there is no long long therefore use __int64 instead
180 #ifndef HAVE_SYS_TYPES_H
181 typedef unsigned short ushort;
182 typedef unsigned int uint;
183 typedef unsigned long ulong;
184 #ifdef GDCM_TYPE_USE___INT64
185 typedef unsigned char uchar;
186 typedef unsigned __int64 ulonglong;
187 typedef __int64 longlong;
189 #error this is not supposed to happen please report your compiler
190 #endif //GDCM_TYPE_USE___INT64
192 #ifdef GDCM_TYPE_USE_LONG_LONG
193 typedef unsigned char uchar;
194 typedef unsigned long long ulonglong;
195 typedef long long longlong;
197 typedef unsigned short ushort;
198 typedef unsigned int uint;
199 typedef unsigned long ulong;
200 typedef unsigned char uchar;
201 typedef unsigned __int64 ulonglong;
202 typedef __int64 longlong;
203 #endif // GDCM_TYPE_USE_LONG_LONG
204 /* #define ssize_t int */
205 #endif // HAVE_SYS_TYPES_H