Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@www.apache.org Received: (qmail 74411 invoked from network); 10 Oct 2003 19:35:03 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 10 Oct 2003 19:35:03 -0000 Received: (qmail 23902 invoked by uid 500); 10 Oct 2003 19:34:36 -0000 Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 23867 invoked by uid 500); 10 Oct 2003 19:34:36 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@perl.apache.org Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 23834 invoked by uid 500); 10 Oct 2003 19:34:35 -0000 Delivered-To: apmail-modperl-2.0-cvs@apache.org Date: 10 Oct 2003 19:34:45 -0000 Message-ID: <20031010193445.74281.qmail@minotaur.apache.org> From: stas@apache.org To: modperl-2.0-cvs@apache.org Subject: cvs commit: modperl-2.0/t/conf modperl_extra.pl X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N stas 2003/10/10 12:34:45 Modified: t/conf modperl_extra.pl Log: prevent "Unquoted string "threads" may clash with future reserved word at" warnings with 5.6.x which doesn't have the module threads.pm Revision Changes Path 1.33 +1 -1 modperl-2.0/t/conf/modperl_extra.pl Index: modperl_extra.pl =================================================================== RCS file: /home/cvs/modperl-2.0/t/conf/modperl_extra.pl,v retrieving revision 1.32 retrieving revision 1.33 diff -u -u -r1.32 -r1.33 --- modperl_extra.pl 12 Sep 2003 02:19:01 -0000 1.32 +++ modperl_extra.pl 10 Oct 2003 19:34:45 -0000 1.33 @@ -88,7 +88,7 @@ # are running on). This should work starting from perl-5.8.1 and higher. use Config; if ($] >= 5.008001 && $Config{useithreads}) { - eval { require threads; threads->import() }; + eval { require threads; "threads"->import() }; }