Bug #1445
Updated by jeremyevans0 (Jeremy Evans) over 5 years ago
=begin Compilation of ext/bigdecimal/bigdecimal.c fails when being compiled with nmake and debug flags. Repro: nmake DEBUGFLAGS="-ZI -MDd" OPTFLAGS="-Od" Expected: Everything would compile. Actual: Compilation fails when it gets to compiling ext/bigdecimal/bigdecimal.c The issue is related to an undefined variable 'gfDebug'. Patch: Uncomment line 1961 and change it to: static int gfDebug = 0; /* Debug switch */ =end