Proposed change to Makefile.tmpl to replace the hardcoded os/unix/os.h dependencies with ones that use the platform's specific os directory. For example, Linux would continue to use os/unix/os.h while TPF would use os/tpf/os.h.
-David
Index: apache-1.3/src/Makefile.tmpl =================================================================== RCS file: /home/cvs/apache-1.3/src/Makefile.tmpl,v retrieving revision 1.119 diff -u -d -b -r1.119 Makefile.tmpl --- apache-1.3/src/Makefile.tmpl 13 May 2002 08:13:06 -0000 1.119 +++ apache-1.3/src/Makefile.tmpl 27 Dec 2002 20:29:02 -0000 @@ -125,10 +125,10 @@ # DO NOT REMOVE buildmark.o: buildmark.c include/ap_config.h include/ap_mmn.h \ - include/ap_config_auto.h os/unix/os.h include/ap_ctype.h \ + include/ap_config_auto.h $(OSDIR)/os.h include/ap_ctype.h \ include/hsregex.h include/httpd.h include/ap_alloc.h include/buff.h \ include/ap.h include/util_uri.h modules.o: modules.c include/httpd.h include/ap_config.h \ - include/ap_mmn.h include/ap_config_auto.h os/unix/os.h \ + include/ap_mmn.h include/ap_config_auto.h $(OSDIR)/os.h \ include/ap_ctype.h include/hsregex.h include/ap_alloc.h include/buff.h \ include/ap.h include/util_uri.h include/http_config.h
