From: simonm Date: Wed, 11 Mar 1998 14:26:53 +0000 (+0000) Subject: [project @ 1998-03-11 14:26:53 by simonm] X-Git-Tag: Approx_2487_patches~877 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=b9d90b8c67c1ee9b95f97510d91aff06043af8fb;p=ghc-hetmet.git [project @ 1998-03-11 14:26:53 by simonm] add all missing SIZEOF_* and ALIGNMENT_* defines. --- diff --git a/mk/config.h.in b/mk/config.h.in index 6eac388..1254469 100644 --- a/mk/config.h.in +++ b/mk/config.h.in @@ -189,11 +189,29 @@ /* Define this if your time.h defines altzone */ #undef HAVE_ALTZONE -/* sizeof(int) */ -#undef SIZEOF_INT +/* sizeof(unsigned int) */ +#undef SIZEOF_UNSIGNED_INT /* sizeof(long) */ #undef SIZEOF_LONG /* sizeof(void *) */ #undef SIZEOF_VOID_P + +/* sizeof(float) */ +#undef SIZEOF_FLOAT + +/* sizeof(double) */ +#undef SIZEOF_DOUBLE + +/* minimum alignment of unsigned int */ +#undef ALIGNMENT_UNSIGNED_INT + +/* minimum alignment of long */ +#undef ALIGNMENT_LONG + +/* minimum alignment of float */ +#undef ALIGNMENT_FLOAT + +/* minimum alignment of double */ +#undef ALIGNMENT_DOUBLE