On Thu, 10 Apr 2008, Andy Dougherty wrote: > On Thu, 10 Apr 2008, Gabor Szabo wrote: > > > C:/strawberry/perl/lib/CORE/config.h:39:20: warning: "/*" within comment > > > > I don't claim to understand this but based on what Dmitry found it is > > complaining about > > C:/strawberry/perl/lib/CORE/config.h having C structures like > > > > /* #define A B /* comment */ > > In the unix config.h generated by Configure, we replace that with > > /* #define A B / * comment */ > > note the space here ^ > > to avoid just this problem. I don't know how Strawberry perl generates > its config.h, but that's the place to look.
They are pregenerated in the perl source distribution in win32/config_H.gc. The problem is most likely in win32/config_h.PL. Especially this line looks suspicious: s#/[ *\*]*\*/#/**/#; Cheers, -Jan
