You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by be...@hyperreal.org on 1998/08/09 16:33:14 UTC

cvs commit: apache-1.3/src/modules/proxy ApacheModuleProxy.mak

ben         98/08/09 07:33:13

  Modified:    src      ApacheCore.mak
               src/include http_protocol.h http_request.h
               src/main http_protocol.c http_request.c
               src/modules/proxy ApacheModuleProxy.mak
  Log:
  Make mod_proxy compile on Win32.
  
  Revision  Changes    Path
  1.39      +467 -277  apache-1.3/src/ApacheCore.mak
  
  Index: ApacheCore.mak
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/ApacheCore.mak,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- ApacheCore.mak	1998/08/05 22:15:02	1.38
  +++ ApacheCore.mak	1998/08/09 14:33:09	1.39
  @@ -28,10 +28,6 @@
   NULL=nul
   !ENDIF 
   
  -CPP=cl.exe
  -MTL=midl.exe
  -RSC=rc.exe
  -
   !IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   OUTDIR=.\CoreR
  @@ -101,12 +97,46 @@
   "$(OUTDIR)" :
       if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
   
  +CPP=cl.exe
   CPP_PROJ=/nologo /MD /W3 /GX /O2 /I ".\include" /D "WIN32" /D "NDEBUG" /D\
    "_WINDOWS" /Fp"$(INTDIR)\ApacheCore.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\"\
    /FD /c 
   CPP_OBJS=.\CoreR/
   CPP_SBRS=.
  +
  +.c{$(CPP_OBJS)}.obj::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cpp{$(CPP_OBJS)}.obj::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cxx{$(CPP_OBJS)}.obj::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.c{$(CPP_SBRS)}.sbr::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cpp{$(CPP_SBRS)}.sbr::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cxx{$(CPP_SBRS)}.sbr::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +MTL=midl.exe
   MTL_PROJ=/nologo /D "NDEBUG" /mktyplib203 /win32 
  +RSC=rc.exe
   BSC32=bscmake.exe
   BSC32_FLAGS=/nologo /o"$(OUTDIR)\ApacheCore.bsc" 
   BSC32_SBRS= \
  @@ -284,12 +314,46 @@
   "$(OUTDIR)" :
       if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
   
  +CPP=cl.exe
   CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /I ".\include" /D "WIN32" /D "_DEBUG"\
    /D "_WINDOWS" /FR"$(INTDIR)\\" /Fp"$(INTDIR)\ApacheCore.pch" /YX\
    /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
   CPP_OBJS=.\CoreD/
   CPP_SBRS=.\CoreD/
  +
  +.c{$(CPP_OBJS)}.obj::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cpp{$(CPP_OBJS)}.obj::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cxx{$(CPP_OBJS)}.obj::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.c{$(CPP_SBRS)}.sbr::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cpp{$(CPP_SBRS)}.sbr::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cxx{$(CPP_SBRS)}.sbr::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +MTL=midl.exe
   MTL_PROJ=/nologo /D "_DEBUG" /mktyplib203 /win32 
  +RSC=rc.exe
   BSC32=bscmake.exe
   BSC32_FLAGS=/nologo /o"$(OUTDIR)\ApacheCore.bsc" 
   BSC32_SBRS= \
  @@ -401,36 +465,6 @@
   
   !ENDIF 
   
  -.c{$(CPP_OBJS)}.obj::
  -   $(CPP) @<<
  -   $(CPP_PROJ) $< 
  -<<
  -
  -.cpp{$(CPP_OBJS)}.obj::
  -   $(CPP) @<<
  -   $(CPP_PROJ) $< 
  -<<
  -
  -.cxx{$(CPP_OBJS)}.obj::
  -   $(CPP) @<<
  -   $(CPP_PROJ) $< 
  -<<
  -
  -.c{$(CPP_SBRS)}.sbr::
  -   $(CPP) @<<
  -   $(CPP_PROJ) $< 
  -<<
  -
  -.cpp{$(CPP_SBRS)}.sbr::
  -   $(CPP) @<<
  -   $(CPP_PROJ) $< 
  -<<
  -
  -.cxx{$(CPP_SBRS)}.sbr::
  -   $(CPP) @<<
  -   $(CPP_PROJ) $< 
  -<<
  -
   
   !IF "$(CFG)" == "ApacheCore - Win32 Release" || "$(CFG)" ==\
    "ApacheCore - Win32 Debug"
  @@ -441,8 +475,9 @@
   DEP_CPP_ALLOC=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_log.h"\
   	".\include\httpd.h"\
  @@ -451,9 +486,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_ALLOC=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\alloc.obj" : $(SOURCE) $(DEP_CPP_ALLOC) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -464,8 +496,9 @@
   DEP_CPP_ALLOC=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_log.h"\
   	".\include\httpd.h"\
  @@ -473,9 +506,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_ALLOC=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\alloc.obj"	"$(INTDIR)\alloc.sbr" : $(SOURCE) $(DEP_CPP_ALLOC)\
  @@ -492,8 +530,9 @@
   DEP_CPP_BUFF_=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_log.h"\
   	".\include\http_main.h"\
  @@ -502,9 +541,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_BUFF_=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\buff.obj" : $(SOURCE) $(DEP_CPP_BUFF_) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -515,8 +551,9 @@
   DEP_CPP_BUFF_=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_log.h"\
   	".\include\http_main.h"\
  @@ -524,9 +561,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_BUFF_=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\buff.obj"	"$(INTDIR)\buff.sbr" : $(SOURCE) $(DEP_CPP_BUFF_)\
  @@ -543,17 +585,15 @@
   DEP_CPP_BUILD=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_BUILD=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\buildmark.obj" : $(SOURCE) $(DEP_CPP_BUILD) "$(INTDIR)"
   
  @@ -563,16 +603,22 @@
   DEP_CPP_BUILD=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_BUILD=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\buildmark.obj"	"$(INTDIR)\buildmark.sbr" : $(SOURCE)\
  @@ -606,8 +652,9 @@
   DEP_CPP_HTTP_=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\explain.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
  @@ -621,9 +668,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_HTTP_=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\http_config.obj" : $(SOURCE) $(DEP_CPP_HTTP_) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -634,8 +678,9 @@
   DEP_CPP_HTTP_=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\explain.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
  @@ -648,9 +693,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_HTTP_=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\http_config.obj"	"$(INTDIR)\http_config.sbr" : $(SOURCE)\
  @@ -667,9 +717,10 @@
   DEP_CPP_HTTP_C=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\ap_md5.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\fnmatch.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
  @@ -688,9 +739,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_HTTP_C=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\http_core.obj" : $(SOURCE) $(DEP_CPP_HTTP_C) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -701,8 +749,10 @@
   DEP_CPP_HTTP_C=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
  +	".\include\ap_md5.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\fnmatch.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
  @@ -720,10 +770,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_HTTP_C=\
  -	".\include\hide.h"\
  -	".\include\md5.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\http_core.obj"	"$(INTDIR)\http_core.sbr" : $(SOURCE)\
  @@ -740,8 +794,9 @@
   DEP_CPP_HTTP_L=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -752,9 +807,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_HTTP_L=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\http_log.obj" : $(SOURCE) $(DEP_CPP_HTTP_L) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -765,8 +817,9 @@
   DEP_CPP_HTTP_L=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -776,9 +829,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_HTTP_L=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\http_log.obj"	"$(INTDIR)\http_log.sbr" : $(SOURCE) $(DEP_CPP_HTTP_L)\
  @@ -795,8 +853,9 @@
   DEP_CPP_HTTP_M=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\explain.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
  @@ -818,9 +877,6 @@
   	".\os\win32\registry.h"\
   	".\os\win32\service.h"\
   	
  -NODEP_CPP_HTTP_M=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\http_main.obj" : $(SOURCE) $(DEP_CPP_HTTP_M) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -831,8 +887,9 @@
   DEP_CPP_HTTP_M=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\explain.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
  @@ -853,9 +910,14 @@
   	".\os\win32\readdir.h"\
   	".\os\win32\registry.h"\
   	".\os\win32\service.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_HTTP_M=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\http_main.obj"	"$(INTDIR)\http_main.sbr" : $(SOURCE)\
  @@ -872,8 +934,9 @@
   DEP_CPP_HTTP_P=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_config.h"\
  @@ -889,9 +952,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_HTTP_P=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\http_protocol.obj" : $(SOURCE) $(DEP_CPP_HTTP_P) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -902,8 +962,9 @@
   DEP_CPP_HTTP_P=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_config.h"\
  @@ -918,9 +979,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_HTTP_P=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\http_protocol.obj"	"$(INTDIR)\http_protocol.sbr" : $(SOURCE)\
  @@ -937,8 +1003,9 @@
   DEP_CPP_HTTP_R=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\fnmatch.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
  @@ -953,9 +1020,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_HTTP_R=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\http_request.obj" : $(SOURCE) $(DEP_CPP_HTTP_R) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -966,8 +1030,9 @@
   DEP_CPP_HTTP_R=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\fnmatch.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
  @@ -981,9 +1046,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_HTTP_R=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\http_request.obj"	"$(INTDIR)\http_request.sbr" : $(SOURCE)\
  @@ -1000,8 +1070,9 @@
   DEP_CPP_HTTP_V=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_config.h"\
  @@ -1013,9 +1084,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_HTTP_V=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\http_vhost.obj" : $(SOURCE) $(DEP_CPP_HTTP_V) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1026,8 +1094,9 @@
   DEP_CPP_HTTP_V=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_config.h"\
  @@ -1038,9 +1107,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_HTTP_V=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\http_vhost.obj"	"$(INTDIR)\http_vhost.sbr" : $(SOURCE)\
  @@ -1055,14 +1129,12 @@
   !IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   DEP_CPP_MD5C_=\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\ap_md5.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\os\win32\os.h"\
   	
  -NODEP_CPP_MD5C_=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1071,13 +1143,18 @@
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
   DEP_CPP_MD5C_=\
  -	".\include\conf.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
  +	".\include\ap_md5.h"\
   	".\include\hsregex.h"\
   	".\os\win32\os.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MD5C_=\
  -	".\include\hide.h"\
  -	".\include\md5.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\os.h"\
  +	".\main\ebcdic.h"\
   	
   
   "$(INTDIR)\md5c.obj"	"$(INTDIR)\md5c.sbr" : $(SOURCE) $(DEP_CPP_MD5C_)\
  @@ -1094,8 +1171,9 @@
   DEP_CPP_MOD_A=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1106,9 +1184,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_A=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_access.obj" : $(SOURCE) $(DEP_CPP_MOD_A) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1119,8 +1194,9 @@
   DEP_CPP_MOD_A=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1130,9 +1206,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_A=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_access.obj"	"$(INTDIR)\mod_access.sbr" : $(SOURCE)\
  @@ -1149,8 +1230,9 @@
   DEP_CPP_MOD_AC=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1164,9 +1246,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_AC=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_actions.obj" : $(SOURCE) $(DEP_CPP_MOD_AC) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1177,8 +1256,9 @@
   DEP_CPP_MOD_AC=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1191,9 +1271,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_AC=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_actions.obj"	"$(INTDIR)\mod_actions.sbr" : $(SOURCE)\
  @@ -1210,8 +1295,9 @@
   DEP_CPP_MOD_AL=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\httpd.h"\
  @@ -1219,9 +1305,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_AL=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_alias.obj" : $(SOURCE) $(DEP_CPP_MOD_AL) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1232,17 +1315,23 @@
   DEP_CPP_MOD_AL=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_AL=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_alias.obj"	"$(INTDIR)\mod_alias.sbr" : $(SOURCE)\
  @@ -1259,8 +1348,9 @@
   DEP_CPP_MOD_AS=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_log.h"\
  @@ -1273,9 +1363,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_AS=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_asis.obj" : $(SOURCE) $(DEP_CPP_MOD_AS) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1286,8 +1373,9 @@
   DEP_CPP_MOD_AS=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_log.h"\
  @@ -1299,9 +1387,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_AS=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_asis.obj"	"$(INTDIR)\mod_asis.sbr" : $(SOURCE) $(DEP_CPP_MOD_AS)\
  @@ -1318,8 +1411,9 @@
   DEP_CPP_MOD_AU=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1330,9 +1424,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_AU=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_auth.obj" : $(SOURCE) $(DEP_CPP_MOD_AU) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1343,8 +1434,9 @@
   DEP_CPP_MOD_AU=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1354,9 +1446,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_AU=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_auth.obj"	"$(INTDIR)\mod_auth.sbr" : $(SOURCE) $(DEP_CPP_MOD_AU)\
  @@ -1373,8 +1470,9 @@
   DEP_CPP_MOD_AUT=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1388,9 +1486,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_AUT=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_autoindex.obj" : $(SOURCE) $(DEP_CPP_MOD_AUT) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1401,8 +1496,9 @@
   DEP_CPP_MOD_AUT=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1415,9 +1511,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_AUT=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_autoindex.obj"	"$(INTDIR)\mod_autoindex.sbr" : $(SOURCE)\
  @@ -1434,8 +1535,9 @@
   DEP_CPP_MOD_C=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_config.h"\
  @@ -1450,9 +1552,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_C=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_cgi.obj" : $(SOURCE) $(DEP_CPP_MOD_C) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1463,8 +1562,9 @@
   DEP_CPP_MOD_C=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_config.h"\
  @@ -1478,9 +1578,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_C=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_cgi.obj"	"$(INTDIR)\mod_cgi.sbr" : $(SOURCE) $(DEP_CPP_MOD_C)\
  @@ -1497,8 +1602,9 @@
   DEP_CPP_MOD_D=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1512,9 +1618,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_D=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_dir.obj" : $(SOURCE) $(DEP_CPP_MOD_D) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1525,8 +1628,9 @@
   DEP_CPP_MOD_D=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1539,9 +1643,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_D=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_dir.obj"	"$(INTDIR)\mod_dir.sbr" : $(SOURCE) $(DEP_CPP_MOD_D)\
  @@ -1558,8 +1667,9 @@
   DEP_CPP_MOD_E=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\httpd.h"\
  @@ -1567,9 +1677,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_E=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_env.obj" : $(SOURCE) $(DEP_CPP_MOD_E) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1580,17 +1687,23 @@
   DEP_CPP_MOD_E=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_E=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_env.obj"	"$(INTDIR)\mod_env.sbr" : $(SOURCE) $(DEP_CPP_MOD_E)\
  @@ -1607,8 +1720,9 @@
   DEP_CPP_MOD_I=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1622,9 +1736,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_I=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_imap.obj" : $(SOURCE) $(DEP_CPP_MOD_I) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1635,8 +1746,9 @@
   DEP_CPP_MOD_I=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1649,9 +1761,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_I=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_imap.obj"	"$(INTDIR)\mod_imap.sbr" : $(SOURCE) $(DEP_CPP_MOD_I)\
  @@ -1668,8 +1785,9 @@
   DEP_CPP_MOD_IN=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1683,9 +1801,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_IN=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_include.obj" : $(SOURCE) $(DEP_CPP_MOD_IN) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1696,8 +1811,9 @@
   DEP_CPP_MOD_IN=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1710,9 +1826,16 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_IN=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
  +	".\modules\standard\config.h"\
  +	".\modules\standard\modules\perl\mod_perl.h"\
   	
   
   "$(INTDIR)\mod_include.obj"	"$(INTDIR)\mod_include.sbr" : $(SOURCE)\
  @@ -1729,8 +1852,9 @@
   DEP_CPP_MOD_IS=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1743,9 +1867,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_IS=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_isapi.obj" : $(SOURCE) $(DEP_CPP_MOD_IS) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1756,8 +1877,9 @@
   DEP_CPP_MOD_IS=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1769,9 +1891,13 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_IS=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_isapi.obj"	"$(INTDIR)\mod_isapi.sbr" : $(SOURCE)\
  @@ -1788,8 +1914,9 @@
   DEP_CPP_MOD_L=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1799,9 +1926,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_L=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_log_config.obj" : $(SOURCE) $(DEP_CPP_MOD_L) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1812,8 +1936,9 @@
   DEP_CPP_MOD_L=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1822,9 +1947,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_L=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_log_config.obj"	"$(INTDIR)\mod_log_config.sbr" : $(SOURCE)\
  @@ -1841,8 +1971,9 @@
   DEP_CPP_MOD_M=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_log.h"\
  @@ -1851,9 +1982,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_M=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_mime.obj" : $(SOURCE) $(DEP_CPP_MOD_M) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1864,17 +1992,24 @@
   DEP_CPP_MOD_M=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
  +	".\include\http_log.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_M=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_mime.obj"	"$(INTDIR)\mod_mime.sbr" : $(SOURCE) $(DEP_CPP_MOD_M)\
  @@ -1891,8 +2026,9 @@
   DEP_CPP_MOD_N=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1904,9 +2040,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_N=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_negotiation.obj" : $(SOURCE) $(DEP_CPP_MOD_N) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1917,8 +2050,9 @@
   DEP_CPP_MOD_N=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1929,9 +2063,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_N=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_negotiation.obj"	"$(INTDIR)\mod_negotiation.sbr" : $(SOURCE)\
  @@ -1948,8 +2087,9 @@
   DEP_CPP_MOD_S=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1959,9 +2099,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_S=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_setenvif.obj" : $(SOURCE) $(DEP_CPP_MOD_S) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1972,8 +2109,9 @@
   DEP_CPP_MOD_S=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_core.h"\
  @@ -1982,9 +2120,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_S=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_setenvif.obj"	"$(INTDIR)\mod_setenvif.sbr" : $(SOURCE)\
  @@ -2001,8 +2144,9 @@
   DEP_CPP_MOD_SO=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_log.h"\
  @@ -2011,9 +2155,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_SO=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_so.obj" : $(SOURCE) $(DEP_CPP_MOD_SO) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2024,8 +2165,9 @@
   DEP_CPP_MOD_SO=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\http_log.h"\
  @@ -2033,9 +2175,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_SO=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_so.obj"	"$(INTDIR)\mod_so.sbr" : $(SOURCE) $(DEP_CPP_MOD_SO)\
  @@ -2052,8 +2199,9 @@
   DEP_CPP_MOD_U=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\httpd.h"\
  @@ -2061,9 +2209,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MOD_U=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\mod_userdir.obj" : $(SOURCE) $(DEP_CPP_MOD_U) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2074,17 +2219,23 @@
   DEP_CPP_MOD_U=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MOD_U=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_userdir.obj"	"$(INTDIR)\mod_userdir.sbr" : $(SOURCE)\
  @@ -2101,8 +2252,9 @@
   DEP_CPP_MODUL=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\httpd.h"\
  @@ -2110,9 +2262,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_MODUL=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\modules.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2123,17 +2272,22 @@
   DEP_CPP_MODUL=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_config.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MODUL=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\modules.obj"	"$(INTDIR)\modules.sbr" : $(SOURCE) $(DEP_CPP_MODUL)\
  @@ -2148,14 +2302,12 @@
   !IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   DEP_CPP_MULTI=\
  -	".\include\conf.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\hsregex.h"\
   	".\include\multithread.h"\
   	".\os\win32\os.h"\
   	
  -NODEP_CPP_MULTI=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\multithread.obj" : $(SOURCE) $(DEP_CPP_MULTI) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2164,13 +2316,16 @@
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
   DEP_CPP_MULTI=\
  -	".\include\conf.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\hsregex.h"\
   	".\include\multithread.h"\
   	".\os\win32\os.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_MULTI=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
   	
   
   "$(INTDIR)\multithread.obj"	"$(INTDIR)\multithread.sbr" : $(SOURCE)\
  @@ -2209,8 +2364,9 @@
   DEP_CPP_REGIS=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_log.h"\
   	".\include\httpd.h"\
  @@ -2218,9 +2374,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_REGIS=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\registry.obj" : $(SOURCE) $(DEP_CPP_REGIS) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2231,17 +2384,22 @@
   DEP_CPP_REGIS=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_log.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_REGIS=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\registry.obj"	"$(INTDIR)\registry.sbr" : $(SOURCE) $(DEP_CPP_REGIS)\
  @@ -2258,8 +2416,9 @@
   DEP_CPP_RFC14=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_log.h"\
   	".\include\http_main.h"\
  @@ -2269,9 +2428,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_RFC14=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\rfc1413.obj" : $(SOURCE) $(DEP_CPP_RFC14) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2282,8 +2438,9 @@
   DEP_CPP_RFC14=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_log.h"\
   	".\include\http_main.h"\
  @@ -2292,9 +2449,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_RFC14=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\rfc1413.obj"	"$(INTDIR)\rfc1413.sbr" : $(SOURCE) $(DEP_CPP_RFC14)\
  @@ -2311,8 +2473,9 @@
   DEP_CPP_SERVI=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_log.h"\
  @@ -2325,9 +2488,6 @@
   	".\os\win32\registry.h"\
   	".\os\win32\service.h"\
   	
  -NODEP_CPP_SERVI=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\service.obj" : $(SOURCE) $(DEP_CPP_SERVI) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2338,8 +2498,9 @@
   DEP_CPP_SERVI=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_log.h"\
  @@ -2351,9 +2512,13 @@
   	".\os\win32\readdir.h"\
   	".\os\win32\registry.h"\
   	".\os\win32\service.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_SERVI=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\service.obj"	"$(INTDIR)\service.sbr" : $(SOURCE) $(DEP_CPP_SERVI)\
  @@ -2370,8 +2535,9 @@
   DEP_CPP_UTIL_=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_log.h"\
  @@ -2381,9 +2547,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_UTIL_=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\util.obj" : $(SOURCE) $(DEP_CPP_UTIL_) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2394,18 +2557,25 @@
   DEP_CPP_UTIL_=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_log.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
  +	".\main\test_char.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_UTIL_=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\util.obj"	"$(INTDIR)\util.sbr" : $(SOURCE) $(DEP_CPP_UTIL_)\
  @@ -2420,14 +2590,12 @@
   !IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   DEP_CPP_UTIL_D=\
  -	".\include\conf.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\hsregex.h"\
   	".\include\util_date.h"\
   	".\os\win32\os.h"\
   	
  -NODEP_CPP_UTIL_D=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\util_date.obj" : $(SOURCE) $(DEP_CPP_UTIL_D) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2436,13 +2604,17 @@
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
   DEP_CPP_UTIL_D=\
  -	".\include\conf.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\hsregex.h"\
   	".\include\util_date.h"\
   	".\os\win32\os.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_UTIL_D=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\os.h"\
   	
   
   "$(INTDIR)\util_date.obj"	"$(INTDIR)\util_date.sbr" : $(SOURCE)\
  @@ -2459,9 +2631,10 @@
   DEP_CPP_UTIL_M=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\ap_md5.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\httpd.h"\
   	".\include\util_md5.h"\
  @@ -2469,9 +2642,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_UTIL_M=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\util_md5.obj" : $(SOURCE) $(DEP_CPP_UTIL_M) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2482,18 +2652,24 @@
   DEP_CPP_UTIL_M=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
  +	".\include\ap_md5.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\httpd.h"\
   	".\include\util_md5.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_UTIL_M=\
  -	".\include\hide.h"\
  -	".\include\md5.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\util_md5.obj"	"$(INTDIR)\util_md5.sbr" : $(SOURCE) $(DEP_CPP_UTIL_M)\
  @@ -2510,8 +2686,9 @@
   DEP_CPP_UTIL_S=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_config.h"\
  @@ -2527,9 +2704,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_UTIL_S=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\util_script.obj" : $(SOURCE) $(DEP_CPP_UTIL_S) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2540,8 +2714,9 @@
   DEP_CPP_UTIL_S=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_config.h"\
  @@ -2556,9 +2731,14 @@
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_UTIL_S=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\util_script.obj"	"$(INTDIR)\util_script.sbr" : $(SOURCE)\
  @@ -2575,8 +2755,9 @@
   DEP_CPP_UTIL_U=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_log.h"\
  @@ -2586,9 +2767,6 @@
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_UTIL_U=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\util_uri.obj" : $(SOURCE) $(DEP_CPP_UTIL_U) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2599,18 +2777,25 @@
   DEP_CPP_UTIL_U=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
   	".\include\http_conf_globals.h"\
   	".\include\http_log.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
  +	".\main\uri_delims.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_UTIL_U=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\os.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\util_uri.obj"	"$(INTDIR)\util_uri.sbr" : $(SOURCE) $(DEP_CPP_UTIL_U)\
  @@ -2627,17 +2812,16 @@
   DEP_CPP_UTIL_W=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
  +	".\include\http_log.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
   	
  -NODEP_CPP_UTIL_W=\
  -	".\include\apctype.h"\
  -	
   
   "$(INTDIR)\util_win32.obj" : $(SOURCE) $(DEP_CPP_UTIL_W) "$(INTDIR)"
   	$(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2648,16 +2832,22 @@
   DEP_CPP_UTIL_W=\
   	".\include\alloc.h"\
   	".\include\ap.h"\
  +	".\include\ap_config.h"\
  +	".\include\ap_ctype.h"\
   	".\include\buff.h"\
  -	".\include\conf.h"\
   	".\include\hsregex.h"\
  +	".\include\http_log.h"\
   	".\include\httpd.h"\
   	".\include\util_uri.h"\
   	".\os\win32\os.h"\
   	".\os\win32\readdir.h"\
  +	{$(INCLUDE)}"sys\stat.h"\
  +	{$(INCLUDE)}"sys\types.h"\
   	
   NODEP_CPP_UTIL_W=\
  -	".\include\hide.h"\
  +	".\include\ap_config_auto.h"\
  +	".\include\ebcdic.h"\
  +	".\include\sfio.h"\
   	
   
   "$(INTDIR)\util_win32.obj"	"$(INTDIR)\util_win32.sbr" : $(SOURCE)\
  
  
  
  1.45      +2 -2      apache-1.3/src/include/http_protocol.h
  
  Index: http_protocol.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/http_protocol.h,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- http_protocol.h	1998/07/01 21:19:51	1.44
  +++ http_protocol.h	1998/08/09 14:33:10	1.45
  @@ -89,12 +89,12 @@
   
   /* Send the response to special method requests */
   
  -int ap_send_http_trace(request_rec *r);
  +API_EXPORT(int) ap_send_http_trace(request_rec *r);
   int ap_send_http_options(request_rec *r);
   
   /* Finish up stuff after a request */
   
  -void ap_finalize_request_protocol(request_rec *r);
  +API_EXPORT(void) ap_finalize_request_protocol(request_rec *r);
   
   /* Send error back to client... last arg indicates error status in case
    * we get an error in the process of trying to deal with an ErrorDocument
  
  
  
  1.25      +1 -1      apache-1.3/src/include/http_request.h
  
  Index: http_request.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/http_request.h,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- http_request.h	1998/05/03 17:31:09	1.24
  +++ http_request.h	1998/08/09 14:33:10	1.25
  @@ -104,7 +104,7 @@
   #ifdef CORE_PRIVATE
   /* Function called by main.c to handle first-level request */
   void ap_process_request(request_rec *);
  -void ap_die(int type, request_rec *r);
  +API_EXPORT(void) ap_die(int type, request_rec *r);
   #endif
   
   #ifdef __cplusplus
  
  
  
  1.232     +2 -2      apache-1.3/src/main/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/http_protocol.c,v
  retrieving revision 1.231
  retrieving revision 1.232
  diff -u -r1.231 -r1.232
  --- http_protocol.c	1998/08/09 12:36:32	1.231
  +++ http_protocol.c	1998/08/09 14:33:11	1.232
  @@ -1141,7 +1141,7 @@
                          NULL);
   }
   
  -int ap_send_http_trace(request_rec *r)
  +API_EXPORT(int) ap_send_http_trace(request_rec *r)
   {
       int rv;
   
  @@ -1304,7 +1304,7 @@
    * information for any wrappers around the response message body
    * (i.e., transfer encodings).  It should have been named finalize_response.
    */
  -void ap_finalize_request_protocol(request_rec *r)
  +API_EXPORT(void) ap_finalize_request_protocol(request_rec *r)
   {
       if (r->chunked && !r->connection->aborted) {
           /*
  
  
  
  1.129     +1 -1      apache-1.3/src/main/http_request.c
  
  Index: http_request.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/http_request.c,v
  retrieving revision 1.128
  retrieving revision 1.129
  diff -u -r1.128 -r1.129
  --- http_request.c	1998/08/08 13:26:06	1.128
  +++ http_request.c	1998/08/09 14:33:11	1.129
  @@ -873,7 +873,7 @@
    * Mainline request processing...
    */
   
  -void ap_die(int type, request_rec *r)
  +API_EXPORT(void) ap_die(int type, request_rec *r)
   {
       int error_index = ap_index_of_response(type);
       char *custom_response = ap_response_code_string(r, error_index);
  
  
  
  1.13      +94 -89    apache-1.3/src/modules/proxy/ApacheModuleProxy.mak
  
  Index: ApacheModuleProxy.mak
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/ApacheModuleProxy.mak,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- ApacheModuleProxy.mak	1998/05/29 18:20:58	1.12
  +++ ApacheModuleProxy.mak	1998/08/09 14:33:13	1.13
  @@ -30,10 +30,6 @@
   NULL=nul
   !ENDIF 
   
  -CPP=cl.exe
  -MTL=midl.exe
  -RSC=rc.exe
  -
   !IF  "$(CFG)" == "ApacheModuleProxy - Win32 Release"
   
   OUTDIR=.\Release
  @@ -67,12 +63,46 @@
   "$(OUTDIR)" :
       if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
   
  +CPP=cl.exe
   CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "WIN32" /D\
    "_WINDOWS" /D "SHARED_MODULE" /Fp"$(INTDIR)\ApacheModuleProxy.pch" /YX\
    /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
   CPP_OBJS=.\Release/
   CPP_SBRS=.
  +
  +.c{$(CPP_OBJS)}.obj::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cpp{$(CPP_OBJS)}.obj::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cxx{$(CPP_OBJS)}.obj::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.c{$(CPP_SBRS)}.sbr::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cpp{$(CPP_SBRS)}.sbr::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +.cxx{$(CPP_SBRS)}.sbr::
  +   $(CPP) @<<
  +   $(CPP_PROJ) $< 
  +<<
  +
  +MTL=midl.exe
   MTL_PROJ=/nologo /D "NDEBUG" /mktyplib203 /win32 
  +RSC=rc.exe
   BSC32=bscmake.exe
   BSC32_FLAGS=/nologo /o"$(OUTDIR)\ApacheModuleProxy.bsc" 
   BSC32_SBRS= \
  @@ -132,36 +162,12 @@
   "$(OUTDIR)" :
       if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
   
  -CPP_PROJ=/nologo /MDd /W4 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D\
  +CPP=cl.exe
  +CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D\
    "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /Fp"$(INTDIR)\ApacheModuleProxy.pch"\
    /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
   CPP_OBJS=.\Debug/
   CPP_SBRS=.
  -MTL_PROJ=/nologo /D "_DEBUG" /mktyplib203 /win32 
  -BSC32=bscmake.exe
  -BSC32_FLAGS=/nologo /o"$(OUTDIR)\ApacheModuleProxy.bsc" 
  -BSC32_SBRS= \
  -	
  -LINK32=link.exe
  -LINK32_FLAGS=..\..\CoreD\ApacheCore.lib kernel32.lib user32.lib gdi32.lib\
  - winspool.lib comdlg32.lib advapi32.lib shell32.lib wsock32.lib /nologo\
  - /subsystem:windows /dll /incremental:yes /pdb:"$(OUTDIR)\ApacheModuleProxy.pdb"\
  - /debug /machine:I386 /out:"$(OUTDIR)\ApacheModuleProxy.dll"\
  - /implib:"$(OUTDIR)\ApacheModuleProxy.lib" 
  -LINK32_OBJS= \
  -	"$(INTDIR)\mod_proxy.obj" \
  -	"$(INTDIR)\proxy_cache.obj" \
  -	"$(INTDIR)\proxy_connect.obj" \
  -	"$(INTDIR)\proxy_ftp.obj" \
  -	"$(INTDIR)\proxy_http.obj" \
  -	"$(INTDIR)\proxy_util.obj"
  -
  -"$(OUTDIR)\ApacheModuleProxy.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
  -    $(LINK32) @<<
  -  $(LINK32_FLAGS) $(LINK32_OBJS)
  -<<
  -
  -!ENDIF 
   
   .c{$(CPP_OBJS)}.obj::
      $(CPP) @<<
  @@ -193,7 +199,35 @@
      $(CPP_PROJ) $< 
   <<
   
  +MTL=midl.exe
  +MTL_PROJ=/nologo /D "_DEBUG" /mktyplib203 /win32 
  +RSC=rc.exe
  +BSC32=bscmake.exe
  +BSC32_FLAGS=/nologo /o"$(OUTDIR)\ApacheModuleProxy.bsc" 
  +BSC32_SBRS= \
  +	
  +LINK32=link.exe
  +LINK32_FLAGS=..\..\CoreD\ApacheCore.lib kernel32.lib user32.lib gdi32.lib\
  + winspool.lib comdlg32.lib advapi32.lib shell32.lib wsock32.lib /nologo\
  + /subsystem:windows /dll /incremental:yes /pdb:"$(OUTDIR)\ApacheModuleProxy.pdb"\
  + /debug /machine:I386 /out:"$(OUTDIR)\ApacheModuleProxy.dll"\
  + /implib:"$(OUTDIR)\ApacheModuleProxy.lib" 
  +LINK32_OBJS= \
  +	"$(INTDIR)\mod_proxy.obj" \
  +	"$(INTDIR)\proxy_cache.obj" \
  +	"$(INTDIR)\proxy_connect.obj" \
  +	"$(INTDIR)\proxy_ftp.obj" \
  +	"$(INTDIR)\proxy_http.obj" \
  +	"$(INTDIR)\proxy_util.obj"
   
  +"$(OUTDIR)\ApacheModuleProxy.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
  +    $(LINK32) @<<
  +  $(LINK32_FLAGS) $(LINK32_OBJS)
  +<<
  +
  +!ENDIF 
  +
  +
   !IF "$(CFG)" == "ApacheModuleProxy - Win32 Release" || "$(CFG)" ==\
    "ApacheModuleProxy - Win32 Debug"
   SOURCE=.\mod_proxy.c
  @@ -203,26 +237,21 @@
   DEP_CPP_MOD_P=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
   	"..\..\include\http_log.h"\
   	"..\..\include\http_protocol.h"\
  +	"..\..\include\http_request.h"\
   	"..\..\include\http_vhost.h"\
   	"..\..\include\httpd.h"\
   	"..\..\include\util_uri.h"\
   	"..\..\os\win32\os.h"\
   	"..\..\os\win32\readdir.h"\
   	".\mod_proxy.h"\
  -	{$(INCLUDE)}"sys\stat.h"\
  -	{$(INCLUDE)}"sys\types.h"\
  -	
  -NODEP_CPP_MOD_P=\
  -	"..\..\include\ebcdic.h"\
  -	"..\..\include\os.h"\
  -	"..\..\include\sfio.h"\
   	
   
   "$(INTDIR)\mod_proxy.obj" : $(SOURCE) $(DEP_CPP_MOD_P) "$(INTDIR)"
  @@ -233,8 +262,9 @@
   DEP_CPP_MOD_P=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  @@ -260,8 +290,10 @@
   DEP_CPP_PROXY=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
  +	"..\..\include\ap_md5.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  @@ -269,21 +301,12 @@
   	"..\..\include\http_main.h"\
   	"..\..\include\http_protocol.h"\
   	"..\..\include\httpd.h"\
  -	"..\..\include\ap_md5.h"\
   	"..\..\include\multithread.h"\
   	"..\..\include\util_date.h"\
   	"..\..\include\util_uri.h"\
   	"..\..\os\win32\os.h"\
   	"..\..\os\win32\readdir.h"\
   	".\mod_proxy.h"\
  -	{$(INCLUDE)}"sys\stat.h"\
  -	{$(INCLUDE)}"sys\types.h"\
  -	{$(INCLUDE)}"sys\utime.h"\
  -	
  -NODEP_CPP_PROXY=\
  -	"..\..\include\ebcdic.h"\
  -	"..\..\include\os.h"\
  -	"..\..\include\sfio.h"\
   	
   
   "$(INTDIR)\proxy_cache.obj" : $(SOURCE) $(DEP_CPP_PROXY) "$(INTDIR)"
  @@ -294,8 +317,10 @@
   DEP_CPP_PROXY=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
  +	"..\..\include\ap_md5.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  @@ -303,7 +328,6 @@
   	"..\..\include\http_main.h"\
   	"..\..\include\http_protocol.h"\
   	"..\..\include\httpd.h"\
  -	"..\..\include\ap_md5.h"\
   	"..\..\include\multithread.h"\
   	"..\..\include\util_date.h"\
   	"..\..\include\util_uri.h"\
  @@ -324,8 +348,9 @@
   DEP_CPP_PROXY_=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  @@ -337,14 +362,7 @@
   	"..\..\os\win32\os.h"\
   	"..\..\os\win32\readdir.h"\
   	".\mod_proxy.h"\
  -	{$(INCLUDE)}"sys\stat.h"\
  -	{$(INCLUDE)}"sys\types.h"\
   	
  -NODEP_CPP_PROXY_=\
  -	"..\..\include\ebcdic.h"\
  -	"..\..\include\os.h"\
  -	"..\..\include\sfio.h"\
  -	
   
   "$(INTDIR)\proxy_connect.obj" : $(SOURCE) $(DEP_CPP_PROXY_) "$(INTDIR)"
   
  @@ -354,8 +372,9 @@
   DEP_CPP_PROXY_=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  @@ -381,8 +400,9 @@
   DEP_CPP_PROXY_F=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  @@ -394,13 +414,6 @@
   	"..\..\os\win32\os.h"\
   	"..\..\os\win32\readdir.h"\
   	".\mod_proxy.h"\
  -	{$(INCLUDE)}"sys\stat.h"\
  -	{$(INCLUDE)}"sys\types.h"\
  -	
  -NODEP_CPP_PROXY_F=\
  -	"..\..\include\ebcdic.h"\
  -	"..\..\include\os.h"\
  -	"..\..\include\sfio.h"\
   	
   
   "$(INTDIR)\proxy_ftp.obj" : $(SOURCE) $(DEP_CPP_PROXY_F) "$(INTDIR)"
  @@ -411,11 +424,13 @@
   DEP_CPP_PROXY_F=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  +	"..\..\include\http_log.h"\
   	"..\..\include\http_main.h"\
   	"..\..\include\http_protocol.h"\
   	"..\..\include\httpd.h"\
  @@ -437,8 +452,9 @@
   DEP_CPP_PROXY_H=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  @@ -452,14 +468,7 @@
   	"..\..\os\win32\os.h"\
   	"..\..\os\win32\readdir.h"\
   	".\mod_proxy.h"\
  -	{$(INCLUDE)}"sys\stat.h"\
  -	{$(INCLUDE)}"sys\types.h"\
   	
  -NODEP_CPP_PROXY_H=\
  -	"..\..\include\ebcdic.h"\
  -	"..\..\include\os.h"\
  -	"..\..\include\sfio.h"\
  -	
   
   "$(INTDIR)\proxy_http.obj" : $(SOURCE) $(DEP_CPP_PROXY_H) "$(INTDIR)"
   
  @@ -469,8 +478,9 @@
   DEP_CPP_PROXY_H=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  @@ -498,8 +508,10 @@
   DEP_CPP_PROXY_U=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
  +	"..\..\include\ap_md5.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  @@ -507,20 +519,12 @@
   	"..\..\include\http_main.h"\
   	"..\..\include\http_protocol.h"\
   	"..\..\include\httpd.h"\
  -	"..\..\include\ap_md5.h"\
   	"..\..\include\multithread.h"\
   	"..\..\include\util_uri.h"\
   	"..\..\os\win32\os.h"\
   	"..\..\os\win32\readdir.h"\
   	".\mod_proxy.h"\
  -	{$(INCLUDE)}"sys\stat.h"\
  -	{$(INCLUDE)}"sys\types.h"\
   	
  -NODEP_CPP_PROXY_U=\
  -	"..\..\include\ebcdic.h"\
  -	"..\..\include\os.h"\
  -	"..\..\include\sfio.h"\
  -	
   
   "$(INTDIR)\proxy_util.obj" : $(SOURCE) $(DEP_CPP_PROXY_U) "$(INTDIR)"
   
  @@ -530,8 +534,10 @@
   DEP_CPP_PROXY_U=\
   	"..\..\include\alloc.h"\
   	"..\..\include\ap.h"\
  +	"..\..\include\ap_config.h"\
  +	"..\..\include\ap_ctype.h"\
  +	"..\..\include\ap_md5.h"\
   	"..\..\include\buff.h"\
  -	"..\..\include\conf.h"\
   	"..\..\include\explain.h"\
   	"..\..\include\hsregex.h"\
   	"..\..\include\http_config.h"\
  @@ -539,7 +545,6 @@
   	"..\..\include\http_main.h"\
   	"..\..\include\http_protocol.h"\
   	"..\..\include\httpd.h"\
  -	"..\..\include\ap_md5.h"\
   	"..\..\include\multithread.h"\
   	"..\..\include\util_uri.h"\
   	"..\..\os\win32\os.h"\