At 01:35 PM 6/19/2002 -0400, Brian Tillman wrote: >When configuring this new perl kit, the procedure says: > >Checking to see if you have long double... >You have long double. >Checking to see how big your long doubles are... >Your long doubles are bytes long. > >Notice that there is no value for how long the long doubles are. Hmm. Must be a bug in configure.com. What do you get when you run the following test program: $ create try.c #if defined(__DECC) || defined(__DECCXX) #include <stdlib.h> #endif #include <stdio.h> int main() { printf("%d\n", sizeof(long double)); exit(0); } ^Z $ cc try $ link try $ run try