From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1040 invoked from network); 30 Apr 2001 16:32:31 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 30 Apr 2001 16:32:31 -0000 Received: (qmail 10705 invoked by alias); 30 Apr 2001 16:32:14 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 14166 Received: (qmail 10682 invoked from network); 30 Apr 2001 16:32:13 -0000 From: "Bart Schaefer" Message-Id: <1010430163014.ZM4757@candle.brasslantern.com> Date: Mon, 30 Apr 2001 16:30:14 +0000 In-Reply-To: <200104301544.LAA27672@ursula.cortexmachina.com> Comments: In reply to Peter Whaite "Re: comptest* failed to load module: zsh/termcap" (Apr 30, 11:44am) References: <200104301544.LAA27672@ursula.cortexmachina.com> X-Mailer: Z-Mail (5.0.0 30July97) To: Peter Whaite , zsh-workers@sunsite.dk Subject: Re: comptest* failed to load module: zsh/termcap MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Apr 30, 11:44am, Peter Whaite wrote: } } "Andrej Borsenkow" said: } } > And, of course - what system, what compiler, etc. } } % cat /etc/issue } } Red Hat Linux release 6.2 (Zoot) } Kernel 2.4.2 on an i586 This is a completely off-topic question, but: Did you build the 2.4.2 kernel yourself? I've been trying to compile a newer kernel on my RH6.2 machine at work and keep getting complaints that it needs newer versions of modutils and mkinitrd than those available for RH6.2. Meanwhile, I can reproduce your problem on that machine. I changed the linkage for termcap and terminfo from dynamic to static and got: Modules/termcap.o: In function `scantermcap': Modules/termcap.o(.text+0x450): undefined reference to `boolcodes' Modules/termcap.o(.text+0x459): undefined reference to `boolcodes' Modules/termcap.o(.text+0x4bd): undefined reference to `numcodes' Modules/termcap.o(.text+0x4c3): undefined reference to `numcodes' Modules/termcap.o(.text+0x515): undefined reference to `strcodes' Modules/termcap.o(.text+0x51b): undefined reference to `strcodes' So the problem is that configure.in is still missing the AC_SEARCH_LIBS call to find the ncurses libraries (it does one only for tgetent, which finds old termcap first). Edit configure.in; look for the line: AC_SEARCH_LIBS(tgetent, [$termcap_curses_order]) Copy'n'paste that line, s/tgetent/tigetstr/, rerun autoconf and configure, then try "make" again. -- Bart Schaefer Brass Lantern Enterprises http://www.well.com/user/barts http://www.brasslantern.com Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net