From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1723 invoked by alias); 22 Jan 2015 17:56:20 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 34344 Received: (qmail 29610 invoked from network); 22 Jan 2015 17:56:19 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=CoYIqc8G c=1 sm=1 tr=0 a=FT8er97JFeGWzr5TCOCO5w==:117 a=kj9zAlcOel0A:10 a=q2GGsy2AAAAA:8 a=oR5dmqMzAAAA:8 a=-9mUelKeXuEA:10 a=YNv0rlydsVwA:10 a=LxmQH2UCZGkhm9kMw0sA:9 a=CjuIK1q_8ugA:10 From: Bart Schaefer Message-id: <150122095610.ZM11712@torch.brasslantern.com> Date: Thu, 22 Jan 2015 09:56:10 -0800 In-reply-to: <54C13593.9040602@eastlink.ca> Comments: In reply to Ray Andrews "Re: make check problem" (Jan 22, 9:38am) References: <54B9AA99.6080403@eastlink.ca> <150116185732.ZM30791@torch.brasslantern.com> <54B9D726.2020108@eastlink.ca> <20150119102910.18102a0b@pwslap01u.europe.root.pri> <54C045A8.10102@eastlink.ca> <54C13593.9040602@eastlink.ca> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-workers@zsh.org Subject: Re: make check problem MIME-version: 1.0 Content-type: text/plain; charset=us-ascii On Jan 22, 9:38am, Ray Andrews wrote: } } Nope. I wonder why 'make check' indicates a fault when the test can't } possibly succeed from the getgo without that option? I've said before that "not available" is not a "fault." You're reading way too much into "make check" skipping a test. } Are there other } modules that require that sort of special handling? Why is it special? Sorry I forgot about --enable-pcre before. You shouldn't link=static the zsh/pcre module without having used --enable-pcre in configure. It's special because it's extremely non-standard and changes the meaning of the expressions on the right-hand-side of the =~ comparison, so if unknowingly enabled it might break scripts. } Do I need it anyway? You only need it if you want to use it. } Error output: } (eval):1: command not found: pcre_compile } (eval):2: command not found: pcre_match } (eval):10: command not found: pcre_study Hmm, sorry, my patch in 34338 probably borked this. Try the below: diff --git a/Test/V07pcre.ztst b/Test/V07pcre.ztst index 3c25be2..ddfd3f5 100644 --- a/Test/V07pcre.ztst +++ b/Test/V07pcre.ztst @@ -5,6 +5,8 @@ ZTST_unimplemented="the zsh/pcre module is not available" return 0 fi +# Load the rest of the builtins + zmodload zsh/pcre setopt rematch_pcre # Find a UTF-8 locale. setopt multibyte