From: Shashank Date Date: 2003-10-10T02:07:27+09:00 Subject: minor glitch in numeric.c I was compiling ruby-1.8.0-preview1 from source using VC++ 6.0 on Win XP Pro. The nmake process error'd out due to a minor problem in numeric.c. Lines 47,48,49 look like this: #ifndef DBL_MAX_10_EXP #define DBL_MAN_10_EXP 308 #endif I changed line 48 (replaced MAN with MAX) to look like this: #define DBL_MAX_10_EXP 308 Then the process ran to completion without problem.