You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Chuck Murcko <ch...@hyperreal.com> on 1996/09/26 14:33:59 UTC

cvs commit: apache/src Configuration.tmpl Makefile.tmpl

chuck       96/09/26 05:33:58

  Modified:    src       Configuration.tmpl Makefile.tmpl
  Log:
  Submitted by:	Chuck Murcko
  Changes to support modules/proxy directory structure for proxy reorg.
  
  Revision  Changes    Path
  1.37      +2 -2      apache/src/Configuration.tmpl
  
  Index: Configuration.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Configuration.tmpl,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -C3 -r1.36 -r1.37
  *** Configuration.tmpl	1996/09/13 21:02:15	1.36
  --- Configuration.tmpl	1996/09/26 12:33:56	1.37
  ***************
  *** 1,4 ****
  ! # $Id: Configuration.tmpl,v 1.36 1996/09/13 21:02:15 jim Exp $
    # Config file for the Apache httpd.
    
    # Configuration.tmpl is the template for Configuration. Configuration should
  --- 1,4 ----
  ! # $Id: Configuration.tmpl,v 1.37 1996/09/26 12:33:56 chuck Exp $
    # Config file for the Apache httpd.
    
    # Configuration.tmpl is the template for Configuration. Configuration should
  ***************
  *** 222,225 ****
    ## Finally, the proxy module.  It's not as complete as it could
    ## be yet, so use at your own risk.
    
  ! # Module proxy_module        mod_proxy.o
  --- 222,225 ----
    ## Finally, the proxy module.  It's not as complete as it could
    ## be yet, so use at your own risk.
    
  ! # Module proxy_module        modules/proxy/libproxy.a
  
  
  
  1.26      +9 -5      apache/src/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Makefile.tmpl,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -C3 -r1.25 -r1.26
  *** Makefile.tmpl	1996/09/08 16:14:55	1.25
  --- Makefile.tmpl	1996/09/26 12:33:56	1.26
  ***************
  *** 1,4 ****
  ! # $Id: Makefile.tmpl,v 1.25 1996/09/08 16:14:55 jim Exp $
    # Apache makefile template (well, suffix).
    
    # This is combined with the information in the "Configuration" file
  --- 1,4 ----
  ! # $Id: Makefile.tmpl,v 1.26 1996/09/26 12:33:56 chuck Exp $
    # Apache makefile template (well, suffix).
    
    # This is combined with the information in the "Configuration" file
  ***************
  *** 31,39 ****
  --- 31,44 ----
    regex/libregex.a:
    	cd regex; make lib CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB)
    
  + modules/proxy/libproxy.a:
  + 	cd modules/proxy; \
  + 	make lib CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB)
  + 
    clean:
    	rm -f httpd $(OBJS) *pure*
    	cd regex; make clean
  + 	cd modules/proxy; make clean
    
    dist.tar: 
    	# Assure a semi-sensible configuration going out...
  ***************
  *** 69,82 ****
    mod_access.o mod_imap.o mod_include.o mod_negotiation.o: http_core.h
    mod_asis.o mod_auth.o mod_auth_dbm.o mod_cgi.o mod_dir.o: http_core.h
    mod_status.o mod_cookies.o mod_log_common.o: http_core.h
  ! mod_access.o mod_proxy.o mod_imap.o mod_include.o mod_negotiation.o: http_log.h
  ! mod_proxy.o mod_asis.o mod_cgi.o mod_dir.o mod_imap.o: http_main.h
    mod_status.o mod_include.o: http_main.h
  ! mod_proxy.o mod_asis.o mod_auth.o mod_auth_dbm.o mod_cgi.o: http_protocol.h
    mod_status.o mod_dir.o: http_protocol.h
    mod_imap.o mod_include.o: http_protocol.h
    mod_cgi.o mod_dir.o mod_imap.o mod_include.o mod_negotiation.o: http_request.h
  - mod_proxy.o: md5.h
    mod_status.o: util_script.h
    mod_asis.o mod_cgi.o mod_dir.o mod_imap.o mod_include.o: util_script.h
    mod_digest.o: util_md5.h
  --- 74,86 ----
    mod_access.o mod_imap.o mod_include.o mod_negotiation.o: http_core.h
    mod_asis.o mod_auth.o mod_auth_dbm.o mod_cgi.o mod_dir.o: http_core.h
    mod_status.o mod_cookies.o mod_log_common.o: http_core.h
  ! mod_access.o mod_imap.o mod_include.o mod_negotiation.o: http_log.h
  ! mod_asis.o mod_cgi.o mod_dir.o mod_imap.o: http_main.h
    mod_status.o mod_include.o: http_main.h
  ! mod_asis.o mod_auth.o mod_auth_dbm.o mod_cgi.o: http_protocol.h
    mod_status.o mod_dir.o: http_protocol.h
    mod_imap.o mod_include.o: http_protocol.h
    mod_cgi.o mod_dir.o mod_imap.o mod_include.o mod_negotiation.o: http_request.h
    mod_status.o: util_script.h
    mod_asis.o mod_cgi.o mod_dir.o mod_imap.o mod_include.o: util_script.h
    mod_digest.o: util_md5.h