fielding 97/08/15 11:30:11
Modified: src/modules/proxy Makefile proxy_ftp.c Log: Fix proxy Makefile and include path busted by re-org. Revision Changes Path 1.13 +4 -2 apachen/src/modules/proxy/Makefile Index: Makefile =================================================================== RCS file: /export/home/cvs/apachen/src/modules/proxy/Makefile,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- Makefile 1997/08/10 13:32:36 1.12 +++ Makefile 1997/08/15 18:30:10 1.13 @@ -54,11 +54,12 @@ SHELL = /bin/sh INCDIR = ../../core +MODDIR = ../../modules/standard LIB=libproxy.a # AUX_CFLAGS comes from higher level Makefile -CFLAGS=-I$(INCDIR) $(AUX_CFLAGS) +CFLAGS=-I$(INCDIR) -I$(MODDIR) $(AUX_CFLAGS) # Internal stuff, should not need changing. PROXYSRC=mod_proxy.c proxy_cache.c proxy_connect.c proxy_ftp.c proxy_http.c \ @@ -83,7 +84,8 @@ # dependencies $(OBJS): mod_proxy.h $(INCDIR)/httpd.h $(INCDIR)/http_config.h $(INCDIR)/http_protocol.h -proxy_cache.o proxy_connect.o proxy_ftp.o proxy_http.o proxy_util.o: $(INCDIR)/http_main.h +proxy_cache.o proxy_connect.o proxy_http.o proxy_util.o: $(INCDIR)/http_main.h proxy_cache.o proxy_connect.o proxy_http.o: $(INCDIR)/http_log.h proxy_cache.o proxy_http.o: $(INCDIR)/util_date.h proxy_cache.o proxy_util.o: $(INCDIR)/md5.h +proxy_ftp.o: $(INCDIR)/http_main.h $(MODDIR)/mod_mime.h 1.33 +1 -1 apachen/src/modules/proxy/proxy_ftp.c Index: proxy_ftp.c =================================================================== RCS file: /export/home/cvs/apachen/src/modules/proxy/proxy_ftp.c,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- proxy_ftp.c 1997/08/15 17:59:52 1.32 +++ proxy_ftp.c 1997/08/15 18:30:10 1.33 @@ -54,7 +54,7 @@ #include "mod_proxy.h" #include "http_main.h" -#include "..\..\modules\standard\mod_mime.h" +#include "mod_mime.h" /* * Decodes a '%' escaped string, and returns the number of characters