pcs         98/01/04 05:06:11

  Modified:    src      ApacheCore.dsp ApacheCore.mak
  Log:
  Build apache using the ap library on Win32.
  
  Revision  Changes    Path
  1.16      +2 -6      apachen/src/ApacheCore.dsp
  
  Index: ApacheCore.dsp
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/ApacheCore.dsp,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- ApacheCore.dsp    1997/12/24 12:37:07     1.15
  +++ ApacheCore.dsp    1998/01/04 13:06:09     1.16
  @@ -54,7 +54,7 @@
   # 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 /dll /machine:I386
  -# ADD LINK32 os\win32\ApacheOSR\ApacheOS.lib regex\release\regex.lib 
kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib 
shell32.lib wsock32.lib /nologo /subsystem:windows /dll /machine:I386
  +# ADD LINK32 os\win32\ApacheOSR\ApacheOS.lib regex\release\regex.lib 
ap\Release\ap.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib 
advapi32.lib shell32.lib wsock32.lib /nologo /subsystem:windows /dll 
/machine:I386
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  @@ -80,7 +80,7 @@
   # 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 /dll /debug /machine:I386
  -# ADD LINK32 os\win32\ApacheOSD\ApacheOS.lib regex\debug\regex.lib 
kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib 
shell32.lib wsock32.lib /nologo /subsystem:windows /dll /debug /machine:I386
  +# ADD LINK32 os\win32\ApacheOSD\ApacheOS.lib regex\debug\regex.lib 
ap\Debug\ap.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib 
advapi32.lib shell32.lib wsock32.lib /nologo /subsystem:windows /dll /debug 
/machine:I386
   
   !ENDIF 
   
  @@ -94,10 +94,6 @@
   # Begin Source File
   
   SOURCE=.\main\alloc.c
  -# End Source File
  -# Begin Source File
  -
  -SOURCE=.\ap\ap_snprintf.c
   # End Source File
   # Begin Source File
   
  
  
  
  1.26      +338 -920  apachen/src/ApacheCore.mak
  
  Index: ApacheCore.mak
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/ApacheCore.mak,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- ApacheCore.mak    1997/12/30 16:42:31     1.25
  +++ ApacheCore.mak    1998/01/04 13:06:09     1.26
  @@ -52,9 +52,6 @@
   
   CLEAN :
        [EMAIL PROTECTED] "$(INTDIR)\alloc.obj"
  -     [EMAIL PROTECTED] "$(INTDIR)\ap_cpystrn.obj"
  -     [EMAIL PROTECTED] "$(INTDIR)\ap_snprintf.obj"
  -     [EMAIL PROTECTED] "$(INTDIR)\ap_strings.obj"
        [EMAIL PROTECTED] "$(INTDIR)\buff.obj"
        [EMAIL PROTECTED] "$(INTDIR)\buildmark.obj"
        [EMAIL PROTECTED] "$(INTDIR)\explain.obj"
  @@ -98,16 +95,14 @@
        [EMAIL PROTECTED] "$(INTDIR)\util_script.obj"
        [EMAIL PROTECTED] "$(INTDIR)\util_win32.obj"
        [EMAIL PROTECTED] "$(INTDIR)\vc50.idb"
  -     [EMAIL PROTECTED] "$(INTDIR)\vc50.pdb"
        [EMAIL PROTECTED] "$(OUTDIR)\ApacheCore.dll"
        [EMAIL PROTECTED] "$(OUTDIR)\ApacheCore.exp"
        [EMAIL PROTECTED] "$(OUTDIR)\ApacheCore.lib"
  -     [EMAIL PROTECTED] "$(OUTDIR)\ApacheCore.pdb"
   
   "$(OUTDIR)" :
       if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
   
  -CPP_PROJ=/nologo /MD /W3 /GX /Zi /O2 /I ".\regex" /I ".\main" /D "WIN32" /D\
  +CPP_PROJ=/nologo /MD /W3 /GX /O2 /I ".\regex" /I ".\main" /D "WIN32" /D\
    "NDEBUG" /D "_WINDOWS" /Fp"$(INTDIR)\ApacheCore.pch" /YX /Fo"$(INTDIR)\\"\
    /Fd"$(INTDIR)\\" /FD /c 
   CPP_OBJS=.\CoreR/
  @@ -119,17 +114,15 @@
        
   LINK32=link.exe
   LINK32_FLAGS=os\win32\ApacheOSR\ApacheOS.lib regex\release\regex.lib\
  - kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib\
  - shell32.lib wsock32.lib /nologo /subsystem:windows /dll /incremental:no\
  - /pdb:"$(OUTDIR)\ApacheCore.pdb" /debug /machine:I386 
/def:".\ApacheCore.def"\
  - /out:"$(OUTDIR)\ApacheCore.dll" /implib:"$(OUTDIR)\ApacheCore.lib" 
  + ap\Release\ap.lib kernel32.lib user32.lib gdi32.lib winspool.lib 
comdlg32.lib\
  + advapi32.lib shell32.lib wsock32.lib /nologo /subsystem:windows /dll\
  + /incremental:no /pdb:"$(OUTDIR)\ApacheCore.pdb" /machine:I386\
  + /def:".\ApacheCore.def" /out:"$(OUTDIR)\ApacheCore.dll"\
  + /implib:"$(OUTDIR)\ApacheCore.lib" 
   DEF_FILE= \
        ".\ApacheCore.def"
   LINK32_OBJS= \
        "$(INTDIR)\alloc.obj" \
  -     "$(INTDIR)\ap_cpystrn.obj" \
  -     "$(INTDIR)\ap_snprintf.obj" \
  -     "$(INTDIR)\ap_strings.obj" \
        "$(INTDIR)\buff.obj" \
        "$(INTDIR)\buildmark.obj" \
        "$(INTDIR)\explain.obj" \
  @@ -199,12 +192,6 @@
   CLEAN :
        [EMAIL PROTECTED] "$(INTDIR)\alloc.obj"
        [EMAIL PROTECTED] "$(INTDIR)\alloc.sbr"
  -     [EMAIL PROTECTED] "$(INTDIR)\ap_cpystrn.obj"
  -     [EMAIL PROTECTED] "$(INTDIR)\ap_cpystrn.sbr"
  -     [EMAIL PROTECTED] "$(INTDIR)\ap_snprintf.obj"
  -     [EMAIL PROTECTED] "$(INTDIR)\ap_snprintf.sbr"
  -     [EMAIL PROTECTED] "$(INTDIR)\ap_strings.obj"
  -     [EMAIL PROTECTED] "$(INTDIR)\ap_strings.sbr"
        [EMAIL PROTECTED] "$(INTDIR)\buff.obj"
        [EMAIL PROTECTED] "$(INTDIR)\buff.sbr"
        [EMAIL PROTECTED] "$(INTDIR)\buildmark.obj"
  @@ -311,9 +298,6 @@
   BSC32_FLAGS=/nologo /o"$(OUTDIR)\ApacheCore.bsc" 
   BSC32_SBRS= \
        "$(INTDIR)\alloc.sbr" \
  -     "$(INTDIR)\ap_cpystrn.sbr" \
  -     "$(INTDIR)\ap_snprintf.sbr" \
  -     "$(INTDIR)\ap_strings.sbr" \
        "$(INTDIR)\buff.sbr" \
        "$(INTDIR)\buildmark.sbr" \
        "$(INTDIR)\explain.sbr" \
  @@ -363,18 +347,16 @@
   <<
   
   LINK32=link.exe
  -LINK32_FLAGS=os\win32\ApacheOSD\ApacheOS.lib regex\debug\regex.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)\ApacheCore.pdb" /debug /machine:I386 
/def:".\ApacheCore.def"\
  - /out:"$(OUTDIR)\ApacheCore.dll" /implib:"$(OUTDIR)\ApacheCore.lib" 
  +LINK32_FLAGS=os\win32\ApacheOSD\ApacheOS.lib regex\debug\regex.lib\
  + ap\Debug\ap.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)\ApacheCore.pdb" /debug /machine:I386\
  + /def:".\ApacheCore.def" /out:"$(OUTDIR)\ApacheCore.dll"\
  + /implib:"$(OUTDIR)\ApacheCore.lib" 
   DEF_FILE= \
        ".\ApacheCore.def"
   LINK32_OBJS= \
        "$(INTDIR)\alloc.obj" \
  -     "$(INTDIR)\ap_cpystrn.obj" \
  -     "$(INTDIR)\ap_snprintf.obj" \
  -     "$(INTDIR)\ap_strings.obj" \
        "$(INTDIR)\buff.obj" \
        "$(INTDIR)\buildmark.obj" \
        "$(INTDIR)\explain.obj" \
  @@ -459,27 +441,6 @@
   !IF "$(CFG)" == "ApacheCore - Win32 Release" || "$(CFG)" ==\
    "ApacheCore - Win32 Debug"
   SOURCE=.\main\alloc.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
  -DEP_CPP_ALLOC=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_log.h"\
  -     ".\main\httpd.h"\
  -     ".\main\multithread.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
  -
  -"$(INTDIR)\alloc.obj" : $(SOURCE) $(DEP_CPP_ALLOC) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  -
   DEP_CPP_ALLOC=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -490,28 +451,10 @@
        ".\os\win32\os.h"\
        ".\os\win32\readdir.h"\
        ".\regex\regex.h"\
  -     
  -
  -"$(INTDIR)\alloc.obj"        "$(INTDIR)\alloc.sbr" : $(SOURCE) 
$(DEP_CPP_ALLOC)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ENDIF 
  -
  -SOURCE=.\ap\ap_cpystrn.c
  -DEP_CPP_AP_CP=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
        {$(INCLUDE)}"sys\stat.h"\
        {$(INCLUDE)}"sys\types.h"\
        
  -NODEP_CPP_AP_CP=\
  +NODEP_CPP_ALLOC=\
        ".\main\os.h"\
        ".\main\sfio.h"\
        
  @@ -519,80 +462,21 @@
   !IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -"$(INTDIR)\ap_cpystrn.obj" : $(SOURCE) $(DEP_CPP_AP_CP) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  -
  -
  -"$(INTDIR)\ap_cpystrn.obj"   "$(INTDIR)\ap_cpystrn.sbr" : $(SOURCE)\
  - $(DEP_CPP_AP_CP) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ENDIF 
  -
  -SOURCE=.\ap\ap_snprintf.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
  -DEP_CPP_AP_SN=\
  -     ".\main\conf.h"\
  -     ".\os\win32\os.h"\
  -     ".\regex\regex.h"\
  -     
  -
  -"$(INTDIR)\ap_snprintf.obj" : $(SOURCE) $(DEP_CPP_AP_SN) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  -
  -DEP_CPP_AP_SN=\
  -     ".\main\conf.h"\
  -     ".\os\win32\os.h"\
  -     ".\regex\regex.h"\
  -     
  -
  -"$(INTDIR)\ap_snprintf.obj"  "$(INTDIR)\ap_snprintf.sbr" : $(SOURCE)\
  - $(DEP_CPP_AP_SN) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ENDIF 
  -
  -SOURCE=.\ap\ap_strings.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
  -DEP_CPP_AP_ST=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
  -
  -"$(INTDIR)\ap_strings.obj" : $(SOURCE) $(DEP_CPP_AP_ST) "$(INTDIR)"
  +"$(INTDIR)\alloc.obj" : $(SOURCE) $(DEP_CPP_ALLOC) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
   
  -"$(INTDIR)\ap_strings.obj"   "$(INTDIR)\ap_strings.sbr" : $(SOURCE) 
"$(INTDIR)"
  +"$(INTDIR)\alloc.obj"        "$(INTDIR)\alloc.sbr" : $(SOURCE) 
$(DEP_CPP_ALLOC)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ENDIF 
   
   SOURCE=.\main\buff.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
   DEP_CPP_BUFF_=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -603,25 +487,23 @@
        ".\os\win32\os.h"\
        ".\os\win32\readdir.h"\
        ".\regex\regex.h"\
  +     {$(INCLUDE)}"sys\stat.h"\
  +     {$(INCLUDE)}"sys\types.h"\
  +     
  +NODEP_CPP_BUFF_=\
  +     ".\main\os.h"\
  +     ".\main\sfio.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
   "$(INTDIR)\buff.obj" : $(SOURCE) $(DEP_CPP_BUFF_) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_BUFF_=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
   "$(INTDIR)\buff.obj" "$(INTDIR)\buff.sbr" : $(SOURCE) $(DEP_CPP_BUFF_)\
    "$(INTDIR)"
  @@ -647,9 +529,6 @@
   !ENDIF 
   
   SOURCE=.\main\explain.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
   DEP_CPP_EXPLA=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -659,30 +538,23 @@
        ".\os\win32\os.h"\
        ".\os\win32\readdir.h"\
        ".\regex\regex.h"\
  +     {$(INCLUDE)}"sys\stat.h"\
  +     {$(INCLUDE)}"sys\types.h"\
  +     
  +NODEP_CPP_EXPLA=\
  +     ".\main\os.h"\
  +     ".\main\sfio.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
   "$(INTDIR)\explain.obj" : $(SOURCE) $(DEP_CPP_EXPLA) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_EXPLA=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\explain.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     {$(INCLUDE)}"sys\stat.h"\
  -     {$(INCLUDE)}"sys\types.h"\
  -     
  -NODEP_CPP_EXPLA=\
  -     ".\main\os.h"\
  -     ".\main\sfio.h"\
  -     
   
   "$(INTDIR)\explain.obj"      "$(INTDIR)\explain.sbr" : $(SOURCE) 
$(DEP_CPP_EXPLA)\
    "$(INTDIR)"
  @@ -732,25 +604,6 @@
   !ENDIF 
   
   SOURCE=.\main\http_bprintf.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
  -DEP_CPP_HTTP_=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
  -
  -"$(INTDIR)\http_bprintf.obj" : $(SOURCE) $(DEP_CPP_HTTP_) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  -
   DEP_CPP_HTTP_=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -767,40 +620,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\http_bprintf.obj" "$(INTDIR)\http_bprintf.sbr" : $(SOURCE)\
  - $(DEP_CPP_HTTP_) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\http_bprintf.obj" : $(SOURCE) $(DEP_CPP_HTTP_) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\main\http_config.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_HTTP_C=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\explain.h"\
  -     ".\main\http_conf_globals.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_request.h"\
  -     ".\main\http_vhost.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\http_config.obj" : $(SOURCE) $(DEP_CPP_HTTP_C) "$(INTDIR)"
  +"$(INTDIR)\http_bprintf.obj" "$(INTDIR)\http_bprintf.sbr" : $(SOURCE)\
  + $(DEP_CPP_HTTP_) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\main\http_config.c
   DEP_CPP_HTTP_C=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -824,46 +661,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\http_config.obj"  "$(INTDIR)\http_config.sbr" : $(SOURCE)\
  - $(DEP_CPP_HTTP_C) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\http_config.obj" : $(SOURCE) $(DEP_CPP_HTTP_C) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\main\http_core.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_HTTP_CO=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\fnmatch.h"\
  -     ".\main\http_conf_globals.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\http_vhost.h"\
  -     ".\main\httpd.h"\
  -     ".\main\md5.h"\
  -     ".\main\rfc1413.h"\
  -     ".\main\scoreboard.h"\
  -     ".\main\util_md5.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\http_core.obj" : $(SOURCE) $(DEP_CPP_HTTP_CO) "$(INTDIR)"
  +"$(INTDIR)\http_config.obj"  "$(INTDIR)\http_config.sbr" : $(SOURCE)\
  + $(DEP_CPP_HTTP_C) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\main\http_core.c
   DEP_CPP_HTTP_CO=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -893,37 +708,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\http_core.obj"    "$(INTDIR)\http_core.sbr" : $(SOURCE)\
  - $(DEP_CPP_HTTP_CO) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\http_core.obj" : $(SOURCE) $(DEP_CPP_HTTP_CO) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\main\http_log.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_HTTP_L=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\http_log.obj" : $(SOURCE) $(DEP_CPP_HTTP_L) "$(INTDIR)"
  +"$(INTDIR)\http_core.obj"    "$(INTDIR)\http_core.sbr" : $(SOURCE)\
  + $(DEP_CPP_HTTP_CO) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\main\http_log.c
   DEP_CPP_HTTP_L=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -944,46 +746,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\http_log.obj"     "$(INTDIR)\http_log.sbr" : $(SOURCE) 
$(DEP_CPP_HTTP_L)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\http_log.obj" : $(SOURCE) $(DEP_CPP_HTTP_L) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\main\http_main.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_HTTP_M=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\explain.h"\
  -     ".\main\http_conf_globals.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\http_vhost.h"\
  -     ".\main\httpd.h"\
  -     ".\main\multithread.h"\
  -     ".\main\scoreboard.h"\
  -     ".\os\win32\getopt.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\os\win32\service.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\http_main.obj" : $(SOURCE) $(DEP_CPP_HTTP_M) "$(INTDIR)"
  +"$(INTDIR)\http_log.obj"     "$(INTDIR)\http_log.sbr" : $(SOURCE) 
$(DEP_CPP_HTTP_L)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\main\http_main.c
   DEP_CPP_HTTP_M=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1013,42 +793,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\http_main.obj"    "$(INTDIR)\http_main.sbr" : $(SOURCE)\
  - $(DEP_CPP_HTTP_M) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\http_main.obj" : $(SOURCE) $(DEP_CPP_HTTP_M) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\main\http_protocol.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_HTTP_P=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_conf_globals.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\http_vhost.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_date.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\http_protocol.obj" : $(SOURCE) $(DEP_CPP_HTTP_P) "$(INTDIR)"
  +"$(INTDIR)\http_main.obj"    "$(INTDIR)\http_main.sbr" : $(SOURCE)\
  + $(DEP_CPP_HTTP_M) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\main\http_protocol.c
   DEP_CPP_HTTP_P=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1074,41 +836,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\http_protocol.obj"        "$(INTDIR)\http_protocol.sbr" : 
$(SOURCE)\
  - $(DEP_CPP_HTTP_P) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\http_protocol.obj" : $(SOURCE) $(DEP_CPP_HTTP_P) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\main\http_request.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_HTTP_R=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\fnmatch.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\scoreboard.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\http_request.obj" : $(SOURCE) $(DEP_CPP_HTTP_R) "$(INTDIR)"
  +"$(INTDIR)\http_protocol.obj"        "$(INTDIR)\http_protocol.sbr" : 
$(SOURCE)\
  + $(DEP_CPP_HTTP_P) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\main\http_request.c
   DEP_CPP_HTTP_R=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1133,38 +878,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\http_request.obj" "$(INTDIR)\http_request.sbr" : $(SOURCE)\
  - $(DEP_CPP_HTTP_R) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\http_request.obj" : $(SOURCE) $(DEP_CPP_HTTP_R) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\main\http_vhost.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_HTTP_V=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_conf_globals.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_vhost.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\http_vhost.obj" : $(SOURCE) $(DEP_CPP_HTTP_V) "$(INTDIR)"
  +"$(INTDIR)\http_request.obj" "$(INTDIR)\http_request.sbr" : $(SOURCE)\
  + $(DEP_CPP_HTTP_R) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\main\http_vhost.c
   DEP_CPP_HTTP_V=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1186,6 +917,16 @@
        ".\main\sfio.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
  +"$(INTDIR)\http_vhost.obj" : $(SOURCE) $(DEP_CPP_HTTP_V) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
  +
  +
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +
  +
   "$(INTDIR)\http_vhost.obj"   "$(INTDIR)\http_vhost.sbr" : $(SOURCE)\
    $(DEP_CPP_HTTP_V) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1194,28 +935,27 @@
   !ENDIF 
   
   SOURCE=.\main\md5c.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
   DEP_CPP_MD5C_=\
        ".\main\conf.h"\
        ".\main\md5.h"\
        ".\os\win32\os.h"\
        ".\regex\regex.h"\
  +     {$(INCLUDE)}"sys\stat.h"\
  +     {$(INCLUDE)}"sys\types.h"\
  +     
  +NODEP_CPP_MD5C_=\
  +     ".\main\os.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
   "$(INTDIR)\md5c.obj" : $(SOURCE) $(DEP_CPP_MD5C_) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MD5C_=\
  -     ".\main\conf.h"\
  -     ".\main\md5.h"\
  -     ".\os\win32\os.h"\
  -     ".\regex\regex.h"\
  -     
   
   "$(INTDIR)\md5c.obj" "$(INTDIR)\md5c.sbr" : $(SOURCE) $(DEP_CPP_MD5C_)\
    "$(INTDIR)"
  @@ -1225,29 +965,6 @@
   !ENDIF 
   
   SOURCE=.\modules\standard\mod_access.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
  -DEP_CPP_MOD_A=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
  -
  -"$(INTDIR)\mod_access.obj" : $(SOURCE) $(DEP_CPP_MOD_A) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  -
   DEP_CPP_MOD_A=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1268,40 +985,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_access.obj"   "$(INTDIR)\mod_access.sbr" : $(SOURCE)\
  - $(DEP_CPP_MOD_A) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_access.obj" : $(SOURCE) $(DEP_CPP_MOD_A) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_actions.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_AC=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_script.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_actions.obj" : $(SOURCE) $(DEP_CPP_MOD_AC) "$(INTDIR)"
  +"$(INTDIR)\mod_access.obj"   "$(INTDIR)\mod_access.sbr" : $(SOURCE)\
  + $(DEP_CPP_MOD_A) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_actions.c
   DEP_CPP_MOD_AC=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1325,34 +1026,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_actions.obj"  "$(INTDIR)\mod_actions.sbr" : $(SOURCE)\
  - $(DEP_CPP_MOD_AC) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_actions.obj" : $(SOURCE) $(DEP_CPP_MOD_AC) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_alias.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_AL=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_alias.obj" : $(SOURCE) $(DEP_CPP_MOD_AL) "$(INTDIR)"
  +"$(INTDIR)\mod_actions.obj"  "$(INTDIR)\mod_actions.sbr" : $(SOURCE)\
  + $(DEP_CPP_MOD_AC) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_alias.c
   DEP_CPP_MOD_AL=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1370,6 +1061,16 @@
        ".\main\sfio.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
  +"$(INTDIR)\mod_alias.obj" : $(SOURCE) $(DEP_CPP_MOD_AL) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
  +
  +
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +
  +
   "$(INTDIR)\mod_alias.obj"    "$(INTDIR)\mod_alias.sbr" : $(SOURCE)\
    $(DEP_CPP_MOD_AL) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -1378,31 +1079,6 @@
   !ENDIF 
   
   SOURCE=.\modules\standard\mod_asis.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
  -DEP_CPP_MOD_AS=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_script.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
  -
  -"$(INTDIR)\mod_asis.obj" : $(SOURCE) $(DEP_CPP_MOD_AS) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  -
   DEP_CPP_MOD_AS=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1425,37 +1101,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_asis.obj"     "$(INTDIR)\mod_asis.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_AS)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_asis.obj" : $(SOURCE) $(DEP_CPP_MOD_AS) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_auth.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_AU=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_auth.obj" : $(SOURCE) $(DEP_CPP_MOD_AU) "$(INTDIR)"
  +"$(INTDIR)\mod_asis.obj"     "$(INTDIR)\mod_asis.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_AS)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_auth.c
   DEP_CPP_MOD_AU=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1476,40 +1139,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_auth.obj"     "$(INTDIR)\mod_auth.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_AU)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_auth.obj" : $(SOURCE) $(DEP_CPP_MOD_AU) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_autoindex.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_AUT=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_script.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_autoindex.obj" : $(SOURCE) $(DEP_CPP_MOD_AUT) "$(INTDIR)"
  +"$(INTDIR)\mod_auth.obj"     "$(INTDIR)\mod_auth.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_AU)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_autoindex.c
   DEP_CPP_MOD_AUT=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1533,41 +1180,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_autoindex.obj"        "$(INTDIR)\mod_autoindex.sbr" : 
$(SOURCE)\
  - $(DEP_CPP_MOD_AUT) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_autoindex.obj" : $(SOURCE) $(DEP_CPP_MOD_AUT) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_cgi.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_C=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_conf_globals.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_script.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_cgi.obj" : $(SOURCE) $(DEP_CPP_MOD_C) "$(INTDIR)"
  +"$(INTDIR)\mod_autoindex.obj"        "$(INTDIR)\mod_autoindex.sbr" : 
$(SOURCE)\
  + $(DEP_CPP_MOD_AUT) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_cgi.c
   DEP_CPP_MOD_C=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1592,40 +1222,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_cgi.obj"      "$(INTDIR)\mod_cgi.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_C)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_cgi.obj" : $(SOURCE) $(DEP_CPP_MOD_C) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_dir.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_D=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_script.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_dir.obj" : $(SOURCE) $(DEP_CPP_MOD_D) "$(INTDIR)"
  +"$(INTDIR)\mod_cgi.obj"      "$(INTDIR)\mod_cgi.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_C)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_dir.c
   DEP_CPP_MOD_D=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1649,34 +1263,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_dir.obj"      "$(INTDIR)\mod_dir.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_D)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_dir.obj" : $(SOURCE) $(DEP_CPP_MOD_D) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\os\win32\mod_dll.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_DL=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_dll.obj" : $(SOURCE) $(DEP_CPP_MOD_DL) "$(INTDIR)"
  +"$(INTDIR)\mod_dir.obj"      "$(INTDIR)\mod_dir.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_D)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\os\win32\mod_dll.c
   DEP_CPP_MOD_DL=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1693,34 +1297,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_dll.obj"      "$(INTDIR)\mod_dll.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_DL)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_dll.obj" : $(SOURCE) $(DEP_CPP_MOD_DL) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_env.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_E=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_env.obj" : $(SOURCE) $(DEP_CPP_MOD_E) "$(INTDIR)"
  +"$(INTDIR)\mod_dll.obj"      "$(INTDIR)\mod_dll.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_DL)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_env.c
   DEP_CPP_MOD_E=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1738,40 +1332,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_env.obj"      "$(INTDIR)\mod_env.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_E)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_env.obj" : $(SOURCE) $(DEP_CPP_MOD_E) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_imap.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_I=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_script.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_imap.obj" : $(SOURCE) $(DEP_CPP_MOD_I) "$(INTDIR)"
  +"$(INTDIR)\mod_env.obj"      "$(INTDIR)\mod_env.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_E)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_imap.c
   DEP_CPP_MOD_I=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1795,40 +1373,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_imap.obj"     "$(INTDIR)\mod_imap.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_I)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_imap.obj" : $(SOURCE) $(DEP_CPP_MOD_I) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_include.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_IN=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_script.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_include.obj" : $(SOURCE) $(DEP_CPP_MOD_IN) "$(INTDIR)"
  +"$(INTDIR)\mod_imap.obj"     "$(INTDIR)\mod_imap.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_I)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_include.c
   DEP_CPP_MOD_IN=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1854,39 +1416,24 @@
        ".\modules\standard\modules\perl\mod_perl.h"\
        
   
  -"$(INTDIR)\mod_include.obj"  "$(INTDIR)\mod_include.sbr" : $(SOURCE)\
  - $(DEP_CPP_MOD_IN) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_include.obj" : $(SOURCE) $(DEP_CPP_MOD_IN) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\os\win32\mod_isapi.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_IS=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_script.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_isapi.obj" : $(SOURCE) $(DEP_CPP_MOD_IS) "$(INTDIR)"
  +"$(INTDIR)\mod_include.obj"  "$(INTDIR)\mod_include.sbr" : $(SOURCE)\
  + $(DEP_CPP_MOD_IN) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\os\win32\mod_isapi.c
   DEP_CPP_MOD_IS=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1908,36 +1455,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_isapi.obj"    "$(INTDIR)\mod_isapi.sbr" : $(SOURCE)\
  - $(DEP_CPP_MOD_IS) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_isapi.obj" : $(SOURCE) $(DEP_CPP_MOD_IS) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_log_config.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_L=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_log_config.obj" : $(SOURCE) $(DEP_CPP_MOD_L) "$(INTDIR)"
  +"$(INTDIR)\mod_isapi.obj"    "$(INTDIR)\mod_isapi.sbr" : $(SOURCE)\
  + $(DEP_CPP_MOD_IS) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_log_config.c
   DEP_CPP_MOD_L=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -1957,35 +1492,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_log_config.obj"       "$(INTDIR)\mod_log_config.sbr" : 
$(SOURCE)\
  - $(DEP_CPP_MOD_L) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_log_config.obj" : $(SOURCE) $(DEP_CPP_MOD_L) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_mime.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_M=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\httpd.h"\
  -     ".\modules\standard\mod_mime.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_mime.obj" : $(SOURCE) $(DEP_CPP_MOD_M) "$(INTDIR)"
  +"$(INTDIR)\mod_log_config.obj"       "$(INTDIR)\mod_log_config.sbr" : 
$(SOURCE)\
  + $(DEP_CPP_MOD_L) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_mime.c
   DEP_CPP_MOD_M=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -2004,38 +1528,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_mime.obj"     "$(INTDIR)\mod_mime.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_M)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_mime.obj" : $(SOURCE) $(DEP_CPP_MOD_M) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\modules\standard\mod_negotiation.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_N=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_script.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_negotiation.obj" : $(SOURCE) $(DEP_CPP_MOD_N) "$(INTDIR)"
  +"$(INTDIR)\mod_mime.obj"     "$(INTDIR)\mod_mime.sbr" : $(SOURCE) 
$(DEP_CPP_MOD_M)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\modules\standard\mod_negotiation.c
   DEP_CPP_MOD_N=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -2057,83 +1567,61 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_negotiation.obj"      "$(INTDIR)\mod_negotiation.sbr" : 
$(SOURCE)\
  - $(DEP_CPP_MOD_N) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ENDIF 
  -
  -SOURCE=.\modules\standard\mod_setenvif.c
  -
   !IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
  -DEP_CPP_MOD_S=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\mod_setenvif.obj" : $(SOURCE) $(DEP_CPP_MOD_S) "$(INTDIR)"
  +"$(INTDIR)\mod_negotiation.obj" : $(SOURCE) $(DEP_CPP_MOD_N) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MOD_S=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     {$(INCLUDE)}"sys\stat.h"\
  -     {$(INCLUDE)}"sys\types.h"\
  -     
  -NODEP_CPP_MOD_S=\
  -     ".\main\os.h"\
  -     ".\main\sfio.h"\
  -     
   
  -"$(INTDIR)\mod_setenvif.obj" "$(INTDIR)\mod_setenvif.sbr" : $(SOURCE)\
  - $(DEP_CPP_MOD_S) "$(INTDIR)"
  +"$(INTDIR)\mod_negotiation.obj"      "$(INTDIR)\mod_negotiation.sbr" : 
$(SOURCE)\
  + $(DEP_CPP_MOD_N) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ENDIF 
   
  -SOURCE=.\modules\standard\mod_userdir.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
  -DEP_CPP_MOD_U=\
  +SOURCE=.\modules\standard\mod_setenvif.c
  +DEP_CPP_MOD_S=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
        ".\main\conf.h"\
        ".\main\http_config.h"\
  +     ".\main\http_core.h"\
  +     ".\main\http_log.h"\
        ".\main\httpd.h"\
        ".\os\win32\os.h"\
        ".\os\win32\readdir.h"\
        ".\regex\regex.h"\
  +     {$(INCLUDE)}"sys\stat.h"\
  +     {$(INCLUDE)}"sys\types.h"\
  +     
  +NODEP_CPP_MOD_S=\
  +     ".\main\os.h"\
  +     ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_userdir.obj" : $(SOURCE) $(DEP_CPP_MOD_U) "$(INTDIR)"
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
  +"$(INTDIR)\mod_setenvif.obj" : $(SOURCE) $(DEP_CPP_MOD_S) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  +
  +"$(INTDIR)\mod_setenvif.obj" "$(INTDIR)\mod_setenvif.sbr" : $(SOURCE)\
  + $(DEP_CPP_MOD_S) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
  +
  +
  +!ENDIF 
  +
  +SOURCE=.\modules\standard\mod_userdir.c
   DEP_CPP_MOD_U=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -2151,34 +1639,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\mod_userdir.obj"  "$(INTDIR)\mod_userdir.sbr" : $(SOURCE)\
  - $(DEP_CPP_MOD_U) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\mod_userdir.obj" : $(SOURCE) $(DEP_CPP_MOD_U) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\os\win32\modules.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MODUL=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_config.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\modules.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"
  +"$(INTDIR)\mod_userdir.obj"  "$(INTDIR)\mod_userdir.sbr" : $(SOURCE)\
  + $(DEP_CPP_MOD_U) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\os\win32\modules.c
   DEP_CPP_MODUL=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -2195,6 +1673,16 @@
        ".\main\sfio.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
  +"$(INTDIR)\modules.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
  +
  +
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +
  +
   "$(INTDIR)\modules.obj"      "$(INTDIR)\modules.sbr" : $(SOURCE) 
$(DEP_CPP_MODUL)\
    "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
  @@ -2203,28 +1691,24 @@
   !ENDIF 
   
   SOURCE=.\os\win32\multithread.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
   DEP_CPP_MULTI=\
        ".\main\conf.h"\
        ".\main\multithread.h"\
        ".\os\win32\os.h"\
        ".\regex\regex.h"\
  +     {$(INCLUDE)}"sys\stat.h"\
  +     {$(INCLUDE)}"sys\types.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
   "$(INTDIR)\multithread.obj" : $(SOURCE) $(DEP_CPP_MULTI) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_MULTI=\
  -     ".\main\conf.h"\
  -     ".\main\multithread.h"\
  -     ".\os\win32\os.h"\
  -     ".\regex\regex.h"\
  -     
   
   "$(INTDIR)\multithread.obj"  "$(INTDIR)\multithread.sbr" : $(SOURCE)\
    $(DEP_CPP_MULTI) "$(INTDIR)"
  @@ -2236,6 +1720,7 @@
   SOURCE=.\os\win32\readdir.c
   DEP_CPP_READD=\
        ".\os\win32\readdir.h"\
  +     {$(INCLUDE)}"sys\types.h"\
        
   
   !IF  "$(CFG)" == "ApacheCore - Win32 Release"
  @@ -2256,9 +1741,6 @@
   !ENDIF 
   
   SOURCE=.\main\rfc1413.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
   DEP_CPP_RFC14=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -2270,32 +1752,23 @@
        ".\os\win32\os.h"\
        ".\os\win32\readdir.h"\
        ".\regex\regex.h"\
  +     {$(INCLUDE)}"sys\stat.h"\
  +     {$(INCLUDE)}"sys\types.h"\
  +     
  +NODEP_CPP_RFC14=\
  +     ".\main\os.h"\
  +     ".\main\sfio.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
   "$(INTDIR)\rfc1413.obj" : $(SOURCE) $(DEP_CPP_RFC14) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_RFC14=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\httpd.h"\
  -     ".\main\rfc1413.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     {$(INCLUDE)}"sys\stat.h"\
  -     {$(INCLUDE)}"sys\types.h"\
  -     
  -NODEP_CPP_RFC14=\
  -     ".\main\os.h"\
  -     ".\main\sfio.h"\
  -     
   
   "$(INTDIR)\rfc1413.obj"      "$(INTDIR)\rfc1413.sbr" : $(SOURCE) 
$(DEP_CPP_RFC14)\
    "$(INTDIR)"
  @@ -2305,30 +1778,25 @@
   !ENDIF 
   
   SOURCE=.\os\win32\service.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
   DEP_CPP_SERVI=\
        ".\main\conf.h"\
        ".\main\multithread.h"\
        ".\os\win32\os.h"\
        ".\os\win32\service.h"\
        ".\regex\regex.h"\
  +     {$(INCLUDE)}"sys\stat.h"\
  +     {$(INCLUDE)}"sys\types.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
   "$(INTDIR)\service.obj" : $(SOURCE) $(DEP_CPP_SERVI) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_SERVI=\
  -     ".\main\conf.h"\
  -     ".\main\multithread.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\service.h"\
  -     ".\regex\regex.h"\
  -     
   
   "$(INTDIR)\service.obj"      "$(INTDIR)\service.sbr" : $(SOURCE) 
$(DEP_CPP_SERVI)\
    "$(INTDIR)"
  @@ -2338,9 +1806,6 @@
   !ENDIF 
   
   SOURCE=.\main\util.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
   DEP_CPP_UTIL_=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -2351,31 +1816,23 @@
        ".\os\win32\os.h"\
        ".\os\win32\readdir.h"\
        ".\regex\regex.h"\
  +     {$(INCLUDE)}"sys\stat.h"\
  +     {$(INCLUDE)}"sys\types.h"\
  +     
  +NODEP_CPP_UTIL_=\
  +     ".\main\os.h"\
  +     ".\main\sfio.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
   "$(INTDIR)\util.obj" : $(SOURCE) $(DEP_CPP_UTIL_) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_UTIL_=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_conf_globals.h"\
  -     ".\main\http_log.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     {$(INCLUDE)}"sys\stat.h"\
  -     {$(INCLUDE)}"sys\types.h"\
  -     
  -NODEP_CPP_UTIL_=\
  -     ".\main\os.h"\
  -     ".\main\sfio.h"\
  -     
   
   "$(INTDIR)\util.obj" "$(INTDIR)\util.sbr" : $(SOURCE) $(DEP_CPP_UTIL_)\
    "$(INTDIR)"
  @@ -2385,28 +1842,27 @@
   !ENDIF 
   
   SOURCE=.\main\util_date.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
   DEP_CPP_UTIL_D=\
        ".\main\conf.h"\
        ".\main\util_date.h"\
        ".\os\win32\os.h"\
        ".\regex\regex.h"\
  +     {$(INCLUDE)}"sys\stat.h"\
  +     {$(INCLUDE)}"sys\types.h"\
  +     
  +NODEP_CPP_UTIL_D=\
  +     ".\main\os.h"\
        
   
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
   "$(INTDIR)\util_date.obj" : $(SOURCE) $(DEP_CPP_UTIL_D) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
   !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_UTIL_D=\
  -     ".\main\conf.h"\
  -     ".\main\util_date.h"\
  -     ".\os\win32\os.h"\
  -     ".\regex\regex.h"\
  -     
   
   "$(INTDIR)\util_date.obj"    "$(INTDIR)\util_date.sbr" : $(SOURCE)\
    $(DEP_CPP_UTIL_D) "$(INTDIR)"
  @@ -2416,27 +1872,6 @@
   !ENDIF 
   
   SOURCE=.\main\util_md5.c
  -
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  -
  -DEP_CPP_UTIL_M=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\httpd.h"\
  -     ".\main\md5.h"\
  -     ".\main\util_md5.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
  -
  -"$(INTDIR)\util_md5.obj" : $(SOURCE) $(DEP_CPP_UTIL_M) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  -
  -
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  -
   DEP_CPP_UTIL_M=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -2455,42 +1890,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\util_md5.obj"     "$(INTDIR)\util_md5.sbr" : $(SOURCE) 
$(DEP_CPP_UTIL_M)\
  - "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\util_md5.obj" : $(SOURCE) $(DEP_CPP_UTIL_M) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\main\util_script.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_UTIL_S=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\http_conf_globals.h"\
  -     ".\main\http_config.h"\
  -     ".\main\http_core.h"\
  -     ".\main\http_log.h"\
  -     ".\main\http_main.h"\
  -     ".\main\http_protocol.h"\
  -     ".\main\http_request.h"\
  -     ".\main\httpd.h"\
  -     ".\main\util_date.h"\
  -     ".\main\util_script.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\util_script.obj" : $(SOURCE) $(DEP_CPP_UTIL_S) "$(INTDIR)"
  +"$(INTDIR)\util_md5.obj"     "$(INTDIR)\util_md5.sbr" : $(SOURCE) 
$(DEP_CPP_UTIL_M)\
  + "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\main\util_script.c
   DEP_CPP_UTIL_S=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -2516,33 +1933,24 @@
        ".\main\sfio.h"\
        
   
  -"$(INTDIR)\util_script.obj"  "$(INTDIR)\util_script.sbr" : $(SOURCE)\
  - $(DEP_CPP_UTIL_S) "$(INTDIR)"
  -     $(CPP) $(CPP_PROJ) $(SOURCE)
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
   
   
  -!ENDIF 
  +"$(INTDIR)\util_script.obj" : $(SOURCE) $(DEP_CPP_UTIL_S) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
   
  -SOURCE=.\os\win32\util_win32.c
   
  -!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
   
  -DEP_CPP_UTIL_W=\
  -     ".\main\alloc.h"\
  -     ".\main\buff.h"\
  -     ".\main\conf.h"\
  -     ".\main\httpd.h"\
  -     ".\os\win32\os.h"\
  -     ".\os\win32\readdir.h"\
  -     ".\regex\regex.h"\
  -     
   
  -"$(INTDIR)\util_win32.obj" : $(SOURCE) $(DEP_CPP_UTIL_W) "$(INTDIR)"
  +"$(INTDIR)\util_script.obj"  "$(INTDIR)\util_script.sbr" : $(SOURCE)\
  + $(DEP_CPP_UTIL_S) "$(INTDIR)"
        $(CPP) $(CPP_PROJ) $(SOURCE)
   
   
  -!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +!ENDIF 
   
  +SOURCE=.\os\win32\util_win32.c
   DEP_CPP_UTIL_W=\
        ".\main\alloc.h"\
        ".\main\buff.h"\
  @@ -2557,6 +1965,16 @@
   NODEP_CPP_UTIL_W=\
        ".\main\sfio.h"\
        
  +
  +!IF  "$(CFG)" == "ApacheCore - Win32 Release"
  +
  +
  +"$(INTDIR)\util_win32.obj" : $(SOURCE) $(DEP_CPP_UTIL_W) "$(INTDIR)"
  +     $(CPP) $(CPP_PROJ) $(SOURCE)
  +
  +
  +!ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"
  +
   
   "$(INTDIR)\util_win32.obj"   "$(INTDIR)\util_win32.sbr" : $(SOURCE)\
    $(DEP_CPP_UTIL_W) "$(INTDIR)"
  
  
  

Reply via email to