diff options
author | Werner Koch <[email protected]> | 1998-01-24 16:32:27 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-01-24 16:32:27 +0000 |
commit | d71f8bce7e73b41c1d19d2dae6396ea8eace9c07 (patch) | |
tree | 89854e6434a270ad627f4f4011385a7739f8f3df /acconfig.h | |
parent | backup (diff) | |
download | gnupg-d71f8bce7e73b41c1d19d2dae6396ea8eace9c07.tar.gz gnupg-d71f8bce7e73b41c1d19d2dae6396ea8eace9c07.zip |
Trust stuff works partly.
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h index 113ec9f0f..3f83ef1b3 100644 --- a/acconfig.h +++ b/acconfig.h @@ -50,4 +50,20 @@ @BOTTOM@ +/* The AC_CHECK_SIZEOF() fails for some machines. + * we provide some fallback values here */ +#if !SIZEOF_UNSIGNED_SHORT + #undef SIZEOF_UNSIGNED_SHORT + #define SIZEOF_UNSIGNED_SHORT 2 +#endif +#if !SIZEOF_UNSIGNED_INT + #undef SIZEOF_UNSIGNED_INT + #define SIZEOF_UNSIGNED_INT 4 +#endif +#if !SIZEOF_UNSIGNED_LONG + #undef SIZEOF_UNSIGNED_LONG + #define SIZEOF_UNSIGNED_LONG 4 +#endif + + #endif /*G10_CONFIG_H*/ |