From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3604 invoked by alias); 18 May 2014 17:33:55 -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: 32617 Received: (qmail 14867 invoked from network); 18 May 2014 17:33:39 -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-Originating-IP: [86.6.157.246] X-Spam: 0 X-Authority: v=2.1 cv=TdEYtHgh c=1 sm=1 tr=0 a=BvYiZ/UW0Fmn8Wufq9dPrg==:117 a=BvYiZ/UW0Fmn8Wufq9dPrg==:17 a=NLZqzBF-AAAA:8 a=uObrxnre4hsA:10 a=kj9zAlcOel0A:10 a=pGLkceISAAAA:8 a=25ATwNuSuPs8G_QKibkA:9 a=CjuIK1q_8ugA:10 a=MSl-tDqOz04A:10 Date: Sun, 18 May 2014 18:28:01 +0100 From: Peter Stephenson To: jdhenman@gmail.com Cc: Subject: Re: pcre module problem Message-ID: <20140518182801.1dd31648@pws-pc.ntlworld.com> In-Reply-To: <20140518214653.1104@binki> References: <20140518214653.1104@binki> X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.7; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sun, 18 May 2014 21:46:53 +0900 jdhenman@gmail.com wrote: > I just installed 14.04 and buils zsh 5.0.5 (..i686.linux-gnu). > > I set zsh as my logon shell using chsh -s /bin/zsh (after putting > /bin/zsh in /etc/shells > > When I start up a console window zsh is started up but I am getting a > pcre related error. > > "failed to load module "zsh/pcre": /lib/zsh/5.0.5/zsh/pcre.so: ... No > such file or directory" Just to check the obvious... presumably there are *some* files in the directory /lib/zsh/5.0.5/zsh ? Otherwise the shell didn't get installed properly. Does that file exist? If not, your zsh built without pcre --- that's perfectly OK since it's a non-standard feature most people don't need, but something in one of your start up files needs it. It could be a "zmodload zsh/pcre". or it might be an autoload causing pcre to be loaded when it sees an expression like "[[ ... =~ ... ]]" If it does exist, what does ldd /lib/zsh/5.0.5/zsh/pcre.so say? pws