Subject: | MSVC error signal.h(102) : error C2059: syntax error : '(' |
The solution as noted in http://rt.cpan.org/NoAuth/Bug.html?id=4463 is to
replace
#include <signal.h>
with
#if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
#ifdef WIN32
#define signal win32_signal
#endif
#include <signal.h>
#ifdef WIN32
#define signal PerlProc_signal
#endif
#endif