--------------------- PatchSet 8644 Date: 2006/09/16 18:59:24 Author: serassio Branch: nt Tag: (none) Log: aio_win32.c can be compiled only on MinGW Members: configure.in:1.87.2.55->1.87.2.56 src/fs/coss/aio_win32.h:1.1.2.3->1.1.2.4 Index: squid/configure.in =================================================================== RCS file: /cvsroot/squid-sf//squid/configure.in,v retrieving revision 1.87.2.55 retrieving revision 1.87.2.56 diff -u -r1.87.2.55 -r1.87.2.56 --- squid/configure.in 16 Sep 2006 17:12:31 -0000 1.87.2.55 +++ squid/configure.in 16 Sep 2006 18:59:24 -0000 1.87.2.56 @@ -1,7 +1,7 @@ dnl dnl Configuration input file for Squid dnl -dnl $Id: configure.in,v 1.87.2.55 2006/09/16 17:12:31 serassio Exp $ +dnl $Id: configure.in,v 1.87.2.56 2006/09/16 18:59:24 serassio Exp $ dnl dnl dnl @@ -10,7 +10,7 @@ AM_CONFIG_HEADER(include/autoconf.h) AC_CONFIG_AUX_DIR(cfgaux) AM_INIT_AUTOMAKE -AC_REVISION($Revision: 1.87.2.55 $)dnl +AC_REVISION($Revision: 1.87.2.56 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AM_MAINTAINER_MODE @@ -440,7 +440,7 @@ coss) if test -z "$with_aio"; then case "$host_os" in - mingw|mingw32|cygwin|cygwin32) + mingw|mingw32) USE_AIO_WIN32=1 echo "coss store used, Windows overlapped I/O support automatically enabled" ;; Index: squid/src/fs/coss/aio_win32.h =================================================================== RCS file: /cvsroot/squid-sf//squid/src/fs/coss/Attic/aio_win32.h,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -r1.1.2.3 -r1.1.2.4 --- squid/src/fs/coss/aio_win32.h 16 Sep 2006 10:31:42 -0000 1.1.2.3 +++ squid/src/fs/coss/aio_win32.h 16 Sep 2006 18:59:25 -0000 1.1.2.4 @@ -1,5 +1,5 @@ /* - * $Id: aio_win32.h,v 1.1.2.3 2006/09/16 10:31:42 serassio Exp $ + * $Id: aio_win32.h,v 1.1.2.4 2006/09/16 18:59:25 serassio Exp $ * * aio_xxx() POSIX emulation on WIN32 for COSS * AUTHOR: Guido Serassio @@ -32,10 +32,6 @@ * */ -#ifdef _SQUID_CYGWIN_ -#include -#endif - union sigval { int sival_int; /* integer value */ void *sival_ptr; /* pointer value */