William A. Rowe, Jr.
Fri, 23 May 2008 09:48:17 -0700
Brad Nicholes wrote:
There seems to be a mismatch in how the #define APU_DSO_BUILD is being used. APU_DSO_BUILD has been defined as a boolean yet much of the code is simply checking for the definition rather than the boolean state. Therefore setting APU_DSO_BUILD to 0 doesn't actually turn off the code compilation paths. Shouldn't all of the statements of #ifdef (or #ifndef) APU_DSO_BUILD be changed to #if APU_DSO_BUILD?
Quite right, and a caught a few others. 659591 committed and backported to 1.3. Bill