This patch is generated from the nt branch of HEAD in squid
Sat Aug 16 00:23:19 2008 GMT
See http://devel.squid-cache.org/
Index: squid/.cvsignore
diff -u squid/.cvsignore:1.2 squid/.cvsignore:1.2.12.2
--- squid/.cvsignore:1.2 Fri Oct 11 16:49:31 2002
+++ squid/.cvsignore Sat Sep 16 12:31:36 2006
@@ -1,8 +1,8 @@
-.cvsignore
+Makefile
Makefile.in
aclocal
cfgaux
aclocal.m4
configure
-merge.log
-autom4te.cache
+config.*
+autom4te*
Index: squid/Makefile.am
diff -u squid/Makefile.am:1.21 squid/Makefile.am:1.16.8.7
--- squid/Makefile.am:1.21 Fri Jan 25 15:51:46 2008
+++ squid/Makefile.am Sat Feb 23 09:21:56 2008
@@ -4,7 +4,7 @@
#
AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects 1.5
-DIST_SUBDIRS = lib snmplib scripts src icons errors contrib doc helpers tools
+DIST_SUBDIRS = lib snmplib scripts src icons errors contrib doc helpers tools port
SUBDIRS = lib @makesnmplib@ scripts src icons errors doc helpers tools
DISTCLEANFILES = include/stamp-h include/stamp-h[0-9]*
Index: squid/configure.in
diff -u squid/configure.in:1.197 squid/configure.in:1.87.2.90
--- squid/configure.in:1.197 Fri Jul 11 15:53:18 2008
+++ squid/configure.in Sat Jul 12 00:08:08 2008
@@ -5,7 +5,7 @@
dnl
dnl
dnl
-AC_INIT(Squid Web Proxy, 2.HEAD-CVS, http://www.squid-cache.org/bugs/, squid)
+AC_INIT(Squid Web Proxy, 2.HEAD-NT-CVS, http://www.squid-cache.org/bugs/, squid)
AC_PREREQ(2.52)
AM_CONFIG_HEADER(include/autoconf.h)
AC_CONFIG_AUX_DIR(cfgaux)
@@ -399,6 +399,7 @@
echo "Store modules built: $STORE_MODULES"
NEED_DISKD=0
USE_AIOPS_WIN32=0
+USE_AIO_WIN32=0
NEED_COSSDUMP=0
STORE_OBJS="fs/lib`echo $STORE_MODULES|sed -e 's% %.a fs/lib%g'`.a"
AC_SUBST(STORE_OBJS)
@@ -428,8 +429,16 @@
coss)
NEED_COSSDUMP=1
if test -z "$with_aio"; then
+ case "$host_os" in
+ mingw|mingw32)
+ USE_AIO_WIN32=1
+ echo "coss store used, Windows overlapped I/O support automatically enabled"
+ ;;
+ *)
echo "coss store used, aio support automatically enabled"
- with_aio=yes
+ with_aio=yes
+ ;;
+ esac
fi
;;
esac
@@ -437,6 +446,7 @@
AC_SUBST(STORE_MODULES)
AM_CONDITIONAL([NEED_DISKD], [test "$NEED_DISKD" = 1])
AM_CONDITIONAL([USE_AIOPS_WIN32], [test "$USE_AIOPS_WIN32" = 1])
+AM_CONDITIONAL([USE_AIO_WIN32], [test "$USE_AIO_WIN32" = 1])
AM_CONDITIONAL([NEED_COSSDUMP], [test "$NEED_COSSDUMP" = 1])
dnl --enable-heap-replacement compatibility option
@@ -3326,4 +3336,6 @@
helpers/external_acl/unix_group/Makefile \
helpers/external_acl/wbinfo_group/Makefile \
tools/Makefile \
+ port/Makefile \
+ port/win32/Makefile \
])
Index: squid/contrib/.cvsignore
diff -u squid/contrib/.cvsignore:1.3 squid/contrib/.cvsignore:1.3.132.1
--- squid/contrib/.cvsignore:1.3 Thu Oct 11 05:23:40 2001
+++ squid/contrib/.cvsignore Sun Jun 18 03:44:58 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/doc/.cvsignore
diff -u squid/doc/.cvsignore:1.3 squid/doc/.cvsignore:1.3.78.2
--- squid/doc/.cvsignore:1.3 Fri Jan 25 08:25:02 2002
+++ squid/doc/.cvsignore Sun Jun 18 03:44:58 2006
@@ -1,2 +1,4 @@
-.cvsignore
+Makefile
Makefile.in
+cachemgr.cgi.8
+squid.8
Index: squid/doc/release-notes/release-2.6.sgml
diff -u squid/doc/release-notes/release-2.6.sgml:1.68 squid/doc/release-notes/release-2.6.sgml:1.2.4.57
--- squid/doc/release-notes/release-2.6.sgml:1.68 Fri Jun 27 14:32:02 2008
+++ squid/doc/release-notes/release-2.6.sgml Sat Jun 28 01:52:00 2008
@@ -195,6 +195,37 @@
Usage
+The "squid -?" command gives the following output:
+
+Usage: squid [-hirvzCDFRYX] [-d level] [-s | -l facility] [-f config-file] [-u port] [-k signal] [-n name] [-O command-line]
+ -d level Write debugging to stderr also.
+ -f file Use given config-file instead of
+ c:/squid/etc/squid.conf
+ -h Print help message.
+ -i Installs as a Windows Service (see -n option).
+ -k reconfigure|rotate|shutdown|interrupt|kill|debug|check|parse
+ Parse configuration file, then send signal to
+ running copy (except -k parse) and exit.
+ -n name Specify Windows Service name to use for service operations
+ default is: Squid.
+ -r Removes a Windows Service (see -n option).
+ -s | -l facility
+ Enable logging to syslog.
+ -u port Specify ICP port number (default: 3130), disable with 0.
+ -v Print version.
+ -z Create swap directories
+ -C Do not catch fatal signals.
+ -D Disable initial DNS tests.
+ -F Don't serve any requests until store is rebuilt.
+ -N No daemon mode.
+ -O "options"
+ Set Windows Service Command line options in Registry.
+ -R Do not set REUSEADDR on port.
+ -S Double-check swap during rebuild.
+ -X Force full debugging.
+ -Y Only return UDP_HIT or UDP_MISS_NOFETCH during fast reload.
+
+
Some new command line options was added for the Windows service support:
The service installation is made with -i command line switch, it's possible to use -f switch at
@@ -260,6 +291,20 @@
+Key changes from SquidNT 2.5
+
+- Changed the default Windows service name from "SquidNT" to "Squid"
+
- Changed the names of the following Windows helpers:
+
+
- "win32_auth.exe" to "mswin_auth.exe"
+
- "win32_ntlm_auth.exe" to "mswin_ntlm_auth.exe"
+
- "win32_check_group.exe" to "mswin_check_lm_group.exe"
+
+
+
+
+
+
Compatibility Notes
- It's recommended to use '/' char in Squid paths instead of '\'
@@ -318,7 +363,7 @@
- Unsupported configure options:
-
- --enable-coss-aio-ops: On Windows Posix AIO is not available
+
- --enable-coss-aio-ops: On Cygwin Posix AIO is not available
- --with-large-files: No suitable build environment is available on both Cygwin and MinGW, but --enable-large-cache-files works fine
- Recommended configure minimal options for Windows:
Index: squid/errors/.cvsignore
diff -u squid/errors/.cvsignore:1.3 squid/errors/.cvsignore:1.3.132.1
--- squid/errors/.cvsignore:1.3 Thu Oct 11 05:23:40 2001
+++ squid/errors/.cvsignore Sun Jun 18 03:44:58 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/helpers/.cvsignore
diff -u squid/helpers/.cvsignore:1.1 squid/helpers/.cvsignore:1.1.66.1
--- squid/helpers/.cvsignore:1.1 Sat Jul 6 13:00:23 2002
+++ squid/helpers/.cvsignore Sun Jun 18 03:44:58 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/.cvsignore
diff -u squid/helpers/basic_auth/.cvsignore:1.1 squid/helpers/basic_auth/.cvsignore:1.1.66.1
--- squid/helpers/basic_auth/.cvsignore:1.1 Sat Jul 6 13:00:23 2002
+++ squid/helpers/basic_auth/.cvsignore Sun Jun 18 03:44:58 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/LDAP/.cvsignore
diff -u squid/helpers/basic_auth/LDAP/.cvsignore:1.1 squid/helpers/basic_auth/LDAP/.cvsignore:1.1.66.1
--- squid/helpers/basic_auth/LDAP/.cvsignore:1.1 Sat Jul 6 13:00:23 2002
+++ squid/helpers/basic_auth/LDAP/.cvsignore Sun Jun 18 03:44:58 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/MSNT/.cvsignore
diff -u squid/helpers/basic_auth/MSNT/.cvsignore:1.1 squid/helpers/basic_auth/MSNT/.cvsignore:1.1.66.1
--- squid/helpers/basic_auth/MSNT/.cvsignore:1.1 Sat Jul 6 13:00:23 2002
+++ squid/helpers/basic_auth/MSNT/.cvsignore Sun Jun 18 03:44:59 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/NCSA/.cvsignore
diff -u squid/helpers/basic_auth/NCSA/.cvsignore:1.1 squid/helpers/basic_auth/NCSA/.cvsignore:1.1.66.1
--- squid/helpers/basic_auth/NCSA/.cvsignore:1.1 Sat Jul 6 13:00:23 2002
+++ squid/helpers/basic_auth/NCSA/.cvsignore Sun Jun 18 03:44:59 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/PAM/.cvsignore
diff -u squid/helpers/basic_auth/PAM/.cvsignore:1.1 squid/helpers/basic_auth/PAM/.cvsignore:1.1.66.1
--- squid/helpers/basic_auth/PAM/.cvsignore:1.1 Sat Jul 6 13:00:23 2002
+++ squid/helpers/basic_auth/PAM/.cvsignore Sun Jun 18 03:44:59 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/SASL/.cvsignore
diff -u squid/helpers/basic_auth/SASL/.cvsignore:1.1 squid/helpers/basic_auth/SASL/.cvsignore:1.1.66.1
--- squid/helpers/basic_auth/SASL/.cvsignore:1.1 Sat Jul 6 13:00:23 2002
+++ squid/helpers/basic_auth/SASL/.cvsignore Sun Jun 18 03:44:59 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/SMB/.cvsignore
diff -u squid/helpers/basic_auth/SMB/.cvsignore:1.1 squid/helpers/basic_auth/SMB/.cvsignore:1.1.66.1
--- squid/helpers/basic_auth/SMB/.cvsignore:1.1 Sat Jul 6 13:00:24 2002
+++ squid/helpers/basic_auth/SMB/.cvsignore Sun Jun 18 03:44:59 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/YP/.cvsignore
diff -u squid/helpers/basic_auth/YP/.cvsignore:1.1 squid/helpers/basic_auth/YP/.cvsignore:1.1.66.1
--- squid/helpers/basic_auth/YP/.cvsignore:1.1 Sat Jul 6 13:00:24 2002
+++ squid/helpers/basic_auth/YP/.cvsignore Sun Jun 18 03:44:59 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/getpwnam/.cvsignore
diff -u squid/helpers/basic_auth/getpwnam/.cvsignore:1.1 squid/helpers/basic_auth/getpwnam/.cvsignore:1.1.66.1
--- squid/helpers/basic_auth/getpwnam/.cvsignore:1.1 Sat Jul 6 13:00:24 2002
+++ squid/helpers/basic_auth/getpwnam/.cvsignore Sun Jun 18 03:45:00 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/multi-domain-NTLM/.cvsignore
diff -u squid/helpers/basic_auth/multi-domain-NTLM/.cvsignore:1.1 squid/helpers/basic_auth/multi-domain-NTLM/.cvsignore:1.1.66.1
--- squid/helpers/basic_auth/multi-domain-NTLM/.cvsignore:1.1 Sat Jul 6 13:00:25 2002
+++ squid/helpers/basic_auth/multi-domain-NTLM/.cvsignore Sun Jun 18 03:45:00 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/helpers/basic_auth/winbind/.cvsignore
diff -u squid/helpers/basic_auth/winbind/.cvsignore:1.1 squid/helpers/basic_auth/winbind/.cvsignore:removed
--- squid/helpers/basic_auth/winbind/.cvsignore:1.1 Sat Jul 6 13:00:25 2002
+++ squid/helpers/basic_auth/winbind/.cvsignore Fri Aug 15 17:23:31 2008
@@ -1,2 +0,0 @@
-.cvsignore
-Makefile.in
Index: squid/helpers/digest_auth/.cvsignore
diff -u squid/helpers/digest_auth/.cvsignore:1.1 squid/helpers/digest_auth/.cvsignore:1.1.66.1
--- squid/helpers/digest_auth/.cvsignore:1.1 Sat Jul 6 13:00:25 2002
+++ squid/helpers/digest_auth/.cvsignore Sun Jun 18 03:45:00 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/helpers/digest_auth/ldap/.cvsignore
diff -u squid/helpers/digest_auth/ldap/.cvsignore:1.1 squid/helpers/digest_auth/ldap/.cvsignore:1.1.4.3
--- squid/helpers/digest_auth/ldap/.cvsignore:1.1 Sat May 20 13:32:12 2006
+++ squid/helpers/digest_auth/ldap/.cvsignore Sun Jun 18 03:45:00 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/digest_auth/password/.cvsignore
diff -u squid/helpers/digest_auth/password/.cvsignore:1.1 squid/helpers/digest_auth/password/.cvsignore:1.1.66.1
--- squid/helpers/digest_auth/password/.cvsignore:1.1 Sat Jul 6 13:00:25 2002
+++ squid/helpers/digest_auth/password/.cvsignore Sun Jun 18 03:45:01 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/external_acl/.cvsignore
diff -u squid/helpers/external_acl/.cvsignore:1.1 squid/helpers/external_acl/.cvsignore:1.1.66.1
--- squid/helpers/external_acl/.cvsignore:1.1 Sat Jul 6 13:00:25 2002
+++ squid/helpers/external_acl/.cvsignore Sun Jun 18 03:45:01 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/helpers/external_acl/ip_user/.cvsignore
diff -u squid/helpers/external_acl/ip_user/.cvsignore:1.1 squid/helpers/external_acl/ip_user/.cvsignore:1.1.66.1
--- squid/helpers/external_acl/ip_user/.cvsignore:1.1 Sat Jul 6 13:00:25 2002
+++ squid/helpers/external_acl/ip_user/.cvsignore Sun Jun 18 03:45:01 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/external_acl/ip_user/dict.c
diff -u squid/helpers/external_acl/ip_user/dict.c:1.1 squid/helpers/external_acl/ip_user/dict.c:1.1.66.1
--- squid/helpers/external_acl/ip_user/dict.c:1.1 Sun Jun 23 07:58:50 2002
+++ squid/helpers/external_acl/ip_user/dict.c Tue May 16 14:05:57 2006
@@ -23,9 +23,13 @@
#include
#include
#include
+#ifdef _WIN32
+#include
+#else
#include
#include
#include
+#endif
#include "ip_user.h"
@@ -129,9 +133,11 @@
if ((strchr (current_entry->username, '@')) == NULL) {
if ((match_user (current_entry->username, username)) == 1)
return 1;
+#ifndef _WIN32
} else {
if ((match_group (current_entry->username, username)) == 1)
return 1;
+#endif
}
}
current_entry = current_entry->next_entry;
Index: squid/helpers/external_acl/ip_user/main.c
diff -u squid/helpers/external_acl/ip_user/main.c:1.3 squid/helpers/external_acl/ip_user/main.c:1.2.56.2
--- squid/helpers/external_acl/ip_user/main.c:1.3 Mon May 22 13:51:15 2006
+++ squid/helpers/external_acl/ip_user/main.c Mon May 22 14:02:47 2006
@@ -23,7 +23,11 @@
#include
#include
+#ifdef _WIN32
+#include
+#else
#include
+#endif
#include
#include "ip_user.h"
Index: squid/helpers/external_acl/ip_user/match.c
diff -u squid/helpers/external_acl/ip_user/match.c:1.1 squid/helpers/external_acl/ip_user/match.c:1.1.66.1
--- squid/helpers/external_acl/ip_user/match.c:1.1 Sun Jun 23 07:58:50 2002
+++ squid/helpers/external_acl/ip_user/match.c Tue May 16 14:05:57 2006
@@ -21,7 +21,9 @@
#include
#include
#include
+#ifndef _WIN32
#include
+#endif
int
@@ -37,6 +39,7 @@
return 0;
} /* match_user */
+#ifndef _WIN32
int
match_group (char *dict_group, char *username)
{
@@ -59,3 +62,4 @@
return 0;
} /* match_group */
+#endif
Index: squid/helpers/external_acl/ldap_group/.cvsignore
diff -u squid/helpers/external_acl/ldap_group/.cvsignore:1.1 squid/helpers/external_acl/ldap_group/.cvsignore:1.1.66.1
--- squid/helpers/external_acl/ldap_group/.cvsignore:1.1 Sat Jul 6 13:00:26 2002
+++ squid/helpers/external_acl/ldap_group/.cvsignore Sun Jun 18 03:45:01 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/external_acl/session/.cvsignore
diff -u squid/helpers/external_acl/session/.cvsignore:1.1 squid/helpers/external_acl/session/.cvsignore:1.1.2.3
--- squid/helpers/external_acl/session/.cvsignore:1.1 Tue May 23 15:50:16 2006
+++ squid/helpers/external_acl/session/.cvsignore Sun Jun 18 03:45:02 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/external_acl/unix_group/.cvsignore
diff -u squid/helpers/external_acl/unix_group/.cvsignore:1.1 squid/helpers/external_acl/unix_group/.cvsignore:1.1.66.1
--- squid/helpers/external_acl/unix_group/.cvsignore:1.1 Sat Jul 6 13:00:26 2002
+++ squid/helpers/external_acl/unix_group/.cvsignore Sun Jun 18 03:45:02 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/external_acl/wbinfo_group/.cvsignore
diff -u squid/helpers/external_acl/wbinfo_group/.cvsignore:1.1 squid/helpers/external_acl/wbinfo_group/.cvsignore:1.1.66.1
--- squid/helpers/external_acl/wbinfo_group/.cvsignore:1.1 Sat Jul 6 13:00:26 2002
+++ squid/helpers/external_acl/wbinfo_group/.cvsignore Sun Jun 18 03:45:02 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/helpers/external_acl/winbind_group/.cvsignore
diff -u squid/helpers/external_acl/winbind_group/.cvsignore:1.1 squid/helpers/external_acl/winbind_group/.cvsignore:removed
--- squid/helpers/external_acl/winbind_group/.cvsignore:1.1 Wed Jul 17 08:32:34 2002
+++ squid/helpers/external_acl/winbind_group/.cvsignore Fri Aug 15 17:23:32 2008
@@ -1,2 +0,0 @@
-.cvsignore
-Makefile.in
Index: squid/helpers/negotiate_auth/.cvsignore
diff -u squid/helpers/negotiate_auth/.cvsignore:1.2 squid/helpers/negotiate_auth/.cvsignore:1.1.10.2
--- squid/helpers/negotiate_auth/.cvsignore:1.2 Tue May 23 15:50:16 2006
+++ squid/helpers/negotiate_auth/.cvsignore Sun Jun 18 03:45:02 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/helpers/ntlm_auth/.cvsignore
diff -u squid/helpers/ntlm_auth/.cvsignore:1.1 squid/helpers/ntlm_auth/.cvsignore:1.1.66.1
--- squid/helpers/ntlm_auth/.cvsignore:1.1 Sat Jul 6 13:00:26 2002
+++ squid/helpers/ntlm_auth/.cvsignore Sun Jun 18 03:45:02 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/helpers/ntlm_auth/SMB/.cvsignore
diff -u squid/helpers/ntlm_auth/SMB/.cvsignore:1.1 squid/helpers/ntlm_auth/SMB/.cvsignore:1.1.66.1
--- squid/helpers/ntlm_auth/SMB/.cvsignore:1.1 Sat Jul 6 13:00:27 2002
+++ squid/helpers/ntlm_auth/SMB/.cvsignore Sun Jun 18 03:45:03 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/ntlm_auth/SMB/smbval/.cvsignore
diff -u squid/helpers/ntlm_auth/SMB/smbval/.cvsignore:1.1 squid/helpers/ntlm_auth/SMB/smbval/.cvsignore:1.1.66.1
--- squid/helpers/ntlm_auth/SMB/smbval/.cvsignore:1.1 Sat Jul 6 13:00:27 2002
+++ squid/helpers/ntlm_auth/SMB/smbval/.cvsignore Sun Jun 18 03:45:03 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/ntlm_auth/fakeauth/.cvsignore
diff -u squid/helpers/ntlm_auth/fakeauth/.cvsignore:1.1 squid/helpers/ntlm_auth/fakeauth/.cvsignore:1.1.66.1
--- squid/helpers/ntlm_auth/fakeauth/.cvsignore:1.1 Sat Jul 6 13:00:27 2002
+++ squid/helpers/ntlm_auth/fakeauth/.cvsignore Sun Jun 18 03:45:03 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/helpers/ntlm_auth/no_check/.cvsignore
diff -u squid/helpers/ntlm_auth/no_check/.cvsignore:1.1 squid/helpers/ntlm_auth/no_check/.cvsignore:1.1.66.1
--- squid/helpers/ntlm_auth/no_check/.cvsignore:1.1 Sat Jul 6 13:00:27 2002
+++ squid/helpers/ntlm_auth/no_check/.cvsignore Sun Jun 18 03:45:04 2006
@@ -1,2 +1,2 @@
-.cvsignore
+Makefile
Makefile.in
Index: squid/helpers/ntlm_auth/winbind/.cvsignore
diff -u squid/helpers/ntlm_auth/winbind/.cvsignore:1.1 squid/helpers/ntlm_auth/winbind/.cvsignore:removed
--- squid/helpers/ntlm_auth/winbind/.cvsignore:1.1 Sat Jul 6 13:00:27 2002
+++ squid/helpers/ntlm_auth/winbind/.cvsignore Fri Aug 15 17:23:32 2008
@@ -1,2 +0,0 @@
-.cvsignore
-Makefile.in
Index: squid/helpers/ntlm_auth/winbind/patches/.cvsignore
diff -u squid/helpers/ntlm_auth/winbind/patches/.cvsignore:1.1 squid/helpers/ntlm_auth/winbind/patches/.cvsignore:removed
--- squid/helpers/ntlm_auth/winbind/patches/.cvsignore:1.1 Sat Jul 6 13:00:27 2002
+++ squid/helpers/ntlm_auth/winbind/patches/.cvsignore Fri Aug 15 17:23:32 2008
@@ -1,2 +0,0 @@
-.cvsignore
-Makefile.in
Index: squid/icons/.cvsignore
diff -u squid/icons/.cvsignore:1.3 squid/icons/.cvsignore:1.3.132.1
--- squid/icons/.cvsignore:1.3 Thu Oct 11 05:23:40 2001
+++ squid/icons/.cvsignore Sun Jun 18 05:28:16 2006
@@ -1,4 +1,4 @@
-.cvsignore
+Makefile
Makefile.in
anthony-binhex.gif
anthony-bomb.gif
Index: squid/include/.cvsignore
diff -u squid/include/.cvsignore:1.3 squid/include/.cvsignore:1.3.132.1
--- squid/include/.cvsignore:1.3 Fri Oct 12 16:38:44 2001
+++ squid/include/.cvsignore Sun Jun 18 05:28:16 2006
@@ -1,4 +1,6 @@
-.cvsignore
+Makefile
Makefile.in
+autoconf.h
autoconf.h.in
stamp-h.in
+stamp-h1
Index: squid/lib/.cvsignore
diff -u squid/lib/.cvsignore:1.3 squid/lib/.cvsignore:1.3.132.1
--- squid/lib/.cvsignore:1.3 Thu Oct 11 05:23:40 2001
+++ squid/lib/.cvsignore Sun Jun 18 03:45:05 2006
@@ -1,2 +1,3 @@
-.cvsignore
+.deps
+Makefile
Makefile.in
Index: squid/port/.cvsignore
diff -u /dev/null squid/port/.cvsignore:1.1.14.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/.cvsignore Sun Jun 18 05:28:16 2006
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in
Index: squid/port/Makefile.am
diff -u /dev/null squid/port/Makefile.am:1.1.14.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/Makefile.am Tue May 16 14:05:58 2006
@@ -0,0 +1,6 @@
+## Process this file with automake to produce Makefile.in
+#
+# $Id$
+#
+
+SUBDIRS = win32
Index: squid/port/win32/.cvsignore
diff -u /dev/null squid/port/win32/.cvsignore:1.1.32.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/.cvsignore Sun Jun 18 05:21:46 2006
@@ -0,0 +1,5 @@
+Debug
+Release
+Makefile
+Makefile.in
+squid_version.mak
\ No newline at end of file
Index: squid/port/win32/Build.dsp
diff -u /dev/null squid/port/win32/Build.dsp:1.1.12.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/Build.dsp Tue May 16 14:05:58 2006
@@ -0,0 +1,63 @@
+# Microsoft Developer Studio Project File - Name="Build" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Generic Project" 0x010a
+
+CFG=Build - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "Build.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "Build.mak" CFG="Build - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "Build - Win32 Release" (based on "Win32 (x86) Generic Project")
+!MESSAGE "Build - Win32 Debug" (based on "Win32 (x86) Generic Project")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+MTL=midl.exe
+
+!IF "$(CFG)" == "Build - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Target_Dir ""
+
+!ELSEIF "$(CFG)" == "Build - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Build___Win32_Debug"
+# PROP BASE Intermediate_Dir "Build___Win32_Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Target_Dir ""
+
+!ENDIF
+
+# Begin Target
+
+# Name "Build - Win32 Release"
+# Name "Build - Win32 Debug"
+# End Target
+# End Project
Index: squid/port/win32/Makefile.am
diff -u /dev/null squid/port/win32/Makefile.am:1.1.14.17
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/Makefile.am Sat May 31 03:15:29 2008
@@ -0,0 +1,72 @@
+## Process this file with automake to produce Makefile.in
+#
+# $Id$
+#
+
+EXTRA_DIST = \
+ auth_modules.cmd \
+ Build.dsp \
+ cf_data.dsp \
+ default_config_file.cmd \
+ digest_edir_auth/digest_edir_auth.dsp \
+ digest_ldap_auth/digest_ldap_auth.dsp \
+ digest_pw_auth/digest_pw_auth.dsp \
+ doc.dsp \
+ icons.cmd \
+ icons.dsp \
+ install.dsp \
+ modules.dsp \
+ PerlPreprocessing.dsp \
+ repl_modules.cmd \
+ squid.dsw \
+ squid_conf_default.dsp \
+ squid_mswin.mak \
+ squid_version.cmd \
+ store_modules.cmd \
+ update.cmd \
+ cachemgr/cachemgr.dsp \
+ cf_gen/cf_gen.dsp \
+ dnsserver/dnsserver.dsp \
+ fake_auth/fake_auth.dsp \
+ include/autoconf.h \
+ include/crypt.h \
+ include/getopt.h \
+ include/dirent.h \
+ ip_user_check/ip_user_check.dsp \
+ LDAP_auth/LDAP_auth.dsp \
+ LDAP_group/LDAP_group.dsp \
+ libaufs/libaufs.dsp \
+ libbasic/libbasic.dsp \
+ libcoss/libcoss.dsp \
+ libdigest/libdigest.dsp \
+ libgnuregex/libgnuregex.dsp \
+ libheap/libheap.dsp \
+ liblru/liblru.dsp \
+ libmiscutil/libmiscutil.dsp \
+ libnegotiate/libnegotiate.dsp \
+ libntlm/libntlm.dsp \
+ libntlmauth/libntlmauth.dsp \
+ libnull/libnull.dsp \
+ libsnmp/libsnmp.dsp \
+ libsspwin32/libsspwin32.dsp \
+ libufs/libufs.dsp \
+ logfiled/logfiled.dsp \
+ mswin_check_ad_group/mswin_check_ad_group.dsp \
+ NCSA_auth/NCSA_auth.dsp \
+ negotiate_auth/negotiate_auth.dsp \
+ nt_auth/nt_auth.dsp \
+ ntlm_win32_auth/ntlm_win32_auth.dsp \
+ pinger/pinger.dsp \
+ squid/buildcount.dsm \
+ squid/buildver.h \
+ squid/resource.h \
+ squid/squid.dsp \
+ squid/squid.mak \
+ squid/squid.rc \
+ squid/squid.rc2 \
+ pinger/pinger.dsp \
+ squid_radius_auth/squid_radius_auth.dsp \
+ squid_session/squid_session.dsp \
+ squidclient/squidclient.dsp \
+ unlinkd/unlinkd.dsp \
+ win32_check_group/win32_check_group.dsp
Index: squid/port/win32/PerlPreprocessing.dsp
diff -u /dev/null squid/port/win32/PerlPreprocessing.dsp:1.1.38.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/PerlPreprocessing.dsp Tue May 16 14:05:58 2006
@@ -0,0 +1,129 @@
+# Microsoft Developer Studio Project File - Name="PerlPreprocessing" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Generic Project" 0x010a
+
+CFG=PerlPreprocessing - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "PerlPreprocessing.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "PerlPreprocessing.mak" CFG="PerlPreprocessing - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "PerlPreprocessing - Win32 Release" (based on "Win32 (x86) Generic Project")
+!MESSAGE "PerlPreprocessing - Win32 Debug" (based on "Win32 (x86) Generic Project")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+MTL=midl.exe
+
+!IF "$(CFG)" == "PerlPreprocessing - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "."
+# PROP Intermediate_Dir "."
+# PROP Target_Dir ""
+
+!ELSEIF "$(CFG)" == "PerlPreprocessing - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "."
+# PROP Intermediate_Dir "."
+# PROP Target_Dir ""
+
+!ENDIF
+
+# Begin Target
+
+# Name "PerlPreprocessing - Win32 Release"
+# Name "PerlPreprocessing - Win32 Debug"
+# Begin Source File
+
+SOURCE=..\..\src\enums.h
+
+!IF "$(CFG)" == "PerlPreprocessing - Win32 Release"
+
+# PROP Intermediate_Dir "."
+# PROP Ignore_Default_Tool 1
+# Begin Custom Build
+InputDir=\WORK\CYGWIN-SVC-2_5\src
+InputPath=..\..\src\enums.h
+
+"$(InputDir)\string_arrays.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ perl $(InputDir)\mk-string-arrays.pl <$(InputPath) >$(InputDir)\string_arrays.c
+
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "PerlPreprocessing - Win32 Debug"
+
+# PROP Intermediate_Dir "."
+# PROP Ignore_Default_Tool 1
+# Begin Custom Build
+InputDir=\WORK\CYGWIN-SVC-2_5\src
+InputPath=..\..\src\enums.h
+
+"$(InputDir)\string_arrays.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ perl $(InputDir)\mk-string-arrays.pl <$(InputPath) >$(InputDir)\string_arrays.c
+
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\globals.h
+
+!IF "$(CFG)" == "PerlPreprocessing - Win32 Release"
+
+# PROP Intermediate_Dir "."
+# PROP Ignore_Default_Tool 1
+# Begin Custom Build
+InputDir=\WORK\CYGWIN-SVC-2_5\src
+InputPath=..\..\src\globals.h
+
+"$(InputDir)\globals.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ perl $(InputDir)\mk-globals-c.pl <$(InputPath) >$(InputDir)\globals.c
+
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "PerlPreprocessing - Win32 Debug"
+
+# PROP Intermediate_Dir "."
+# PROP Ignore_Default_Tool 1
+# Begin Custom Build
+InputDir=\WORK\CYGWIN-SVC-2_5\src
+InputPath=..\..\src\globals.h
+
+"$(InputDir)\globals.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ perl $(InputDir)\mk-globals-c.pl <$(InputPath) >$(InputDir)\globals.c
+
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# End Target
+# End Project
Index: squid/port/win32/auth_modules.cmd
diff -u /dev/null squid/port/win32/auth_modules.cmd:1.1.38.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/auth_modules.cmd Tue May 16 14:05:58 2006
@@ -0,0 +1,16 @@
+@echo off
+if exist %temp%\auth_modules.txt del %temp%\auth_modules.txt
+:loop
+echo %1 >> %temp%\auth_modules.txt
+shift /1
+if NOT "%1"=="" goto :loop
+echo /* automatically generated by %0 %*
+echo * do not edit
+echo */
+echo #include "squid.h"
+for /F %%m in (%temp%\auth_modules.txt) do echo extern AUTHSSETUP authSchemeSetup_%%m;
+echo void authSchemeSetup(void)
+echo {
+for /F %%m in (%temp%\auth_modules.txt) do echo authSchemeAdd("%%m", authSchemeSetup_%%m);
+echo }
+if exist %temp%\auth_modules.txt del %temp%\auth_modules.txt
Index: squid/port/win32/cf_data.dsp
diff -u /dev/null squid/port/win32/cf_data.dsp:1.1.38.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/cf_data.dsp Tue May 16 14:05:58 2006
@@ -0,0 +1,112 @@
+# Microsoft Developer Studio Project File - Name="cf_data" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Generic Project" 0x010a
+
+CFG=cf_data - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "cf_data.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "cf_data.mak" CFG="cf_data - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "cf_data - Win32 Release" (based on "Win32 (x86) Generic Project")
+!MESSAGE "cf_data - Win32 Debug" (based on "Win32 (x86) Generic Project")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+MTL=midl.exe
+
+!IF "$(CFG)" == "cf_data - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "."
+# PROP Intermediate_Dir "."
+# PROP Target_Dir ""
+
+!ELSEIF "$(CFG)" == "cf_data - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "cf_data___Win32_Debug"
+# PROP BASE Intermediate_Dir "cf_data___Win32_Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "."
+# PROP Intermediate_Dir "."
+# PROP Target_Dir ""
+
+!ENDIF
+
+# Begin Target
+
+# Name "cf_data - Win32 Release"
+# Name "cf_data - Win32 Debug"
+# Begin Source File
+
+SOURCE=..\..\src\cf.data.pre
+
+!IF "$(CFG)" == "cf_data - Win32 Release"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__CF_DA="squid_mswin.mak"
+# Begin Custom Build
+InputDir=\WORK\CYGWIN-SVC-2_5\src
+ProjDir=.
+InputPath=..\..\src\cf.data.pre
+
+BuildCmds= \
+ nmake /f $(ProjDir)\squid_mswin.mak cf.data \
+ nmake /f $(ProjDir)\squid_mswin.mak cf_gen_defines.h \
+
+
+"$(InputDir)\cf.data" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(InputDir)\cf_gen_defines.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "cf_data - Win32 Debug"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__CF_DA="squid_mswin.mak"
+# Begin Custom Build
+InputDir=\WORK\CYGWIN-SVC-2_5\src
+ProjDir=.
+InputPath=..\..\src\cf.data.pre
+
+BuildCmds= \
+ nmake /f $(ProjDir)\squid_mswin.mak cf.data \
+ nmake /f $(ProjDir)\squid_mswin.mak cf_gen_defines.h \
+
+
+"$(InputDir)\cf.data" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(InputDir)\cf_gen_defines.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# End Target
+# End Project
Index: squid/port/win32/default_config_file.cmd
diff -u /dev/null squid/port/win32/default_config_file.cmd:1.1.36.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/default_config_file.cmd Fri Jun 2 04:57:46 2006
@@ -0,0 +1,9 @@
+@echo off
+echo /* automatically generated by %0
+echo * do not edit manually
+echo */
+echo #define DEFAULT_CONFIG_FILE "%1"
+echo #define DEFAULT_SQUID_ERROR_DIR "%2"
+echo #define DEFAULT_CACHEMGR_CONFIG "%3"
+echo /* Info of package */
+FOR /F "tokens=1,2 delims== " %%a in (squid_version.mak) do echo #define %%a "%%b"
Index: squid/port/win32/doc.dsp
diff -u /dev/null squid/port/win32/doc.dsp:1.1.10.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/doc.dsp Fri Jun 2 04:57:46 2006
@@ -0,0 +1,133 @@
+# Microsoft Developer Studio Project File - Name="doc" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Generic Project" 0x010a
+
+CFG=doc - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "doc.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "doc.mak" CFG="doc - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "doc - Win32 Release" (based on "Win32 (x86) Generic Project")
+!MESSAGE "doc - Win32 Debug" (based on "Win32 (x86) Generic Project")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+MTL=midl.exe
+
+!IF "$(CFG)" == "doc - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "doc___Win32_Release"
+# PROP BASE Intermediate_Dir "doc___Win32_Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "doc___Win32_Release"
+# PROP Intermediate_Dir "doc___Win32_Release"
+# PROP Target_Dir ""
+
+!ELSEIF "$(CFG)" == "doc - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "doc___Win32_Debug"
+# PROP BASE Intermediate_Dir "doc___Win32_Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "doc___Win32_Debug"
+# PROP Intermediate_Dir "doc___Win32_Debug"
+# PROP Target_Dir ""
+
+!ENDIF
+
+# Begin Target
+
+# Name "doc - Win32 Release"
+# Name "doc - Win32 Debug"
+# Begin Source File
+
+SOURCE=..\..\doc\cachemgr.cgi.8.in
+
+!IF "$(CFG)" == "doc - Win32 Release"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__CACHE="squid_mswin.mak" "squid_version.mak"
+# Begin Custom Build
+InputDir=\work\nt-2.6\doc
+ProjDir=.
+InputPath=..\..\doc\cachemgr.cgi.8.in
+
+"$(InputDir)\cachemgr.cgi.8" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak cachemgr.cgi.8
+
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "doc - Win32 Debug"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__CACHE="squid_mswin.mak" "squid_version.mak"
+# Begin Custom Build
+InputDir=\work\nt-2.6\doc
+ProjDir=.
+InputPath=..\..\doc\cachemgr.cgi.8.in
+
+"$(InputDir)\cachemgr.cgi.8" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak cachemgr.cgi.8
+
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\doc\squid.8.in
+
+!IF "$(CFG)" == "doc - Win32 Release"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__SQUID="squid_mswin.mak" "squid_version.mak"
+# Begin Custom Build
+InputDir=\work\nt-2.6\doc
+ProjDir=.
+InputPath=..\..\doc\squid.8.in
+
+"$(InputDir)\squid.8" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak squid.8
+
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "doc - Win32 Debug"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__SQUID="squid_mswin.mak" "squid_version.mak"
+# Begin Custom Build
+InputDir=\work\nt-2.6\doc
+ProjDir=.
+InputPath=..\..\doc\squid.8.in
+
+"$(InputDir)\squid.8" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak squid.8
+
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# End Target
+# End Project
Index: squid/port/win32/icons.cmd
diff -u /dev/null squid/port/win32/icons.cmd:1.1.26.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/icons.cmd Tue May 16 14:05:58 2006
@@ -0,0 +1,4 @@
+@echo off
+cd /D %1
+sh icons.shar
+attrib -r *.gif
Index: squid/port/win32/icons.dsp
diff -u /dev/null squid/port/win32/icons.dsp:1.1.26.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/icons.dsp Tue May 16 14:05:58 2006
@@ -0,0 +1,256 @@
+# Microsoft Developer Studio Project File - Name="icons" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Generic Project" 0x010a
+
+CFG=icons - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "icons.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "icons.mak" CFG="icons - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "icons - Win32 Release" (based on "Win32 (x86) Generic Project")
+!MESSAGE "icons - Win32 Debug" (based on "Win32 (x86) Generic Project")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+MTL=midl.exe
+
+!IF "$(CFG)" == "icons - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "..\..\icons"
+# PROP Intermediate_Dir "."
+# PROP Target_Dir ""
+
+!ELSEIF "$(CFG)" == "icons - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "..\..\icons"
+# PROP Intermediate_Dir "."
+# PROP Target_Dir ""
+
+!ENDIF
+
+# Begin Target
+
+# Name "icons - Win32 Release"
+# Name "icons - Win32 Debug"
+# Begin Source File
+
+SOURCE=..\..\icons\icons.shar
+
+!IF "$(CFG)" == "icons - Win32 Release"
+
+# PROP Intermediate_Dir "."
+# Begin Custom Build
+OutDir=.\..\..\icons
+ProjDir=.
+InputPath=..\..\icons\icons.shar
+
+BuildCmds= \
+ nmake /f $(ProjDir)\squid_mswin.mak icons
+
+"$(OutDir)\anthony-binhex.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-bomb.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-box.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-box2.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-c.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-compressed.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-dir.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-dirup.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-dvi.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-f.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-image.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-image2.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-layout.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-link.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-movie.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-pdf.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-portal.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-ps.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-quill.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-script.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-sound.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-tar.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-tex.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-text.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-unknown.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-xbm.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-xpm.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "icons - Win32 Debug"
+
+# PROP Intermediate_Dir "."
+# Begin Custom Build
+OutDir=.\..\..\icons
+ProjDir=.
+InputPath=..\..\icons\icons.shar
+
+BuildCmds= \
+ nmake /f $(ProjDir)\squid_mswin.mak icons
+
+"$(OutDir)\anthony-binhex.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-bomb.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-box.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-box2.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-c.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-compressed.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-dir.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-dirup.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-dvi.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-f.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-image.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-image2.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-layout.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-link.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-movie.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-pdf.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-portal.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-ps.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-quill.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-script.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-sound.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-tar.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-tex.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-text.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-unknown.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-xbm.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\anthony-xpm.gif" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# End Target
+# End Project
Index: squid/port/win32/install.dsp
diff -u /dev/null squid/port/win32/install.dsp:1.1.32.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/install.dsp Tue May 16 14:05:58 2006
@@ -0,0 +1,94 @@
+# Microsoft Developer Studio Project File - Name="install" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Generic Project" 0x010a
+
+CFG=install - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "install.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "install.mak" CFG="install - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "install - Win32 Release" (based on "Win32 (x86) Generic Project")
+!MESSAGE "install - Win32 Debug" (based on "Win32 (x86) Generic Project")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+MTL=midl.exe
+
+!IF "$(CFG)" == "install - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Target_Dir ""
+
+!ELSEIF "$(CFG)" == "install - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Target_Dir ""
+
+!ENDIF
+
+# Begin Target
+
+# Name "install - Win32 Release"
+# Name "install - Win32 Debug"
+# Begin Source File
+
+SOURCE=.\update.cmd
+
+!IF "$(CFG)" == "install - Win32 Release"
+
+# PROP Ignore_Default_Tool 1
+# Begin Custom Build
+ProjDir=.
+InputPath=.\update.cmd
+
+"dummy.file" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(ProjDir)\update.cmd release c:\squid
+
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "install - Win32 Debug"
+
+# PROP Ignore_Default_Tool 1
+# Begin Custom Build
+ProjDir=.
+InputPath=.\update.cmd
+
+"dummy.file" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(ProjDir)\update.cmd debug c:\squid
+
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# End Target
+# End Project
Index: squid/port/win32/modules.dsp
diff -u /dev/null squid/port/win32/modules.dsp:1.1.38.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/modules.dsp Fri Jun 2 04:57:46 2006
@@ -0,0 +1,240 @@
+# Microsoft Developer Studio Project File - Name="modules" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Generic Project" 0x010a
+
+CFG=modules - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "modules.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "modules.mak" CFG="modules - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "modules - Win32 Release" (based on "Win32 (x86) Generic Project")
+!MESSAGE "modules - Win32 Debug" (based on "Win32 (x86) Generic Project")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+MTL=midl.exe
+
+!IF "$(CFG)" == "modules - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "..\..\src"
+# PROP Intermediate_Dir "."
+# PROP Target_Dir ""
+
+!ELSEIF "$(CFG)" == "modules - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "modules___Win32_Debug"
+# PROP BASE Intermediate_Dir "modules___Win32_Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "..\..\src"
+# PROP Intermediate_Dir "."
+# PROP Target_Dir ""
+
+!ENDIF
+
+# Begin Target
+
+# Name "modules - Win32 Release"
+# Name "modules - Win32 Debug"
+# Begin Source File
+
+SOURCE=.\auth_modules.cmd
+
+!IF "$(CFG)" == "modules - Win32 Release"
+
+# PROP Intermediate_Dir "."
+# PROP Ignore_Default_Tool 1
+USERDEP__AUTH_="squid_version.mak" "squid_mswin.mak"
+# Begin Custom Build
+OutDir=.\..\..\src
+ProjDir=.
+InputPath=.\auth_modules.cmd
+
+"$(OutDir)\auth_modules.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak auth_modules.c
+
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "modules - Win32 Debug"
+
+# PROP Intermediate_Dir "."
+# PROP Ignore_Default_Tool 1
+USERDEP__AUTH_="squid_version.mak" "squid_mswin.mak"
+# Begin Custom Build
+OutDir=.\..\..\src
+ProjDir=.
+InputPath=.\auth_modules.cmd
+
+"$(OutDir)\auth_modules.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak auth_modules.c
+
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\default_config_file.cmd
+
+!IF "$(CFG)" == "modules - Win32 Release"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__DEFAU="squid_version.mak" "squid_mswin.mak"
+# Begin Custom Build
+ProjDir=.
+InputPath=.\default_config_file.cmd
+
+"$(ProjDir)\include\default_config_file.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak default_config_file.h
+
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "modules - Win32 Debug"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__DEFAU="squid_version.mak" "squid_mswin.mak"
+# Begin Custom Build
+ProjDir=.
+InputPath=.\default_config_file.cmd
+
+"$(ProjDir)\include\default_config_file.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak default_config_file.h
+
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\repl_modules.cmd
+
+!IF "$(CFG)" == "modules - Win32 Release"
+
+# PROP Intermediate_Dir "."
+# PROP Ignore_Default_Tool 1
+USERDEP__REPL_="squid_version.mak" "squid_mswin.mak"
+# Begin Custom Build
+OutDir=.\..\..\src
+ProjDir=.
+InputPath=.\repl_modules.cmd
+
+"$(OutDir)\repl_modules.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak repl_modules.c
+
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "modules - Win32 Debug"
+
+# PROP Intermediate_Dir "."
+# PROP Ignore_Default_Tool 1
+USERDEP__REPL_="squid_version.mak" "squid_mswin.mak"
+# Begin Custom Build
+OutDir=.\..\..\src
+ProjDir=.
+InputPath=.\repl_modules.cmd
+
+"$(OutDir)\repl_modules.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak repl_modules.c
+
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\squid_version.cmd
+
+!IF "$(CFG)" == "modules - Win32 Release"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__SQUID="..\..\configure.in" "squid_mswin.mak"
+# Begin Custom Build
+ProjDir=.
+InputPath=.\squid_version.cmd
+
+"$(ProjDir)\squid_version.mak" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(ProjDir)\squid_version.cmd > $(ProjDir)\squid_version.mak
+
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "modules - Win32 Debug"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__SQUID="..\..\configure.in" "squid_mswin.mak"
+# Begin Custom Build
+ProjDir=.
+InputPath=.\squid_version.cmd
+
+"$(ProjDir)\squid_version.mak" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(ProjDir)\squid_version.cmd > $(ProjDir)\squid_version.mak
+
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\store_modules.cmd
+
+!IF "$(CFG)" == "modules - Win32 Release"
+
+# PROP Intermediate_Dir "."
+# PROP Ignore_Default_Tool 1
+USERDEP__STORE="squid_version.mak" "squid_mswin.mak"
+# Begin Custom Build
+OutDir=.\..\..\src
+ProjDir=.
+InputPath=.\store_modules.cmd
+
+"$(OutDir)\store_modules.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak store_modules.c
+
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "modules - Win32 Debug"
+
+# PROP Intermediate_Dir "."
+# PROP Ignore_Default_Tool 1
+USERDEP__STORE="squid_version.mak" "squid_mswin.mak"
+# Begin Custom Build
+OutDir=.\..\..\src
+ProjDir=.
+InputPath=.\store_modules.cmd
+
+"$(OutDir)\store_modules.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ nmake /f $(ProjDir)\squid_mswin.mak store_modules.c
+
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# End Target
+# End Project
Index: squid/port/win32/readme.txt
diff -u /dev/null squid/port/win32/readme.txt:1.1.12.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/readme.txt Tue May 16 14:05:58 2006
@@ -0,0 +1,3 @@
+To contact the maintainer of this package, e-mail on squidnt@acmeconsulting.it.
+The latest version and documentation can be found on
+http://www.acmeconsulting.it/SquidNT.htm.
Index: squid/port/win32/repl_modules.cmd
diff -u /dev/null squid/port/win32/repl_modules.cmd:1.1.38.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/repl_modules.cmd Tue May 16 14:05:58 2006
@@ -0,0 +1,16 @@
+@echo off
+if exist %temp%\repl_modules.txt del %temp%\repl_modules.txt
+:loop
+echo %1 >> %temp%\repl_modules.txt
+shift /1
+if NOT "%1"=="" goto :loop
+echo /* automatically generated by %0 %*
+echo * do not edit
+echo */
+echo #include "squid.h"
+for /F %%m in (%temp%\repl_modules.txt) do echo extern REMOVALPOLICYCREATE createRemovalPolicy_%%m;
+echo void storeReplSetup(void)
+echo {
+for /F %%m in (%temp%\repl_modules.txt) do echo storeReplAdd("%%m", createRemovalPolicy_%%m);
+echo }
+if exist %temp%\repl_modules.txt del %temp%\repl_modules.txt
Index: squid/port/win32/squid.dsw
diff -u /dev/null squid/port/win32/squid.dsw:1.1.38.15
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/squid.dsw Sat May 3 05:15:19 2008
@@ -0,0 +1,821 @@
+Microsoft Developer Studio Workspace File, Format Version 6.00
+# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
+
+###############################################################################
+
+Project: "Build"=".\Build.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name cachemgr
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name dnsserver
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name fake_auth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name ip_user_check
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name LDAP_auth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name LDAP_group
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name NCSA_auth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name nt_auth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name ntlm_win32_auth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name squid
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name squidclient
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name unlinkd
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name win32_check_group
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name icons
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name doc
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name negotiate_auth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name digest_ldap_auth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name digest_pw_auth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name digest_edir_auth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name logfiled
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name squid_radius_auth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name mswin_check_ad_group
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name squid_session
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "LDAP_auth"=".\LDAP_auth\LDAP_auth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "LDAP_group"=".\LDAP_group\LDAP_group.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "NCSA_auth"=".\NCSA_auth\NCSA_auth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "PerlPreprocessing"=".\PerlPreprocessing.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Project: "cachemgr"=".\cachemgr\cachemgr.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "cf_data"=".\cf_data.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Project: "cf_gen"=".\cf_gen\cf_gen.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name cf_data
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name PerlPreprocessing
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "digest_edir_auth"=".\digest_edir_auth\digest_edir_auth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "digest_ldap_auth"=".\digest_ldap_auth\digest_ldap_auth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "digest_pw_auth"=".\digest_pw_auth\digest_pw_auth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "dnsserver"=".\dnsserver\dnsserver.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "doc"=".\doc.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "fake_auth"=".\fake_auth\fake_auth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "icons"=".\icons.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Project: "install"=".\install.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name Build
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "ip_user_check"=".\ip_user_check\ip_user_check.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libaufs"=".\libaufs\libaufs.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libbasic"=".\libbasic\libbasic.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libcoss"=".\libcoss\libcoss.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libdigest"=".\libdigest\libdigest.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libgnuregex"=".\libgnuregex\libgnuregex.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libheap"=".\libheap\libheap.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "liblru"=".\liblru\liblru.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libmiscutil"=".\libmiscutil\libmiscutil.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libnegotiate"=".\libnegotiate\libnegotiate.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libntlm"=".\libntlm\libntlm.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libntlmauth"=".\libntlmauth\libntlmauth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libnull"=".\libnull\libnull.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libsnmp"=".\libsnmp\libsnmp.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "libsspwin32"=".\libsspwin32\libsspwin32.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Project: "libufs"=".\libufs\libufs.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "logfiled"=".\logfiled\logfiled.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Project: "modules"=".\modules.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Project: "mswin_check_ad_group"=".\mswin_check_ad_group\mswin_check_ad_group.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "negotiate_auth"=".\negotiate_auth\negotiate_auth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libsspwin32
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "nt_auth"=".\nt_auth\nt_auth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libsspwin32
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "ntlm_win32_auth"=".\ntlm_win32_auth\ntlm_win32_auth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libntlmauth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libsspwin32
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "pinger"=".\pinger\pinger.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name PerlPreprocessing
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "squid"=".\squid\squid.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libgnuregex
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name PerlPreprocessing
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libntlmauth
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libsnmp
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name modules
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name squid_conf_default
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libbasic
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name liblru
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libntlm
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libufs
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libheap
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libdigest
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libnull
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libnegotiate
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libaufs
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name libcoss
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "squid_conf_default"=".\squid_conf_default.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name cf_gen
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "squid_radius_auth"=".\squid_radius_auth\squid_radius_auth.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "squid_session"=".\squid_session\squid_session.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "squidclient"=".\squidclient\squidclient.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "unlinkd"=".\unlinkd\unlinkd.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Project: "win32_check_group"=".\win32_check_group\win32_check_group.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name libmiscutil
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Global:
+
+Package=<5>
+{{{
+}}}
+
+Package=<3>
+{{{
+}}}
+
+###############################################################################
+
Index: squid/port/win32/squid_conf_default.dsp
diff -u /dev/null squid/port/win32/squid_conf_default.dsp:1.1.38.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/squid_conf_default.dsp Thu Sep 6 03:31:45 2007
@@ -0,0 +1,118 @@
+# Microsoft Developer Studio Project File - Name="squid_conf_default" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Generic Project" 0x010a
+
+CFG=squid_conf_default - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "squid_conf_default.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "squid_conf_default.mak" CFG="squid_conf_default - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "squid_conf_default - Win32 Release" (based on "Win32 (x86) Generic Project")
+!MESSAGE "squid_conf_default - Win32 Debug" (based on "Win32 (x86) Generic Project")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+MTL=midl.exe
+
+!IF "$(CFG)" == "squid_conf_default - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "..\..\src"
+# PROP Intermediate_Dir "."
+# PROP Target_Dir ""
+# Begin Special Build Tool
+SOURCE="$(InputPath)"
+PostBuild_Cmds=del ..\..\src\squid.conf.default move squid.conf.default ..\..\src\squid.conf.default del ..\..\src\cf_parser.h move cf_parser.h ..\..\src\cf_parser.h
+# End Special Build Tool
+
+!ELSEIF "$(CFG)" == "squid_conf_default - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "squid_conf_default___Win32_Debug"
+# PROP BASE Intermediate_Dir "squid_conf_default___Win32_Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "..\..\src"
+# PROP Intermediate_Dir "."
+# PROP Target_Dir ""
+# Begin Special Build Tool
+SOURCE="$(InputPath)"
+PostBuild_Cmds=del ..\..\src\squid.conf.default move squid.conf.default ..\..\src\squid.conf.default del ..\..\src\cf_parser.h move cf_parser.h ..\..\src\cf_parser.h
+# End Special Build Tool
+
+!ENDIF
+
+# Begin Target
+
+# Name "squid_conf_default - Win32 Release"
+# Name "squid_conf_default - Win32 Debug"
+# Begin Source File
+
+SOURCE=..\..\src\cf.data
+
+!IF "$(CFG)" == "squid_conf_default - Win32 Release"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__CF_DA="$(InputDir)\cf.data.depend"
+# Begin Custom Build
+InputDir=\work\nt-2.6\src
+OutDir=.\..\..\src
+ProjDir=.
+InputPath=..\..\src\cf.data
+
+BuildCmds= \
+ $(ProjDir)\cf_gen\Release\cf_gen $(InputPath) $(InputDir)\cf.data.depend
+
+"$(OutDir)\squid.conf.default" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\cf_parser.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "squid_conf_default - Win32 Debug"
+
+# PROP Ignore_Default_Tool 1
+USERDEP__CF_DA="$(InputDir)\cf.data.depend"
+# Begin Custom Build
+InputDir=\work\nt-2.6\src
+OutDir=.\..\..\src
+ProjDir=.
+InputPath=..\..\src\cf.data
+
+BuildCmds= \
+ $(ProjDir)\cf_gen\debug\cf_gen $(InputPath) $(InputDir)\cf.data.depend
+
+"$(OutDir)\squid.conf.default" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"$(OutDir)\cf_parser.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# End Target
+# End Project
Index: squid/port/win32/squid_mswin.mak
diff -u /dev/null squid/port/win32/squid_mswin.mak:1.1.38.6
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/squid_mswin.mak Fri Sep 15 12:20:23 2006
@@ -0,0 +1,109 @@
+THISMAKEFILE = squid_mswin.mak
+
+prefix = c:/squid
+exec_prefix = $(prefix)/bin
+exec_suffix = .exe
+cgi_suffix = .cgi
+top_srcdir = ..\..
+bindir = $(exec_prefix)
+libexecdir = $(prefix)/libexec
+sysconfdir = $(prefix)/etc
+datadir = $(prefix)/share
+localstatedir = $(prefix)/var
+srcdir = ..\..\src
+docdir = ..\..\doc
+win32includedir = .\include
+iconsdir = $(top_srcdir)\icons
+
+# Gotta love the DOS legacy
+#
+SQUID_EXE = squid$(exec_suffix)
+CLIENT_EXE = client$(exec_suffix)
+DNSSERVER_EXE = dnsserver$(exec_suffix)
+UNLINKD_EXE = unlinkd$(exec_suffix)
+PINGER_EXE = pinger$(exec_suffix)
+CACHEMGR_EXE = cachemgr$(cgi_suffix)
+DISKD_EXE = diskd-daemon$(exec_suffix)
+LOGFILED_EXE = logfile-daemon$(exec_suffix)
+
+DEFAULT_HTTP_PORT = 3128
+DEFAULT_ICP_PORT = 3130
+DEFAULT_PREFIX = $(prefix)
+DEFAULT_CONFIG_FILE = $(sysconfdir)/squid.conf
+DEFAULT_CACHEMGR_CONFIG = $(sysconfdir)/cachemgr.conf
+DEFAULT_MIME_TABLE = $(sysconfdir)/mime.conf
+DEFAULT_DNSSERVER = $(libexecdir)/$(DNSSERVER_EXE)
+DEFAULT_LOG_PREFIX = $(localstatedir)/logs
+DEFAULT_CACHE_LOG = $(DEFAULT_LOG_PREFIX)/cache.log
+DEFAULT_ACCESS_LOG = $(DEFAULT_LOG_PREFIX)/access.log
+DEFAULT_STORE_LOG = $(DEFAULT_LOG_PREFIX)/store.log
+DEFAULT_PID_FILE = $(DEFAULT_LOG_PREFIX)/squid.pid
+DEFAULT_SWAP_DIR = $(localstatedir)/cache
+DEFAULT_PINGER = $(libexecdir)/$(PINGER_EXE)
+DEFAULT_UNLINKD = $(libexecdir)/$(UNLINKD_EXE)
+DEFAULT_DISKD = $(libexecdir)/$(DISKD_EXE)
+DEFAULT_LOGFILED = $(libexecdir)/$(LOGFILED_EXE)
+DEFAULT_ICON_DIR = $(datadir)/icons
+DEFAULT_ERROR_DIR = $(datadir)/errors/English
+DEFAULT_MIB_PATH = $(datadir)/mib.txt
+DEFAULT_HOSTS = none
+!INCLUDE squid_version.mak
+
+AUTH_MODULES = basic ntlm digest negotiate
+REPL_POLICIES = lru heap
+STORE_MODULES = ufs aufs null coss
+
+SUBSTITUTE=sed "\
+ s%@DEFAULT_CONFIG_FILE@%$(DEFAULT_CONFIG_FILE)%g;\
+ s%@DEFAULT_CACHEMGR_CONFIG@%$(DEFAULT_CACHEMGR_CONFIG)%g;\
+ s%@DEFAULT_ERROR_DIR@%$(DEFAULT_ERROR_DIR)%g;\
+ s%@DEFAULT_MIME_TABLE@%$(DEFAULT_MIME_TABLE)%g;\
+ s%@PACKAGE_STRING@%$(PACKAGE_STRING)%g;\
+ "
+
+cf_gen_defines.h: $(srcdir)\cf_gen_defines $(srcdir)\cf.data.pre
+ gawk -f $(srcdir)\cf_gen_defines <$(srcdir)\cf.data.pre >$(srcdir)\cf_gen_defines.h
+
+cf.data: $(srcdir)\cf.data.pre .\$(THISMAKEFILE)
+ sed "\
+ s%@DEFAULT_HTTP_PORT@%$(DEFAULT_HTTP_PORT)%g;\
+ s%@DEFAULT_ICP_PORT@%$(DEFAULT_ICP_PORT)%g;\
+ s%@DEFAULT_MIME_TABLE@%$(DEFAULT_MIME_TABLE)%g;\
+ s%@DEFAULT_DNSSERVER@%$(DEFAULT_DNSSERVER)%g;\
+ s%@DEFAULT_UNLINKD@%$(DEFAULT_UNLINKD)%g;\
+ s%@DEFAULT_PINGER@%$(DEFAULT_PINGER)%g;\
+ s%@DEFAULT_DISKD@%$(DEFAULT_DISKD)%g;\
+ s%@DEFAULT_LOGFILED@%$(DEFAULT_LOGFILED)%g;\
+ s%@DEFAULT_CACHE_LOG@%$(DEFAULT_CACHE_LOG)%g;\
+ s%@DEFAULT_ACCESS_LOG@%$(DEFAULT_ACCESS_LOG)%g;\
+ s%@DEFAULT_STORE_LOG@%$(DEFAULT_STORE_LOG)%g;\
+ s%@DEFAULT_PID_FILE@%$(DEFAULT_PID_FILE)%g;\
+ s%@DEFAULT_SWAP_DIR@%$(DEFAULT_SWAP_DIR)%g;\
+ s%@DEFAULT_ICON_DIR@%$(DEFAULT_ICON_DIR)%g;\
+ s%@DEFAULT_MIB_PATH@%$(DEFAULT_MIB_PATH)%g;\
+ s%@DEFAULT_ERROR_DIR@%$(DEFAULT_ERROR_DIR)%g;\
+ s%@DEFAULT_PREFIX@%$(DEFAULT_PREFIX)%g;\
+ s%@DEFAULT_HOSTS@%$(DEFAULT_HOSTS)%g;\
+ s%@[V]ERSION@%$(VERSION)%g;"\
+ < $(srcdir)\cf.data.pre >$(srcdir)\cf.data
+
+auth_modules.c: .\auth_modules.cmd .\$(THISMAKEFILE)
+ .\auth_modules.cmd $(AUTH_MODULES) >$(srcdir)\auth_modules.c
+
+repl_modules.c: .\repl_modules.cmd .\$(THISMAKEFILE)
+ .\repl_modules.cmd $(REPL_POLICIES) >$(srcdir)\repl_modules.c
+
+store_modules.c: .\store_modules.cmd .\$(THISMAKEFILE)
+ .\store_modules.cmd $(STORE_MODULES) >$(srcdir)\store_modules.c
+
+default_config_file.h: .\$(THISMAKEFILE)
+ .\default_config_file.cmd $(DEFAULT_CONFIG_FILE) $(DEFAULT_ERROR_DIR) $(DEFAULT_CACHEMGR_CONFIG) >$(win32includedir)\default_config_file.h
+
+icons: .\icons.cmd $(iconsdir)\icons.shar
+ .\icons.cmd $(iconsdir)
+
+squid.8: $(docdir)\squid.8.in .\$(THISMAKEFILE)
+ $(SUBSTITUTE) < $(docdir)\squid.8.in > $(docdir)\squid.8
+
+cachemgr.cgi.8: $(docdir)\cachemgr.cgi.8.in .\$(THISMAKEFILE)
+ $(SUBSTITUTE) < $(docdir)\cachemgr.cgi.8.in > $(docdir)\cachemgr.cgi.8
Index: squid/port/win32/squid_version.cmd
diff -u /dev/null squid/port/win32/squid_version.cmd:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/squid_version.cmd Fri Jun 2 04:57:46 2006
@@ -0,0 +1,12 @@
+@echo off
+FOR /F "usebackq skip=2 tokens=2 delims=,(" %%i in (`find "AC_INIT" ../../configure.in`) do set PACKAGE_NAME=%%i
+FOR /F "usebackq skip=2 tokens=4 delims=, " %%i in (`find "AC_INIT" ../../configure.in`) do set PACKAGE_VERSION=%%i
+FOR /F "usebackq skip=2 tokens=5 delims=, " %%i in (`find "AC_INIT" ../../configure.in`) do set PACKAGE_BUGREPORT=%%i
+FOR /F "usebackq skip=2 tokens=6 delims=), " %%i in (`find "AC_INIT" ../../configure.in`) do set PACKAGE_TARNAME=%%i
+echo PACKAGE_NAME = %PACKAGE_NAME%
+echo PACKAGE_TARNAME = %PACKAGE_TARNAME%
+echo PACKAGE_VERSION = %PACKAGE_VERSION%
+echo PACKAGE_STRING = %PACKAGE_NAME% %PACKAGE_VERSION%
+echo PACKAGE_BUGREPORT = %PACKAGE_BUGREPORT%
+echo PACKAGE = %PACKAGE_TARNAME%
+echo VERSION = %PACKAGE_VERSION%
Index: squid/port/win32/store_modules.cmd
diff -u /dev/null squid/port/win32/store_modules.cmd:1.1.38.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/store_modules.cmd Tue May 16 14:05:58 2006
@@ -0,0 +1,16 @@
+@echo off
+if exist %temp%\store_modules.txt del %temp%\store_modules.txt
+:loop
+echo %1 >> %temp%\store_modules.txt
+shift /1
+if NOT "%1"=="" goto :loop
+echo /* automatically generated by %0 %*
+echo * do not edit
+echo */
+echo #include "squid.h"
+for /F %%m in (%temp%\store_modules.txt) do echo extern STSETUP storeFsSetup_%%m;
+echo void storeFsSetup(void)
+echo {
+for /F %%m in (%temp%\store_modules.txt) do echo storeFsAdd("%%m", storeFsSetup_%%m);
+echo }
+if exist %temp%\store_modules.txt del %temp%\store_modules.txt
Index: squid/port/win32/update.cmd
diff -u /dev/null squid/port/win32/update.cmd:1.1.36.16
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/update.cmd Mon May 5 12:02:38 2008
@@ -0,0 +1,74 @@
+@echo off
+if %1==release net stop "Squid"
+
+if not exist %2 md %2
+if not exist %2\bin md %2\bin
+if not exist %2\sbin md %2\sbin
+if not exist %2\libexec md %2\libexec
+if not exist %2\docs md %2\docs
+if not exist %2\etc md %2\etc
+if not exist %2\var\logs md %2\var\logs
+if not exist %2\share\icons md %2\share\icons
+
+copy %0\..\squid\%1\squid.exe %2\sbin\squid.exe
+copy %0\..\unlinkd\%1\unlinkd.exe %2\libexec\unlinkd.exe
+copy %0\..\logfiled\%1\logfile-daemon.exe %2\libexec\logfile-daemon.exe
+if exist %0\..\dnsserver\%1\dnsserver.exe copy %0\..\dnsserver\%1\dnsserver.exe %2\libexec\dnsserver.exe
+if exist %0\..\pinger\%1\pinger.exe copy %0\..\pinger\%1\pinger.exe %2\libexec\pinger.exe
+copy %0\..\squidclient\%1\squidclient.exe %2\bin\squidclient.exe
+copy %0\..\ldap_auth\%1\ldap_auth.exe %2\libexec\squid_ldap_auth.exe
+copy %0\..\nt_auth\%1\nt_auth.exe %2\libexec\mswin_auth.exe
+copy %0\..\squid_radius_auth\%1\squid_radius_auth.exe %2\libexec\squid_radius_auth.exe
+copy %0\..\ncsa_auth\%1\ncsa_auth.exe %2\libexec\ncsa_auth.exe
+copy %0\..\digest_ldap_auth\%1\digest_ldap_auth.exe %2\libexec\digest_ldap_auth.exe
+copy %0\..\digest_pw_auth\%1\digest_pw_auth.exe %2\libexec\digest_pw_auth.exe
+copy %0\..\fake_auth\%1\fake_auth.exe %2\libexec\fakeauth_auth.exe
+copy %0\..\ntlm_win32_auth\%1\ntlm_win32_auth.exe %2\libexec\mswin_ntlm_auth.exe
+copy %0\..\negotiate_auth\%1\negotiate_auth.exe %2\libexec\mswin_negotiate_auth.exe
+copy %0\..\ldap_group\%1\ldap_group.exe %2\libexec\squid_ldap_group.exe
+copy %0\..\win32_check_group\%1\win32_check_group.exe %2\libexec\mswin_check_lm_group.exe
+copy %0\..\mswin_check_ad_group\%1\mswin_check_ad_group.exe %2\libexec\mswin_check_ad_group.exe
+copy %0\..\ip_user_check\%1\ip_user_check.exe %2\libexec\ip_user_check.exe
+copy %0\..\squid_session\%1\squid_session.exe %2\libexec\squid_session.exe
+copy %0\..\cachemgr\%1\cachemgr.exe %2\libexec\cachemgr.cgi
+
+copy %0\..\..\..\src\squid.conf.default %2\etc\squid.conf.default
+copy %0\..\..\..\src\mime.conf.default %2\etc\mime.conf.default
+copy %0\..\..\..\tools\cachemgr.conf %2\etc\cachemgr.conf.default
+copy %0\..\..\..\src\mib.txt %2\share\mib.txt
+copy %0\..\..\..\helpers\basic_auth\squid_radius_auth\etc\squid_radius_auth.conf %2\etc\squid_radius_auth.conf.default
+
+pushd %0\..\..\..\errors
+for /D %%d IN (*) DO xcopy /Y /Q %%d\err_* %2\share\errors\%%d\
+popd
+
+copy %0\..\..\..\icons\*.gif %2\share\icons > NUL
+
+copy %0\..\readme.txt %2\docs\readme.txt
+copy %0\..\..\..\helpers\ntlm_auth\mswin_sspi\readme.txt %2\docs\mswin_ntlm_auth.txt
+copy %0\..\..\..\helpers\negotiate_auth\mswin_sspi\readme.txt %2\docs\mswin_negotiate_auth.txt
+copy %0\..\..\..\helpers\external_acl\mswin_lm_group\readme.txt %2\docs\mswin_check_lm_group.txt
+copy %0\..\..\..\helpers\external_acl\mswin_ad_group\readme.txt %2\docs\mswin_check_ad_group.txt
+copy %0\..\..\..\helpers\external_acl\ip_user\README %2\docs\ip_user_check.txt
+copy %0\..\..\..\helpers\basic_auth\mswin_sspi\readme.txt %2\docs\mswin_auth.txt
+copy %0\..\..\..\doc\debug-sections.txt %2\docs\debug-sections.txt
+copy %0\..\..\..\doc\HTTP-codes.txt %2\docs\HTTP-codes.txt
+copy %0\..\..\..\doc\release-notes\release-2.6.html %2\docs\release-2.6.html
+type %0\..\..\..\helpers\basic_auth\NCSA\ncsa_auth.8 | man2htm2 > %2\docs\ncsa_auth.html
+type %0\..\..\..\helpers\basic_auth\LDAP\squid_ldap_auth.8 | man2htm2 > %2\docs\squid_ldap_auth.html
+type %0\..\..\..\helpers\basic_auth\squid_radius_auth\squid_radius_auth.8 | man2htm2 > %2\docs\squid_radius_auth.html
+type %0\..\..\..\helpers\external_acl\LDAP_group\squid_ldap_group.8 | man2htm2 > %2\docs\squid_ldap_group.html
+type %0\..\..\..\helpers\external_acl\session\squid_session.8 | man2htm2 > %2\docs\squid_session.html
+type %0\..\..\..\doc\squid.8 | man2htm2 > %2\docs\squid.html
+type %0\..\..\..\doc\cachemgr.cgi.8 | man2htm2 > %2\docs\cachemgr.cgi.html
+
+copy %0\..\..\..\README %2\README
+copy %0\..\..\..\COPYRIGHT %2\COPYRIGHT
+copy %0\..\..\..\COPYING %2\COPYING
+copy %0\..\..\..\CONTRIBUTORS %2\CONTRIBUTORS
+copy %0\..\..\..\CREDITS %2\CREDITS
+copy %0\..\..\..\SPONSORS %2\SPONSORS
+copy %0\..\..\..\QUICKSTART %2\QUICKSTART
+copy %0\..\..\..\ChangeLog %2\ChangeLog
+
+if %1==release net start "Squid"
Index: squid/port/win32/LDAP_auth/.cvsignore
diff -u /dev/null squid/port/win32/LDAP_auth/.cvsignore:1.1.34.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/LDAP_auth/.cvsignore Wed Dec 27 03:34:11 2006
@@ -0,0 +1,2 @@
+Debug
+Release
Index: squid/port/win32/LDAP_auth/LDAP_auth.dsp
diff -u /dev/null squid/port/win32/LDAP_auth/LDAP_auth.dsp:1.1.36.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/LDAP_auth/LDAP_auth.dsp Sat Jun 24 12:09:15 2006
@@ -0,0 +1,109 @@
+# Microsoft Developer Studio Project File - Name="LDAP_auth" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Application" 0x0101
+
+CFG=LDAP_auth - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "LDAP_auth.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "LDAP_auth.mak" CFG="LDAP_auth - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "LDAP_auth - Win32 Release" (based on "Win32 (x86) Application")
+!MESSAGE "LDAP_auth - Win32 Debug" (based on "Win32 (x86) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+MTL=midl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "LDAP_auth - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /G6 /MT /W3 /GX /O2 /I "../../../include" /I "../../../src" /I "../include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /c
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
+# ADD BASE RSC /l 0x410 /d "NDEBUG"
+# ADD RSC /l 0x410 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386
+# ADD LINK32 Wldap32.lib ws2_32.lib psapi.lib /nologo /subsystem:console /machine:I386 /IGNORE:4089
+# SUBTRACT LINK32 /pdb:none
+
+!ELSEIF "$(CFG)" == "LDAP_auth - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c
+# ADD CPP /nologo /G6 /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /I "../../../src" /I "../include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /GZ /c
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
+# ADD BASE RSC /l 0x410 /d "_DEBUG"
+# ADD RSC /l 0x410 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 Wldap32.lib ws2_32.lib psapi.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# SUBTRACT LINK32 /pdb:none
+
+!ENDIF
+
+# Begin Target
+
+# Name "LDAP_auth - Win32 Release"
+# Name "LDAP_auth - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\..\helpers\basic_auth\LDAP\squid_ldap_auth.c
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
Index: squid/port/win32/LDAP_group/.cvsignore
diff -u /dev/null squid/port/win32/LDAP_group/.cvsignore:1.1.14.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/LDAP_group/.cvsignore Wed Dec 27 03:34:12 2006
@@ -0,0 +1,2 @@
+Debug
+Release
Index: squid/port/win32/LDAP_group/LDAP_group.dsp
diff -u /dev/null squid/port/win32/LDAP_group/LDAP_group.dsp:1.1.14.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/LDAP_group/LDAP_group.dsp Sat Jun 24 12:09:15 2006
@@ -0,0 +1,103 @@
+# Microsoft Developer Studio Project File - Name="LDAP_group" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=LDAP_group - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "LDAP_group.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "LDAP_group.mak" CFG="LDAP_group - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "LDAP_group - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "LDAP_group - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "LDAP_group - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /G6 /MT /W3 /GX /O2 /I "../../../include" /I "../../../src" /I "../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /c
+# ADD BASE RSC /l 0x410 /d "NDEBUG"
+# ADD RSC /l 0x410 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 psapi.lib ws2_32.lib Wldap32.lib /nologo /subsystem:console /machine:I386 /IGNORE:4089
+# SUBTRACT LINK32 /pdb:none
+
+!ELSEIF "$(CFG)" == "LDAP_group - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
+# ADD CPP /nologo /G6 /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /I "../../../src" /I "../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /GZ /c
+# ADD BASE RSC /l 0x410 /d "_DEBUG"
+# ADD RSC /l 0x410 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 ws2_32.lib Wldap32.lib psapi.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+
+!ENDIF
+
+# Begin Target
+
+# Name "LDAP_group - Win32 Release"
+# Name "LDAP_group - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\..\helpers\external_acl\ldap_group\squid_ldap_group.c
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
Index: squid/port/win32/NCSA_auth/.cvsignore
diff -u /dev/null squid/port/win32/NCSA_auth/.cvsignore:1.1.34.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/NCSA_auth/.cvsignore Wed Dec 27 03:34:12 2006
@@ -0,0 +1,2 @@
+Debug
+Release
Index: squid/port/win32/NCSA_auth/NCSA_auth.dsp
diff -u /dev/null squid/port/win32/NCSA_auth/NCSA_auth.dsp:1.1.34.6
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/NCSA_auth/NCSA_auth.dsp Sat May 31 03:15:29 2008
@@ -0,0 +1,115 @@
+# Microsoft Developer Studio Project File - Name="NCSA_auth" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=NCSA_auth - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "NCSA_auth.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "NCSA_auth.mak" CFG="NCSA_auth - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "NCSA_auth - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "NCSA_auth - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "NCSA_auth - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /G6 /MT /W3 /GX /O2 /I "../../../include" /I "../../../src" /I "../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D _FILE_OFFSET_BITS=64 /YX /FD /c
+# ADD BASE RSC /l 0x410 /d "NDEBUG"
+# ADD RSC /l 0x410 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 ws2_32.lib psapi.lib libeay32MT.lib ssleay32MT.lib /nologo /subsystem:console /machine:I386 /IGNORE:4089
+# SUBTRACT LINK32 /pdb:none
+
+!ELSEIF "$(CFG)" == "NCSA_auth - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
+# ADD CPP /nologo /G6 /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /I "../../../src" /I "../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D _FILE_OFFSET_BITS=64 /YX /FD /GZ /c
+# ADD BASE RSC /l 0x410 /d "_DEBUG"
+# ADD RSC /l 0x410 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 ws2_32.lib psapi.lib libeay32MTd.lib ssleay32MTd.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+
+!ENDIF
+
+# Begin Target
+
+# Name "NCSA_auth - Win32 Release"
+# Name "NCSA_auth - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\..\helpers\basic_auth\NCSA\crypt_md5.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\lib\encrypt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\helpers\basic_auth\NCSA\ncsa_auth.c
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=..\..\..\helpers\basic_auth\NCSA\crypt_md5.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
Index: squid/port/win32/cachemgr/.cvsignore
diff -u /dev/null squid/port/win32/cachemgr/.cvsignore:1.1.34.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/cachemgr/.cvsignore Wed Dec 27 03:34:13 2006
@@ -0,0 +1,2 @@
+Debug
+Release
Index: squid/port/win32/cachemgr/cachemgr.dsp
diff -u /dev/null squid/port/win32/cachemgr/cachemgr.dsp:1.1.38.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/cachemgr/cachemgr.dsp Sat Jun 24 12:09:15 2006
@@ -0,0 +1,111 @@
+# Microsoft Developer Studio Project File - Name="cachemgr" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=cachemgr - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "cachemgr.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "cachemgr.mak" CFG="cachemgr - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "cachemgr - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "cachemgr - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "cachemgr - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /G6 /MT /W3 /GX /O2 /I "../../src" /I "../../../include" /I "../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /c
+# ADD BASE RSC /l 0x410 /d "NDEBUG"
+# ADD RSC /l 0x410 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 ws2_32.lib psapi.lib /nologo /subsystem:console /machine:I386 /IGNORE:4089
+# SUBTRACT LINK32 /pdb:none
+
+!ELSEIF "$(CFG)" == "cachemgr - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
+# ADD CPP /nologo /G6 /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /I "../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /GZ /c
+# ADD BASE RSC /l 0x410 /d "_DEBUG"
+# ADD RSC /l 0x410 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 ws2_32.lib psapi.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+
+!ENDIF
+
+# Begin Target
+
+# Name "cachemgr - Win32 Release"
+# Name "cachemgr - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\..\tools\cachemgr.c
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=..\..\..\include\snprintf.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\include\util.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
Index: squid/port/win32/cf_gen/.cvsignore
diff -u /dev/null squid/port/win32/cf_gen/.cvsignore:1.1.34.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/cf_gen/.cvsignore Wed Dec 27 03:34:13 2006
@@ -0,0 +1,2 @@
+Debug
+Release
Index: squid/port/win32/cf_gen/cf_gen.dsp
diff -u /dev/null squid/port/win32/cf_gen/cf_gen.dsp:1.1.38.4
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/cf_gen/cf_gen.dsp Fri Aug 8 11:30:56 2008
@@ -0,0 +1,124 @@
+# Microsoft Developer Studio Project File - Name="cf_gen" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=cf_gen - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "cf_gen.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "cf_gen.mak" CFG="cf_gen - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "cf_gen - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "cf_gen - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "cf_gen - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /G6 /MT /W3 /GX /O2 /I "../include" /I "../../../include" /I "../../../src" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /FD /c
+# SUBTRACT CPP /YX
+# ADD BASE RSC /l 0x410 /d "NDEBUG"
+# ADD RSC /l 0x410 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 ws2_32.lib psapi.lib /nologo /subsystem:console /machine:I386 /IGNORE:4089
+# SUBTRACT LINK32 /pdb:none
+
+!ELSEIF "$(CFG)" == "cf_gen - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
+# ADD CPP /nologo /G6 /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /I "../../" /I "../../src" /I "../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /GZ /c
+# ADD BASE RSC /l 0x410 /d "_DEBUG"
+# ADD RSC /l 0x410 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 ws2_32.lib psapi.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+
+!ENDIF
+
+# Begin Target
+
+# Name "cf_gen - Win32 Release"
+# Name "cf_gen - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\..\src\cf_gen.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\src\debug.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\src\globals.c
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=..\..\..\src\cf_gen_defines.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\include\config.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\src\squid.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
Index: squid/port/win32/digest_edir_auth/.cvsignore
diff -u /dev/null squid/port/win32/digest_edir_auth/.cvsignore:1.1.2.1
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/digest_edir_auth/.cvsignore Mon Aug 13 03:27:56 2007
@@ -0,0 +1,2 @@
+Debug
+Release
Index: squid/port/win32/digest_edir_auth/digest_edir_auth.dsp
diff -u /dev/null squid/port/win32/digest_edir_auth/digest_edir_auth.dsp:1.1.2.3
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/digest_edir_auth/digest_edir_auth.dsp Sat Mar 8 14:51:52 2008
@@ -0,0 +1,123 @@
+# Microsoft Developer Studio Project File - Name="digest_edir_auth" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=digest_edir_auth - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "digest_edir_auth.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "digest_edir_auth.mak" CFG="digest_edir_auth - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "digest_edir_auth - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "digest_edir_auth - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "digest_edir_auth - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /G6 /MT /W3 /GX /O2 /I "../../../include" /I "../../../src" /I "../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /c
+# ADD BASE RSC /l 0x410 /d "NDEBUG"
+# ADD RSC /l 0x410 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 Wldap32.lib ws2_32.lib psapi.lib libeay32MT.lib ssleay32MT.lib /nologo /subsystem:console /machine:I386 /IGNORE:4089
+# SUBTRACT LINK32 /pdb:none
+
+!ELSEIF "$(CFG)" == "digest_edir_auth - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
+# ADD CPP /nologo /G6 /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /I "../../../src" /I "../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /GZ /c
+# ADD BASE RSC /l 0x410 /d "_DEBUG"
+# ADD RSC /l 0x410 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 Wldap32.lib ws2_32.lib psapi.lib libeay32MTd.lib ssleay32MTd.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+
+!ENDIF
+
+# Begin Target
+
+# Name "digest_edir_auth - Win32 Release"
+# Name "digest_edir_auth - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\eDirectory\digest_pw_auth.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\eDirectory\edir_ldapext.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\eDirectory\ldap_backend.c
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\eDirectory\digest_common.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\eDirectory\edir_ldapext.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\eDirectory\ldap_backend.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
Index: squid/port/win32/digest_ldap_auth/.cvsignore
diff -u /dev/null squid/port/win32/digest_ldap_auth/.cvsignore:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/digest_ldap_auth/.cvsignore Wed Dec 27 03:34:13 2006
@@ -0,0 +1,2 @@
+Debug
+Release
Index: squid/port/win32/digest_ldap_auth/digest_ldap_auth.dsp
diff -u /dev/null squid/port/win32/digest_ldap_auth/digest_ldap_auth.dsp:1.1.2.4
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/digest_ldap_auth/digest_ldap_auth.dsp Sat Mar 8 14:51:52 2008
@@ -0,0 +1,116 @@
+# Microsoft Developer Studio Project File - Name="digest_ldap_auth" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=digest_ldap_auth - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "digest_ldap_auth.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "digest_ldap_auth.mak" CFG="digest_ldap_auth - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "digest_ldap_auth - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "digest_ldap_auth - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "digest_ldap_auth - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /G6 /MT /W3 /GX /O2 /I "../../../include" /I "../../../src" /I "../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /c
+# ADD BASE RSC /l 0x410 /d "NDEBUG"
+# ADD RSC /l 0x410 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 Wldap32.lib ws2_32.lib psapi.lib libeay32MT.lib ssleay32MT.lib /nologo /subsystem:console /machine:I386 /IGNORE:4089
+# SUBTRACT LINK32 /pdb:none
+
+!ELSEIF "$(CFG)" == "digest_ldap_auth - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
+# ADD CPP /nologo /G6 /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /I "../../../src" /I "../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /GZ /c
+# ADD BASE RSC /l 0x410 /d "_DEBUG"
+# ADD RSC /l 0x410 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 Wldap32.lib ws2_32.lib psapi.lib libeay32MTd.lib ssleay32MTd.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# SUBTRACT LINK32 /nodefaultlib
+
+!ENDIF
+
+# Begin Target
+
+# Name "digest_ldap_auth - Win32 Release"
+# Name "digest_ldap_auth - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\ldap\digest_pw_auth.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\ldap\ldap_backend.c
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\ldap\digest_common.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\ldap\ldap_backend.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
Index: squid/port/win32/digest_pw_auth/.cvsignore
diff -u /dev/null squid/port/win32/digest_pw_auth/.cvsignore:1.1.2.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/digest_pw_auth/.cvsignore Wed Dec 27 03:34:14 2006
@@ -0,0 +1,2 @@
+Debug
+Release
Index: squid/port/win32/digest_pw_auth/digest_pw_auth.dsp
diff -u /dev/null squid/port/win32/digest_pw_auth/digest_pw_auth.dsp:1.1.2.4
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/digest_pw_auth/digest_pw_auth.dsp Sat Mar 8 14:51:52 2008
@@ -0,0 +1,115 @@
+# Microsoft Developer Studio Project File - Name="digest_pw_auth" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=digest_pw_auth - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "digest_pw_auth.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "digest_pw_auth.mak" CFG="digest_pw_auth - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "digest_pw_auth - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "digest_pw_auth - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "digest_pw_auth - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /G6 /MT /W3 /GX /O2 /I "../../../include" /I "../../../src" /I "../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /c
+# ADD BASE RSC /l 0x410 /d "NDEBUG"
+# ADD RSC /l 0x410 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 ws2_32.lib psapi.lib libeay32MT.lib ssleay32MT.lib /nologo /subsystem:console /machine:I386 /IGNORE:4089
+# SUBTRACT LINK32 /pdb:none
+
+!ELSEIF "$(CFG)" == "digest_pw_auth - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
+# ADD CPP /nologo /G6 /MTd /W3 /Gm /GX /ZI /Od /I "../../../include" /I "../../../src" /I "../include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /D _FILE_OFFSET_BITS=64 /YX /FD /GZ /c
+# ADD BASE RSC /l 0x410 /d "_DEBUG"
+# ADD RSC /l 0x410 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 ws2_32.lib psapi.lib libeay32MTd.lib ssleay32MTd.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+
+!ENDIF
+
+# Begin Target
+
+# Name "digest_pw_auth - Win32 Release"
+# Name "digest_pw_auth - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\password\digest_pw_auth.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\password\text_backend.c
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\password\digest_common.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\..\helpers\digest_auth\password\text_backend.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
Index: squid/port/win32/dnsserver/.cvsignore
diff -u /dev/null squid/port/win32/dnsserver/.cvsignore:1.1.34.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/dnsserver/.cvsignore Wed Dec 27 03:34:14 2006
@@ -0,0 +1,2 @@
+Debug
+Release
Index: squid/port/win32/dnsserver/dnsserver.dsp
diff -u /dev/null squid/port/win32/dnsserver/dnsserver.dsp:1.1.34.2
--- /dev/null Thu Jan 1 01:00:00 1970
+++ squid/port/win32/dnsserver/dnsserver.dsp Sat Jun 24 12:09:15 2006
@@ -0,0 +1,103 @@
+# Microsoft Developer Studio Project File - Name="dnsserver" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=dnsserver - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "dnsserver.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "dnsserver.mak" CFG="dnsserver - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "dnsserver - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "dnsserver - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "dnsserver - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /G6 /MT /W3 /GX /O2 /I "../../../include" /I "../../../src" /I "../include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D _FILE_OFFSET_BITS=64 /YX /FD /c
+# ADD BASE RSC /l 0x410 /d "NDEBUG"
+# ADD RSC /l 0x410 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.l