1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
/* Debug enabled */
#undef DEBUG
/* Extended sparse matrix data types */
#define EXTENDED_SPARSE 1
/* Define to dummy `main' function (if any) required to link to the Fortran
libraries. */
#undef FC_DUMMY_MAIN
/* Define if F77 and FC dummy `main' functions are identical. */
#undef FC_DUMMY_MAIN_EQ_F77
/* Define to a macro mangling the given C identifier (in lower and upper
case), which must not contain underscores, for linking with Fortran. */
#undef FC_FUNC
/* As FC_FUNC, but for C identifiers containing underscores. */
#undef FC_FUNC_
/* Have asprintf */
#undef HAVE_ASPRINTF
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you have the <getopt.h> header file. */
#undef HAVE_GETOPT_H
/* Define to 1 if you have the `getopt_long_only' function. */
#undef HAVE_GETOPT_LONG_ONLY
/* Define to 1 if you have the `m' library (-lm). */
#undef HAVE_LIBM
/* Have MAT int16 */
#define HAVE_MAT_INT16_T 1
/* Have MAT int32 */
#define HAVE_MAT_INT32_T 1
/* Have MAT int64 */
#define HAVE_MAT_INT64_T 1
/* Have MAT int8 */
#define HAVE_MAT_INT8_T 1
/* Have MAT int16 */
#define HAVE_MAT_UINT16_T 1
/* Have MAT int32 */
#define HAVE_MAT_UINT32_T 1
/* Have MAT int64 */
#define HAVE_MAT_UINT64_T 1
/* Have MAT int8 */
#define HAVE_MAT_UINT8_T 1
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* Have snprintf */
#undef HAVE_SNPRINTF
/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Have vasprintf */
#undef HAVE_VASPRINTF
/* Have va_copy */
#undef HAVE_VA_COPY
/* Have vsnprintf */
#undef HAVE_VSNPRINTF
/* Have va_copy */
#undef HAVE___VA_COPY
/* OS is Linux */
#undef LINUX
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#undef LT_OBJDIR
/* Platform */
#if defined(_WIN32)
# define MATIO_PLATFORM "i686-pc-windows"
#elif defined(_WIN64)
# define MATIO_PLATFORM "x86_64-pc-windows"
#endif
/* Debug disabled */
#undef NODEBUG
/* Name of package */
#define PACKAGE "matio"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "chulbe2lsu@users.sourceforge.net"
/* Define to the full name of this package. */
#define PACKAGE_NAME "MATIO"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "MATIO 1.5.0"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "matio"
/* Define to the home page for this package. */
#define PACKAGE_URL "http://sourceforge.net/projects/matio"
/* Define to the version of this package. */
#define PACKAGE_VERSION "1.5.0"
/* The size of `char', as computed by sizeof. */
#define SIZEOF_CHAR 1
/* The size of `double', as computed by sizeof. */
#define SIZEOF_DOUBLE 8
/* The size of `float', as computed by sizeof. */
#define SIZEOF_FLOAT 4
/* The size of `int', as computed by sizeof. */
#define SIZEOF_INT 4
/* The size of `long', as computed by sizeof. */
#define SIZEOF_LONG 4
/* The size of `long long', as computed by sizeof. */
#define SIZEOF_LONG_LONG 8
/* The size of `short', as computed by sizeof. */
#define SIZEOF_SHORT 2
#if defined(_WIN32)
/* The size of `void *', as computed by sizeof. */
# define SIZEOF_VOID_P 4
/* The size of `size_t', as computed by sizeof. */
# define SIZEOF_SIZE_T 4
#elif defined(_WIN64)
/* The size of `void *', as computed by sizeof. */
# define SIZEOF_VOID_P 8
/* The size of `size_t', as computed by sizeof. */
# define SIZEOF_SIZE_T 8
#endif
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Version number of package */
#define VERSION "1.5.0"
/* Z prefix */
#undef Z_PREFIX
|