current w32log.c,1.51,1.52

Lee <[email protected]> Thu, 28 Jul 2016 00:38:49 +0000
Newsgroups gmane.comp.web.privoxy.cvs
Message-ID <[email protected]>
Update of /cvsroot/ijbswa/current
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv9749/current

Modified Files:
	w32log.c 
Log Message:
back out changes for the new cygwin cross-compiler that were mistakenly included
with the 1.49 -> 1.50 Log when privoxy is toggled on or off via cgi interface.
patch



Index: w32log.c
===================================================================
RCS file: /cvsroot/ijbswa/current/w32log.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** w32log.c	23 Jul 2016 23:25:18 -0000	1.51
--- w32log.c	28 Jul 2016 00:38:47 -0000	1.52
***************
*** 42,46 ****
  #define STRICT
  #endif
- #include <winsock2.h>    /* i686-w64-mingw32-gcc compiler warning if winsock2.h is included after windows.h */
  #include <windows.h>
  #include <richedit.h>
--- 42,45 ----
***************
*** 58,61 ****
--- 57,65 ----
  const char w32res_h_rcs[] = W32RES_H_VERSION;
  
+ #ifdef __MINGW32__
+ #include "cygwin.h"
+ const char cygwin_h_rcs[] = CYGWIN_H_VERSION;
+ #endif
+ 
  const char w32log_h_rcs[] = W32LOG_H_VERSION;
  


------------------------------------------------------------------------------