From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3008 invoked from network); 24 Aug 2008 20:59:20 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 24 Aug 2008 20:59:20 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 1828 invoked from network); 24 Aug 2008 20:59:12 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 24 Aug 2008 20:59:12 -0000 Received: (qmail 25418 invoked by alias); 24 Aug 2008 20:59:05 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 25524 Received: (qmail 25401 invoked from network); 24 Aug 2008 20:59:04 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 24 Aug 2008 20:59:04 -0000 Received: from vms173005pub.verizon.net (vms173005pub.verizon.net [206.46.173.5]) by bifrost.dotsrc.org (Postfix) with ESMTP id 426FE801E2B4 for ; Sun, 24 Aug 2008 22:59:01 +0200 (CEST) Received: from torch.brasslantern.com ([96.238.220.178]) by vms173005.mailsrvcs.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTPA id <0K6400D5GIAB4FON@vms173005.mailsrvcs.net> for zsh-workers@sunsite.dk; Sun, 24 Aug 2008 15:59:00 -0500 (CDT) Received: from torch.brasslantern.com (localhost.localdomain [127.0.0.1]) by torch.brasslantern.com (8.13.1/8.13.1) with ESMTP id m7OKwxCD016851 for ; Sun, 24 Aug 2008 13:58:59 -0700 Received: (from schaefer@localhost) by torch.brasslantern.com (8.13.1/8.13.1/Submit) id m7OKwwxZ016850 for zsh-workers@sunsite.dk; Sun, 24 Aug 2008 13:58:58 -0700 Date: Sun, 24 Aug 2008 13:58:58 -0700 From: Bart Schaefer Subject: Something changed about zsh linkage? To: zsh-workers@sunsite.dk Message-id: <080824135858.ZM16849@torch.brasslantern.com> MIME-version: 1.0 X-Mailer: OpenZMail Classic (0.9.2 24April2005) Content-type: text/plain; charset=us-ascii X-Virus-Scanned: ClamAV 0.92.1/8082/Sun Aug 24 18:40:03 2008 on bifrost X-Virus-Status: Clean For years now I've been building zsh and running it from the source tree for testing. I'm used to this meaning that some modules are not loadable when I run "Src/zsh -f" (because the modules haven't been installed yet). Recently, however, I've started getting an error I never did before -- schaefer[602] Src/zsh -o noglobalrcs -f zsh: failed to load module `zsh/zle': /usr/local/lib/zsh/4.3.6-dev-0/zsh/zle.so: cannot open shared object file: No such file or directory -- so either zle has stopped being linked in the same way, or something is causing zle to [try to] be loaded at startup when it never was before. I think it's the former but I can't be certain. I have stuff in my .zshenv to fix the module_path and that still works as it always has; it's only the behavior with -f that's changed. Either zle should be static linked, or the shell should not implicitly load it (or at least not complain when it can't).