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/06/23 21:16:31 UTC

cvs commit: apache-1.3/src/ap ap.dsp ap.mak

ben         98/06/23 12:16:31

  Modified:    src/ap   ap.dsp ap.mak
  Log:
  Allow for deletion of ap_strings.c
  
  Revision  Changes    Path
  1.3       +0 -4      apache-1.3/src/ap/ap.dsp
  
  Index: ap.dsp
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/ap/ap.dsp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ap.dsp	1998/02/05 13:09:30	1.2
  +++ ap.dsp	1998/06/23 19:16:29	1.3
  @@ -93,10 +93,6 @@
   
   SOURCE=.\ap_snprintf.c
   # End Source File
  -# Begin Source File
  -
  -SOURCE=.\ap_strings.c
  -# End Source File
   # End Group
   # Begin Group "Header Files"
   
  
  
  
  1.3       +116 -9    apache-1.3/src/ap/ap.mak
  
  Index: ap.mak
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/ap/ap.mak,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ap.mak	1998/02/05 13:09:30	1.2
  +++ ap.mak	1998/06/23 19:16:30	1.3
  @@ -50,7 +50,6 @@
   	-@erase "$(INTDIR)\ap_signal.obj"
   	-@erase "$(INTDIR)\ap_slack.obj"
   	-@erase "$(INTDIR)\ap_snprintf.obj"
  -	-@erase "$(INTDIR)\ap_strings.obj"
   	-@erase "$(INTDIR)\vc50.idb"
   	-@erase "$(OUTDIR)\ap.lib"
   
  @@ -71,8 +70,7 @@
   	"$(INTDIR)\ap_cpystrn.obj" \
   	"$(INTDIR)\ap_signal.obj" \
   	"$(INTDIR)\ap_slack.obj" \
  -	"$(INTDIR)\ap_snprintf.obj" \
  -	"$(INTDIR)\ap_strings.obj"
  +	"$(INTDIR)\ap_snprintf.obj"
   
   "$(OUTDIR)\ap.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
       $(LIB32) @<<
  @@ -102,7 +100,6 @@
   	-@erase "$(INTDIR)\ap_signal.obj"
   	-@erase "$(INTDIR)\ap_slack.obj"
   	-@erase "$(INTDIR)\ap_snprintf.obj"
  -	-@erase "$(INTDIR)\ap_strings.obj"
   	-@erase "$(INTDIR)\vc50.idb"
   	-@erase "$(OUTDIR)\ap.lib"
   
  @@ -123,8 +120,7 @@
   	"$(INTDIR)\ap_cpystrn.obj" \
   	"$(INTDIR)\ap_signal.obj" \
   	"$(INTDIR)\ap_slack.obj" \
  -	"$(INTDIR)\ap_snprintf.obj" \
  -	"$(INTDIR)\ap_strings.obj"
  +	"$(INTDIR)\ap_snprintf.obj"
   
   "$(OUTDIR)\ap.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
       $(LIB32) @<<
  @@ -166,6 +162,33 @@
   
   !IF "$(CFG)" == "ap - Win32 Release" || "$(CFG)" == "ap - Win32 Debug"
   SOURCE=.\ap_cpystrn.c
  +
  +!IF  "$(CFG)" == "ap - Win32 Release"
  +
  +DEP_CPP_AP_CP=\
  +	"..\include\alloc.h"\
  +	"..\include\ap.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_AP_CP=\
  +	"..\include\ebcdic.h"\
  +	"..\include\os.h"\
  +	"..\include\sfio.h"\
  +	
  +
  +"$(INTDIR)\ap_cpystrn.obj" : $(SOURCE) $(DEP_CPP_AP_CP) "$(INTDIR)"
  +
  +
  +!ELSEIF  "$(CFG)" == "ap - Win32 Debug"
  +
   DEP_CPP_AP_CP=\
   	"..\include\alloc.h"\
   	"..\include\ap.h"\
  @@ -173,6 +196,7 @@
   	"..\include\conf.h"\
   	"..\include\hsregex.h"\
   	"..\include\httpd.h"\
  +	"..\include\util_uri.h"\
   	"..\os\win32\os.h"\
   	"..\os\win32\readdir.h"\
   	
  @@ -180,7 +204,36 @@
   "$(INTDIR)\ap_cpystrn.obj" : $(SOURCE) $(DEP_CPP_AP_CP) "$(INTDIR)"
   
   
  +!ENDIF 
  +
   SOURCE=.\ap_signal.c
  +
  +!IF  "$(CFG)" == "ap - Win32 Release"
  +
  +DEP_CPP_AP_SI=\
  +	"..\include\alloc.h"\
  +	"..\include\ap.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_AP_SI=\
  +	"..\include\ebcdic.h"\
  +	"..\include\os.h"\
  +	"..\include\sfio.h"\
  +	
  +
  +"$(INTDIR)\ap_signal.obj" : $(SOURCE) $(DEP_CPP_AP_SI) "$(INTDIR)"
  +
  +
  +!ELSEIF  "$(CFG)" == "ap - Win32 Debug"
  +
   DEP_CPP_AP_SI=\
   	"..\include\alloc.h"\
   	"..\include\ap.h"\
  @@ -188,6 +241,7 @@
   	"..\include\conf.h"\
   	"..\include\hsregex.h"\
   	"..\include\httpd.h"\
  +	"..\include\util_uri.h"\
   	"..\os\win32\os.h"\
   	"..\os\win32\readdir.h"\
   	
  @@ -195,7 +249,12 @@
   "$(INTDIR)\ap_signal.obj" : $(SOURCE) $(DEP_CPP_AP_SI) "$(INTDIR)"
   
   
  +!ENDIF 
  +
   SOURCE=.\ap_slack.c
  +
  +!IF  "$(CFG)" == "ap - Win32 Release"
  +
   DEP_CPP_AP_SL=\
   	"..\include\alloc.h"\
   	"..\include\ap.h"\
  @@ -204,37 +263,85 @@
   	"..\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_AP_SL=\
  +	"..\include\ebcdic.h"\
  +	"..\include\os.h"\
  +	"..\include\sfio.h"\
  +	
   
   "$(INTDIR)\ap_slack.obj" : $(SOURCE) $(DEP_CPP_AP_SL) "$(INTDIR)"
   
   
  +!ELSEIF  "$(CFG)" == "ap - Win32 Debug"
  +
  +DEP_CPP_AP_SL=\
  +	"..\include\alloc.h"\
  +	"..\include\ap.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"\
  +	
  +
  +"$(INTDIR)\ap_slack.obj" : $(SOURCE) $(DEP_CPP_AP_SL) "$(INTDIR)"
  +
  +
  +!ENDIF 
  +
   SOURCE=.\ap_snprintf.c
  +
  +!IF  "$(CFG)" == "ap - Win32 Release"
  +
   DEP_CPP_AP_SN=\
  +	"..\include\alloc.h"\
  +	"..\include\ap.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_AP_SN=\
  +	"..\include\ebcdic.h"\
  +	"..\include\os.h"\
  +	"..\include\sfio.h"\
   	
   
   "$(INTDIR)\ap_snprintf.obj" : $(SOURCE) $(DEP_CPP_AP_SN) "$(INTDIR)"
   
  +
  +!ELSEIF  "$(CFG)" == "ap - Win32 Debug"
   
  -SOURCE=.\ap_strings.c
  -DEP_CPP_AP_ST=\
  +DEP_CPP_AP_SN=\
   	"..\include\alloc.h"\
   	"..\include\ap.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"\
   	
  +
  +"$(INTDIR)\ap_snprintf.obj" : $(SOURCE) $(DEP_CPP_AP_SN) "$(INTDIR)"
   
  -"$(INTDIR)\ap_strings.obj" : $(SOURCE) $(DEP_CPP_AP_ST) "$(INTDIR)"
   
  +!ENDIF 
   
   
   !ENDIF