Subject: | WantLineNumbers generates warning C4129: 'S' : unrecognized character escape sequence |
on win32 msvs6
you should probably try to ensure that backslashes are escaped
so stuff like
#line 215 "src\SDL_perl.c"
becomes (as it should)
#line 215 "src\\SDL_perl.c"
thanks