diff options
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/config.h.in b/config.h.in index 8f3ed5927..54a2fcb9c 100644 --- a/config.h.in +++ b/config.h.in @@ -41,15 +41,28 @@ /* Define if you have the ANSI C header files. */ #undef STDC_HEADERS +/* Define if your processor stores words with the most significant + byte first (like Motorola and SPARC, unlike Intel and VAX). */ +#undef WORDS_BIGENDIAN + #undef M_DEBUG #undef VERSION #undef PACKAGE /* RSA is only compiled in if you have these files. You can use - * RSA with out any restrictions, if your not in the U.S. or + * RSA without any restrictions, if your not in the U.S. or * wait until sep 20, 2000 */ #undef HAVE_RSA_CIPHER +/* The number of bytes in a unsigned int. */ +#undef SIZEOF_UNSIGNED_INT + +/* The number of bytes in a unsigned long. */ +#undef SIZEOF_UNSIGNED_LONG + +/* The number of bytes in a unsigned short. */ +#undef SIZEOF_UNSIGNED_SHORT + /* Define if you have the strerror function. */ #undef HAVE_STRERROR @@ -65,4 +78,11 @@ /* Define if you have the <zlib.h> header file. */ #undef HAVE_ZLIB_H +#ifdef WORDS_BIGENDIAN + #define BIG_ENDIAN_HOST +#else + #define LITTLE_ENDIAN_HOST +#endif + + #endif /*G10_CONFIG_H*/ |