Return-Path: Delivered-To: new-httpd-archive@hyperreal.org Received: (qmail 13366 invoked by uid 6000); 5 Jul 1999 08:32:23 -0000 Received: (qmail 13359 invoked from network); 5 Jul 1999 08:32:19 -0000 Received: from silk.apana.org.au (root@202.12.87.81) by taz.hyperreal.org with SMTP; 5 Jul 1999 08:32:19 -0000 Received: from kheldar.apana.org.au (bjh@kheldar.apana.org.au [202.12.87.82]) by silk.apana.org.au (8.9.1/8.9.1) with SMTP id SAA32719 for ; Mon, 5 Jul 1999 18:31:58 +1000 Message-Id: <199907050831.SAA32719@silk.apana.org.au> From: "Brian Havard" To: "Apache Developers Mailing List" Date: Mon, 05 Jul 1999 18:31:56 +1000 (EST) X-Mailer: PMMail 2.00.1500 for OS/2 Warp 4.00 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: mpm Configure Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org Status: O It looks like someone's been playing with the Configure script in mpm. I get this in the section that makes modules.c: awk: htconf.99.4:13: print "#include "httpd.h"" awk: htconf.99.4:13: ^ parse error awk: htconf.99.4:14: print "#include "http_config.h"" awk: htconf.99.4:14: ^ parse error To make it work I just have to revert it to the way it is in the 1.3 tree with the patch below. Anyone want to explain why this was changed? Index: Configure =================================================================== RCS file: /home/cvs/apache-2.0/mpm/src/Configure,v retrieving revision 1.9 diff -u -r1.9 Configure --- Configure 1999/07/04 09:13:31 1.9 +++ Configure 1999/07/05 07:51:41 @@ -1727,13 +1727,13 @@ ## Now create modules.c ## -$CAT > $awkfile < $awkfile <<'EOFM' BEGIN { modules[n++] = "core" pmodules[pn++] = "core" } - /^Module/ { modules[n++] = \$2 ; pmodules[pn++] = \$2 } - /^%Module/ { pmodules[pn++] = \$2 } + /^Module/ { modules[n++] = $2 ; pmodules[pn++] = $2 } + /^%Module/ { pmodules[pn++] = $2 } END { print "/*" print " * modules.c --- automatically generated by Apache" -- ______________________________________________________________________________ | Brian Havard | "He is not the messiah! | | brianh@kheldar.apana.org.au | He's a very naughty boy!" - Life of Brian | ------------------------------------------------------------------------------