]> granicus.if.org Git - apache/commitdiff
Ok... for now ssl-std.conf and proxy-std.conf stand, so here's the patch
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 16 Oct 2001 15:49:38 +0000 (15:49 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 16 Oct 2001 15:49:38 +0000 (15:49 +0000)
  for the win32 build.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91491 13f79535-47bb-0310-9956-ffa450edef68

Makefile.win

index cd7d873418bb8e4e32c1d39f49e14dc09bf868aa..5498ad9af22cf96a2f32297a21e28f89c66cbf86 100644 (file)
@@ -442,6 +442,36 @@ A
 <<
        if not exist "$(INSTDIR)\conf\httpd.conf" \
             copy "$(INSTDIR)\conf\httpd.default.conf" "$(INSTDIR)\conf\httpd.conf"
+       copy docs\conf\ssl-std.conf "$(INSTDIR)\conf\ssl.default.conf"
+       -awk -f <<script.awk "docs\conf\ssl-std.conf" "$(INSTDIR)\conf\ssl.default.conf" "$(INSTDIR)"
+    BEGIN { 
+        srcfl = ARGV[1];
+        dstfl = ARGV[2];
+        serverroot = ARGV[3];
+        gsub( /\\/, "/", serverroot );
+        while ( ( getline < srcfl ) > 0 ) {
+            gsub( /@@ServerRoot@@/, serverroot );
+            print $$0 > dstfl;
+        }
+    }
+<<
+       if not exist "$(INSTDIR)\conf\ssl.conf" \
+            copy "$(INSTDIR)\conf\ssl.default.conf" "$(INSTDIR)\conf\ssl.conf"
+       copy docs\conf\proxy-std.conf "$(INSTDIR)\conf\proxy.default.conf"
+       -awk -f <<script.awk "docs\conf\proxy-std.conf" "$(INSTDIR)\conf\proxy.default.conf" "$(INSTDIR)"
+    BEGIN { 
+        srcfl = ARGV[1];
+        dstfl = ARGV[2];
+        serverroot = ARGV[3];
+        gsub( /\\/, "/", serverroot );
+        while ( ( getline < srcfl ) > 0 ) {
+            gsub( /@@ServerRoot@@/, serverroot );
+            print $$0 > dstfl;
+        }
+    }
+<<
+       if not exist "$(INSTDIR)\conf\proxy.conf" \
+            copy "$(INSTDIR)\conf\proxy.default.conf" "$(INSTDIR)\conf\proxy.conf"
        awk -f <<script.awk "support\dbmmanage.in" >"$(INSTDIR)\bin\dbmmanage.pl"
     { if ( $$0 ~ /^BEGIN { @AnyDBM_File::/ ) {
           sub( /ISA = qw\(.*\)/, "ISA = qw(SDBM_File)" );