[project @ 1998-03-11 14:26:53 by simonm]
authorsimonm <unknown>
Wed, 11 Mar 1998 14:26:53 +0000 (14:26 +0000)
committersimonm <unknown>
Wed, 11 Mar 1998 14:26:53 +0000 (14:26 +0000)
add all missing SIZEOF_* and ALIGNMENT_* defines.

mk/config.h.in

index 6eac388..1254469 100644 (file)
 /* 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