At 04:10 PM 6/19/2002 -0400, Brian Tillman wrote: >>Hmm. Must be a bug in configure.com. What do you get when you run the >>following test program: > >$ cc try > printf("%d\n", sizeof(long double)); > ......................^ >%CC-I-LONGDOUBLENYI, In this statement, type long double has the same > representation as type double on this platform. > At line number 7 in A305_DISK:[TILLMAN]TRY.C;2. OK, I think it's reading the output of the informational message rather than the output of the printf(). What happens if you modify the test program like so: --- try.c;-0 Wed Jun 19 13:56:15 2002 +++ try.c Wed Jun 19 15:46:20 2002 @@ -1,4 +1,5 @@ #if defined(__DECC) || defined(__DECCXX) #include <stdlib.h> +#pragma message disable ALL #endif #include <stdio.h>