File size: 1,829 Bytes
5610573 | 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 | /* include/config.h.in. Generated from configure.ac by autoheader. */
/* Default radix point for fixed-point */
#define DEFAULT_RADIX 12
/* Define to use fixed-point computation */
/* #undef FIXED_POINT */
/* Define if the system has the type `long long'. */
#define HAVE_LONG_LONG
/* Define if you have the `popen' function. */
#define HAVE_POPEN
/* Define if you have the `snprintf' function. */
#define HAVE_SNPRINTF
/* Define if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H
/* Define if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H
/* Define if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H
/* Define if you have the <inttypes.h> header file. */
/* #undef HAVE_INTTYPES_H */
/* Define if you have the <stdint.h> header file. */
#define HAVE_STDINT_H
/* The size of `long', as computed by sizeof. */
#define SIZEOF_LONG 8
/* The size of `long long', as computed by sizeof. */
#define SIZEOF_LONG_LONG 8
/* Define WORDS_BIGENDIAN if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined __BIG_ENDIAN__
# define WORDS_BIGENDIAN
#else
/* #undef WORDS_BIGENDIAN */
#endif
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "dhdaines@gmail.com"
/* Define to the full name of this package. */
#define PACKAGE_NAME "PocketSphinx"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "PocketSphinx 5.0.0"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "pocketsphinx-5.0.0"
/* Define to the home page for this package. */
#define PACKAGE_URL "https://github.com/cmusphinx/pocketsphinx"
/* Define to the version of this package. */
#define PACKAGE_VERSION "5.0.0"
|