jas_config.h (5167B)
1 2 3 /* Avoid problems due to multiple inclusion. */ 4 #ifndef JAS_CONFIG_H 5 #define JAS_CONFIG_H 6 7 /* This preprocessor symbol identifies the version of JasPer. */ 8 #define JAS_VERSION "1.701.0" 9 /* If configure is being used, this symbol will be defined automatically 10 at this point in the configuration header file. */ 11 12 /* The preprocessor symbol JAS_WIN_MSVC_BUILD should not be defined 13 unless the JasPer software is being built under Microsoft Windows 14 using Microsoft Visual C. */ 15 #ifndef JAS_WIN_MSVC_BUILD 16 /* A configure-based build is being used. */ 17 18 19 20 /* Extra debugging support */ 21 /* #undef DEBUG */ 22 23 /* Debugging memory allocator */ 24 /* #undef DEBUG_MEMALLOC */ 25 26 /* Debugging overflow detection */ 27 /* #undef DEBUG_OVERFLOW */ 28 29 /* Define to 1 if you have the <dlfcn.h> header file. */ 30 /* #undef HAVE_DLFCN_H */ 31 32 /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ 33 /* #undef HAVE_DOPRNT */ 34 35 /* Define to 1 if you have the <fcntl.h> header file. */ 36 #define HAVE_FCNTL_H 1 37 38 /* Define to 1 if you have the <inttypes.h> header file. */ 39 #define HAVE_INTTYPES_H 1 40 41 /* Define to 1 if you have the <io.h> header file. */ 42 /* #undef HAVE_IO_H */ 43 44 /* Define to 1 if you have the `m' library (-lm). */ 45 #define HAVE_LIBM 1 46 47 /* Define to 1 if you have the <limits.h> header file. */ 48 #define HAVE_LIMITS_H 1 49 50 /* Define to 1 if you have the <memory.h> header file. */ 51 /* #undef HAVE_MEMORY_H */ 52 53 /* Define to 1 if you have the <stdbool.h> header file. */ 54 /* #undef HAVE_STDBOOL_H */ 55 56 /* Define to 1 if you have the <stddef.h> header file. */ 57 #define HAVE_STDDEF_H 1 58 59 /* Define to 1 if you have the <stdint.h> header file. */ 60 #define HAVE_STDINT_H 1 61 62 /* Define to 1 if you have the <stdlib.h> header file. */ 63 #define HAVE_STDLIB_H 1 64 65 /* Define to 1 if you have the <strings.h> header file. */ 66 #define HAVE_STRINGS_H 1 67 68 /* Define to 1 if you have the <string.h> header file. */ 69 #define HAVE_STRING_H 1 70 71 /* Define to 1 if you have the <sys/stat.h> header file. */ 72 #define HAVE_SYS_STAT_H 1 73 74 /* Define to 1 if you have the <sys/types.h> header file. */ 75 #define HAVE_SYS_TYPES_H 1 76 77 /* Define to 1 if you have the <unistd.h> header file. */ 78 #define HAVE_UNISTD_H 1 79 80 /* Have variable length arrays */ 81 #define HAVE_VLA 1 82 83 /* Define to 1 if you have the `vprintf' function. */ 84 #define HAVE_VPRINTF 1 85 86 /* Define to 1 if you have the <windows.h> header file. */ 87 /* #undef HAVE_WINDOWS_H */ 88 89 /* JasPer configure */ 90 #define JAS_CONFIGURE 1 91 92 /* JasPer version */ 93 #define JAS_VERSION "1.701.0" 94 95 /* Name of package */ 96 #define PACKAGE "jasper" 97 98 /* Define to the address where bug reports for this package should be sent. */ 99 #define PACKAGE_BUGREPORT "" 100 101 /* Define to the full name of this package. */ 102 #define PACKAGE_NAME "jasper" 103 104 /* Define to the full name and version of this package. */ 105 #define PACKAGE_STRING "jasper 1.701.0" 106 107 /* Define to the one symbol short name of this package. */ 108 #define PACKAGE_TARNAME "jasper" 109 110 /* Define to the version of this package. */ 111 #define PACKAGE_VERSION "1.701.0" 112 113 /* The size of a `int', as computed by sizeof. */ 114 #define SIZEOF_INT 4 115 116 /* The size of a `long', as computed by sizeof. */ 117 #define SIZEOF_LONG 4 118 119 /* The size of a `long long', as computed by sizeof. */ 120 #define SIZEOF_LONG_LONG 8 121 122 /* The size of a `short', as computed by sizeof. */ 123 #define SIZEOF_SHORT 2 124 125 /* The size of a `unsigned int', as computed by sizeof. */ 126 #define SIZEOF_UNSIGNED_INT 4 127 128 /* The size of a `unsigned long', as computed by sizeof. */ 129 #define SIZEOF_UNSIGNED_LONG 4 130 131 /* The size of a `unsigned long long', as computed by sizeof. */ 132 #define SIZEOF_UNSIGNED_LONG_LONG 8 133 134 /* The size of a `unsigned short', as computed by sizeof. */ 135 #define SIZEOF_UNSIGNED_SHORT 2 136 137 /* Define to 1 if you have the ANSI C header files. */ 138 #define STDC_HEADERS 1 139 140 /* Version number of package */ 141 #define VERSION "1.701.0" 142 143 /* Define to 1 if your processor stores words with the most significant byte 144 first (like Motorola and SPARC, unlike Intel and VAX). */ 145 /* #undef WORDS_BIGENDIAN */ 146 147 /* Define to 1 if the X Window System is missing or not being used. */ 148 /* #undef X_DISPLAY_MISSING */ 149 150 /* Define to empty if `const' does not conform to ANSI C. */ 151 /* #undef const */ 152 153 /* Define as `__inline' if that's what the C compiler calls it, or to nothing 154 if it is not supported. */ 155 /* #undef inline */ 156 157 /* Define to `long long' if <sys/types.h> does not define. */ 158 #define longlong long long 159 160 /* Define to `unsigned' if <sys/types.h> does not define. */ 161 /* #undef size_t */ 162 163 /* Define to `int' if <sys/types.h> does not define. */ 164 /* #undef ssize_t */ 165 166 /* Define to `unsigned char' if <sys/types.h> does not define. */ 167 #define uchar unsigned char 168 169 #ifndef HOST 170 /* Define to `unsigned short' if <sys/types.h> does not define. */ 171 #define ushort unsigned short 172 173 /* Define to `unsigned int' if <sys/types.h> does not define. */ 174 #define uint unsigned int 175 176 /* Define to `unsigned long' if <sys/types.h> does not define. */ 177 #define ulong unsigned long 178 #endif // HOST 179 180 /* Define to `unsigned long long' if <sys/types.h> does not define. */ 181 #define ulonglong unsigned long long 182 183 184 #else 185 /* A configure-based build is not being used. */ 186 #include <jasper/jas_config2.h> 187 #endif 188 189 #endif 190