From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18467 invoked by alias); 22 Dec 2016 03:03:25 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 22254 Received: (qmail 6430 invoked from network); 22 Dec 2016 03:03:25 -0000 X-Qmail-Scanner-Diagnostics: from mail-ua0-f171.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(209.85.217.171):SA:0(0.0/5.0):. Processed in 1.654768 secs); 22 Dec 2016 03:03:25 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2,SPF_PASS,T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: schaefer@brasslantern.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.217.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject :mime-version; bh=GMPmRCthosmANxvgtIzn8yhpnHVEVaGDAVSlRnoXseI=; b=ByHpeT2pkb53ldbuzpxBC9yZnxOisC3IeO7shN+i5ph6tzeFeuO/kLY6AYrRP7NBV6 wScrHTEvFwniGUPOeasjntGnouRfWI5qoBktTms6ypGS8pMeN3MMbOreEAz+vQGiFHA+ ysoqSX//V8Lf00j0FijY0+EAqjACDq31WyTuftsVzVW4nxKa8pWT9lY9/W4nc4JpYmnt zGlSPm2YLUj7brU9QCe2HRthjk5C9FLm6oV+5W82pWROwlLXd2QT4dkJ1ZbxigPhccUL nLr40SLbYVKt0u/x+eOVYQbEIJTXC6tO4uoL9uevZdaLps98w5zwPfHpPyhVlvdMA5Qx eF2A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:mime-version; bh=GMPmRCthosmANxvgtIzn8yhpnHVEVaGDAVSlRnoXseI=; b=B03Ewd7O0bHEXcSYEdHvggTfsvUaCCUCdRplIzNg6Md6i+MV8qvGVsWgsxe2nI2Gh6 hgmBWb5bq/weOmfoV3ORYerLjCvdmxHh1pDXJe9CcuIwkya0HYxBvjYSIywwjOIxAojz s/eOcSk/EKehN2zOSDN0H/IgxzBEvBDM+9hS/RPtTI4Ug9Qgp+c4uKtUGjapJfwxmqwY Q3QKZCC3Yu++GI7IkZWa8WL/hImxxMx4saCJep1GTTVEtLebUK4FAlOGX0bT/7oviyC7 hSyBXW0hwVv4tM/dgE175fdH9p77tyD/eiU444ATBTqszlXVc7boQztY3AX2jMtQtntV 1ZDA== X-Gm-Message-State: AIkVDXJw2MdtzG/M4VTtlZbfqw2Li0osymTz1pHXm+CGOn0PP9YUNKGATw/2nby0hdLxNg== X-Received: by 10.176.80.198 with SMTP id d6mr5219196uaa.121.1482375794117; Wed, 21 Dec 2016 19:03:14 -0800 (PST) From: Bart Schaefer Message-Id: <161221190310.ZM3041@torch.brasslantern.com> Date: Wed, 21 Dec 2016 19:03:10 -0800 In-Reply-To: Comments: In reply to Ray Andrews "Re: 5.3.1" (Dec 21, 4:40pm) References: <20161221200758.5c473159@ntlworld.com> <9974e7a9-0b41-c642-5055-a58871123069@eastlink.ca> <4436d067-0d1f-173e-ea7a-ab14e32fa215@eastlink.ca> <161221161237.ZM31435@torch.brasslantern.com> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-users@zsh.org Subject: Re: 5.3.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Dec 21, 4:40pm, Ray Andrews wrote: } } $ /aWorking/zsh-5.3.1 6$ zmodload zsh/curses } zsh: failed to load module `zsh/curses': } /aWorking/zsh-5.3.1/Build/lib/zsh/5.3.1/zsh/curses.so: undefined symbol: } COLORS Well, obviously configure has correctly decided ("link=no" in unedited config.modules) that whatever curses library it has found on its own will not properly link the curses.so file. Try LIBS=-lncurses configure ... If that doesn't work, you'll have to figure out what library to link with to get the COLORS symbol, because it's obviously declared extern in some header that the compiler is finding when you "make".