Return-Path: Delivered-To: apmail-httpd-test-dev-archive@www.apache.org Received: (qmail 57359 invoked from network); 6 Jan 2005 18:36:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 6 Jan 2005 18:36:31 -0000 Received: (qmail 10948 invoked by uid 500); 6 Jan 2005 18:36:30 -0000 Delivered-To: apmail-httpd-test-dev-archive@httpd.apache.org Received: (qmail 10912 invoked by uid 500); 6 Jan 2005 18:36:30 -0000 Mailing-List: contact test-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-dev@httpd.apache.org Received: (qmail 10899 invoked by uid 99); 6 Jan 2005 18:36:30 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from secure.exclamationlabs.net (HELO secure.exclamationlabs.net) (66.77.29.165) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 06 Jan 2005 10:36:29 -0800 Received: from [192.168.2.160] (pcp0010804675pcs.walngs01.pa.comcast.net [69.142.163.148]) (authenticated (0 bits)) by secure.exclamationlabs.net (8.11.6/8.11.6) with ESMTP id j06IaRc11545; Thu, 6 Jan 2005 12:36:27 -0600 Message-ID: <41DD8514.4050001@modperlcookbook.org> Date: Thu, 06 Jan 2005 13:36:04 -0500 From: Geoffrey Young User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040927 X-Accept-Language: en-us, en MIME-Version: 1.0 To: test-dev@httpd.apache.org CC: Nick *** Subject: Re: [A-T patch] changing should_skip_module to support regex skip patterns References: <472579070.1105015887086.JavaMail.nobody@app4.ni.bg> <41DD7C1B.2050108@stason.org> In-Reply-To: <41DD7C1B.2050108@stason.org> X-Enigmail-Version: 0.86.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Stas Bekman wrote: > As you can see from the email below, some modules embed a version number > in the module 'mod_fastcgi-2.4.2-AP20.dll'. Our should_skip_module only > matches an exact name. The patch at the end of this email extends the > functionality to support regex skip arguments. Let me know if you have > any objections to this change. +1 > + $name =~ s/\.(s[ol]|dll)$/.c/; #mod_info.so => mod_info.c > + $name =~ s/\.dll$/.c/; #mod_info.so => mod_info.c ? --Geoff