Re: [Patch] Apache::DB on Win32

2000-03-30 Thread Doug MacEachern
thanks Gerald, applied for 0.07. On Wed, 29 Mar 2000, Gerald Richter wrote: Hi Doug, the following patch allows Apache::DB to be used on Win32 Systems: In DB.xs wrap the SIGINT call at the last line inside a conditional, like: #ifndef WIN32 if (ApacheSIGINT)

[Patch] Apache::DB on Win32

2000-03-29 Thread Gerald Richter
Hi Doug, the following patch allows Apache::DB to be used on Win32 Systems: In DB.xs wrap the SIGINT call at the last line inside a conditional, like: #ifndef WIN32 if (ApacheSIGINT) (*ApacheSIGINT)(SIGINT); #endif Gerald -