You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Ben Laurie <be...@hyperreal.org> on 1997/07/06 00:12:26 UTC

cvs commit: apache/src Makefile.nt CHANGES

ben         97/07/05 15:12:26

  Modified:    src       CHANGES
  Added:       src       Makefile.nt
  Log:
  Add Makefile for Win32.
  
  Revision  Changes    Path
  1.322     +4 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.321
  retrieving revision 1.322
  diff -C3 -r1.321 -r1.322
  *** CHANGES	1997/07/05 14:53:58	1.321
  --- CHANGES	1997/07/05 22:12:24	1.322
  ***************
  *** 1,5 ****
  --- 1,9 ----
    Changes with Apache 1.3
    
  +   *) Makefile.nt added - to build all the bits from the command line:
  +         nmake -f Makefile.nt
  + 	 Doesn't yet work properly. [Ben Laurie]
  + 
      *) Default text of 404 error is now "Not Found" rather than the
         potentially misleading "File Not Found".  [Ken Coar]
    
  
  
  
  1.1                  apache/src/Makefile.nt
  
  Index: Makefile.nt
  ===================================================================
  # Makefile for NT
  # Note that this doesn't quite work... apache.exe doesn't depend on proxy.lib
  # or regex.lib. Nor can it, without some messing about - the debug and release
  # versions need different dependencies, and that isn't an option.
  # One way that occurs to me to solve the problem is to have the proxy and
  # regex makes delete the appropriate apache.exe. Tacky, but it'll work!
  # Ben, 5 July 97
  
  _debug:
      cd modules\proxy & set CFG=proxy - Win32 Debug& nmake -f proxy.mak
      cd regex & set CFG=regex - Win32 Debug& nmake -f regex.mak
  	set CFG=apache - Win32 Debug& nmake -f apache.mak